My configuration.php chmod is 777 but i have error: Configuration File .......... You must set permissions for the configuration.php file so it can be written to (CHMOD 777)
I ignore it and i go to setp 3 (/install/install.php?step=3)
in step3 i fill all ok and after that i get this error:
"Could not connect to the database - check the database connection details you entered and go back and correct them if necessary"
My connection in mysql i OK i checked it by this php file:
<?php
mysql_connect("localhost", "user_name", "user_password") or die(mysql_error());
echo "Connected to MySQL<br />";
mysql_select_db("database_name") or die(mysql_error());
Question
franz
Installation errors:
My configuration.php chmod is 777 but i have error: Configuration File .......... You must set permissions for the configuration.php file so it can be written to (CHMOD 777)
I ignore it and i go to setp 3 (/install/install.php?step=3)
in step3 i fill all ok and after that i get this error:
"Could not connect to the database - check the database connection details you entered and go back and correct them if necessary"
My connection in mysql i OK i checked it by this php file:
<?php
mysql_connect("localhost", "user_name", "user_password") or die(mysql_error());
echo "Connected to MySQL<br />";
mysql_select_db("database_name") or die(mysql_error());
echo "Connected to Database";
?>
this is result:
Connected to MySQL
Connected to Database
Whot is wrong? Any idea?
Edited by franzLink to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.