Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

SOLVED: I wrote and tested a PHP script on the local server. (Nothing fancy, just 2 consecutive SQL inserts in the same database, but different tables).

Both servers run PHP5 & MYSQL 5.

On the local server, both queries are processed correctly.

On the live server, only the first query works, but not the second and I can't figure out why.

Here is the code:

    $sql_login = "INSERT INTO logintbl 
              (...) 
           VALUES (...)";
   $result_login = mysqli_query($this->connect, $sql_login);

   # Fill contact details
   $sql_contactD = "INSERT INTO contactDetails
                    (...)
         VALUES (...)";
   $result_contactD = mysqli_query($this->connect, $sql_contactD);

On my local server, both queries return true and the data are added in the database.

On my live server, the first query works as expected, but the second query fails without any error message.

Of course, the table structures are identical on both servers. Both tables are in the same database and the user has sufficient rights on the database.

Any clue on what could be wrong?


Edit 1: Permissions: Yes, the user has adequate permissions on both tables.


Edit 2: I am feeling very silly, but following James' advice of checking mysqli_error(), I found out that the production server was case sensitive in regards to table names, unlike my testing server, AND that it converted the original name of my table (contactDetails) to lowercase (contactdetails).

Thanks to all for your help.

share|improve this question
Have you checked your mysql log for an error message? – Frank Farmer May 21 '09 at 17:37
Also try "SHOW WARNINGS" after you run the query that doesn't work. This returns information about warnings, which are less severe than errors and don't display a message unless you query for one. – Bill Karwin May 21 '09 at 18:00
6  
Check the output of mysqli_error(), too. Do the test and production servers have different magic quotes settings? Other settings? – James Socol May 21 '09 at 18:03
1  
Please(!), mark any answer AS "the right answer" IF your problem is solved. ;) – daemonfire300 Oct 21 '09 at 19:34

3 Answers

have you checked permissions in your Production environment? Meaning have you verified that you have insert access to contactDetails?

share|improve this answer
Yes, sorry, I should have specified, but, yes, the permissions are adequate. – Sylverdrag May 21 '09 at 18:07

Did you try to print $sql_contactD to a screen (or webpage), and then run the exact same query in the MySQL Query Browser?

share|improve this answer
up vote 0 down vote accepted

Answering my own question because it looks like the only way to close it properly:

I am feeling very silly, but following James' advice of checking mysqli_error(), I found out that the production server was case sensitive in regards to table names, unlike my testing server, AND that it converted the original name of my table (contactDetails) to lowercase (contactdetails).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.