...und habe keine Idee wieso nicht.
Hallo zusammen...
habe eine schöne Seite mit diesem tollen Programm lokal entwickelt, alles keine Problem, alles läuft (phpMyAdmin version 2.6.1, Apache Server Version: 4.0.23, PHP-Version: 5.0.3, phpwcms: 1.2.3Dev)
Jetzt möchte ich alles zum Provider rüberlegen. Als erstes habe ich das cms mal im originalzustand upgeloaded und will jetzt das setup laufen lassen. Direkt in Step 2 bekomme ich folgende Fehlermeldung.
Warning: mysql_connect(): Access denied for user: 'db_user@localhost' (Using password: YES) in d:\ftp\xxx\yyy\setup\setup.php on line 100
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in d:\ftp\xxx\yyy\setup\setup.php on line 101
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in d:\ftp\xxx\yyy\setup\setup.php on line 108
Komisch ist, daß in der ersten Zeile 'db_user@localhost' steht obwohl ich dort schon was anderes eingetragen habe. Mir werden im ersten Fenster immer die Standardeinträge angezeigt, nichts wird übernommen und auch nichts in die conf.inc.php geschrieben. (mein Provider liefert mir folgendes: phpMyAdmin version 2.5.6, Server Version: 4.0.18, PHP-Version: 4.3.4)
Ich habe jetzt schon dreimal alles hochgeladen, um fehlende Dateien auszuschließen und weil mir sonst nix mehr einfiel.
Bin jetzt echt mal ganz doll traurig - kann mich bitte jemand aufheitern.
Lenni
ich krieg das setup nicht hin...
sorry to give an answer in english, maybe someone would like to translate..
I had the same plroblem with my installation. I solved it by giving all the folders and files the right permissions
Folder phpwcms_ftp 777
Folder phpwcms_filestorage 777
Folder phpwcms_template 777
Folder content 777
Folder content/images 777
Folder content/gt 777
Folder content/form 777
Folder content/rss 777
Folder content/tmp 777
Folder content/pages 777
File setup/setup.conf.inc.php 666
File phpwcms_template/inc_css/frontend.css 666
File config/phpwcms/conf.indexpage.inc.php 666
File phpwcms_template/inc_default/startup.php 666
found on http://www.phpwcms-docu.de/index.php?dev_1_x_en
after i did this my installation finished correctly
I had the same plroblem with my installation. I solved it by giving all the folders and files the right permissions
Folder phpwcms_ftp 777
Folder phpwcms_filestorage 777
Folder phpwcms_template 777
Folder content 777
Folder content/images 777
Folder content/gt 777
Folder content/form 777
Folder content/rss 777
Folder content/tmp 777
Folder content/pages 777
File setup/setup.conf.inc.php 666
File phpwcms_template/inc_css/frontend.css 666
File config/phpwcms/conf.indexpage.inc.php 666
File phpwcms_template/inc_default/startup.php 666
found on http://www.phpwcms-docu.de/index.php?dev_1_x_en
after i did this my installation finished correctly
Hi Lenni
1.)
Try to upload your local files to your ISP WebSpace and set CHMOD correct
2.)
export all tables incl. Data from your local DB Server to sql/txt file
3.)
Import the sql/txt file into your ISP DB
4.)
change the DB settings in conf.inc.php
does this help?
Sven
1.)
Try to upload your local files to your ISP WebSpace and set CHMOD correct
2.)
export all tables incl. Data from your local DB Server to sql/txt file
3.)
Import the sql/txt file into your ISP DB
4.)
change the DB settings in conf.inc.php
Code: Select all
$phpwcms["db_host"] = "localhost";
$phpwcms["db_user"] = "ISP DB User";
$phpwcms["db_pass"] = "ISP DB Passwort";
$phpwcms["db_table"] = "ISP DB Name";
$phpwcms["db_prepend"] = "";
$phpwcms["db_pers"] = 1;
Sven