View Single Post
  #17  
Old 6th October 2015, 12:57
Cerbere17 Cerbere17 is offline
Member
 
Join Date: Oct 2015
Posts: 10
Default Problem on install
Hi,

My .sql import is okay. My web serveur is running on Linux Debian Wheezy, Apache2, PHP5 and MySQL Serveur 5. When i'm going on the install folder like http://xxxxxxxxxxx.net\install_\install.php i have a strange page ... with a lot of errors like this :

', $db) . '
There seems to be one or more errors with the database configuration information that you supplied. Click here to to back step 2.'); } $secretkey = mksecret (); $secret = '\'' . mysql_real_escape_string ($secretkey) . '\''; $username = '\'' . mysql_real_escape_string ($_SESSION['username']) . '\''; $passhash = '\'' . mysql_real_escape_string (md5 ($secretkey . $_SESSION['password'] . $secretkey)) . '\''; $email = '\'' . mysql_real_escape_string ($_SESSION['email']) . '\''; $status = '\'' . mysql_real_escape_string ('confirmed') . '\''; $usergroup = '\'' . mysql_real_escape_string ('8') . '\''; $added = '\'' . mysql_real_escape_string (get_date_time ()) . '\''; (mysql_query ('' . 'INSERT INTO users (username, passhash, secret, email, status, usergroup, added) VALUES (' . $username . ', ' . $passhash . ', ' . $secret . ', ' . $email . ', ' . $status . ', ' . $usergroup . ', ' . $added . ')') OR critical_error


Could you help me please ?
Reply With Quote