Jump to content

Moved servers, "mysql_real_escape_string( $_GET['ID']);" no longer works...


dlebowski

Recommended Posts

I moved my application to a new server with a new install of PHP.  Anyway, some of my "mysql_real_escape_string( $_GET['ID'])" requests work, some do not.  Does anyone know why this would be?  It works fine on my old server.  Thank you.

 

Ryan

Link to comment
Share on other sites

The only thing that would affect mysql_real_escape_string, would be if there isn't a connection to the database server at the time you called the function. You would be be getting empty/null values out. You would also be getting php warning messages, because php would attempt to create a database connection when there isn't already one, using default values for the host/user/password, which generally fails.

 

It's more likely your data isn't what you expect. What exact symptoms or errors are you getting that would help pin down the problem?

Link to comment
Share on other sites

What does the 'view source' of the page in your browser show? Do you have php's error_reporting set to E_ALL and either display_errors ON (errors would be displyed) or log_errors ON (errors would be written to the error log file)?

 

You do need to make a connection to the database server somehow, before calling mysql_real_escape_string. The condition where a connection would automatically be made, would require that you either have a pre-pended file that creates a connection or that your php.ini has correct default mysql connection details set up in it.

Link to comment
Share on other sites

View source displays nothing.  What is wierd, is that it works on the other server. 

 

I took your advice, and removed the "mysql_real_escape_string" and it works now. So, that is definitely the problem.  So, is there a setting in my PHP config that is affecting this on my new server?

 

Thank you for your quick replies.

 

Ryan

Link to comment
Share on other sites

It appears that you have values set somewhere for the mysql.default_host, mysql.default_user, mysql.default_password settings on the server where this 'works'. This can either be in the master php.ini, a local php.ini (when php is running as a cgi application), or in a .htaccess file (when php is running as an Apache Module.)

 

Does your code that accesses a database have mysql_connect() and mysql_select_db() statements in it?

 

The reason I ask, is A) you must know if and where you are making a connection to the database server, B) Because, if you are not making an expected connection to the correct database server, you could be using a character set for the mysql_real_escape_string statement that DOES NOT prevent sql injection on your actual database.

Link to comment
Share on other sites

If i do that, it WILL work.  I am just concerned because I didn't want to have to modify all these scripts to make sure it works.  I was hoping I could figure out what is different on this server as oppose to my old one.

 

Ryan

Link to comment
Share on other sites

Someone has already posted how a connection can be made without your code deliberately making one -

 

The condition where a connection would automatically be made, would require that you either have a pre-pended file that creates a connection or that your php.ini has correct default mysql connection details set up in it.

 

It appears that you have values set somewhere for the mysql.default_host, mysql.default_user, mysql.default_password settings on the server where this 'works'. This can either be in the master php.ini, a local php.ini (when php is running as a cgi application), or in a .htaccess file (when php is running as an Apache Module.)

Link to comment
Share on other sites

I understand what you posted, I'm looking through the php.ini files and comparing them and there is nothing in the MYSQL section that is different.  Anyway, I will see what else I can come up with.  Thank you.

 

Ryan

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.