vote up 0 vote down star

I opened the notepad, inserted 3 lines in it, saved it as php.ini, and uploaded it in public_html, but I am still getting an error that requires to first switch the magic quotes off. The syntax of the three lines is as following:

magic_quotes_gpc = 0 
magic_quotes_runtime = 0 
magic_quotes_sybase = 0

What am I doing wrong?

flag

8 Answers

vote up 0 vote down

Most hosting companies lets you define a local ini file. Check their support pages, and see where you should put your php.ini file for it to be read by the php engine. If they have an option for this, you don't have to worry about restarting the server.

If you can't find any info about it, create a page with the following code:

<?php phpinfo(); ?>

And look for the property named "Configuration File (php.ini) Path". This is where you should put the file.

link|flag
I am unable to understand you. What name should I give the file and to which directory should I upload? I have the Crimson Editor. Thx. – hp1 Mar 4 at 12:58
Wow that cool! I uploaded it in a folder, and when I opened the file by its name, now I have a lot of information on a webpage, mainly tables. – hp1 Mar 4 at 13:06
This is the path for the php.ini: /usr/lib – hp1 Mar 4 at 13:07
But I am unable to find this directory. Thx. – hp1 Mar 4 at 13:09
Do you have access to the folder /usr/lib? If so, you should change the ini file located there, or put your own ini file there if no file exists. – Erik Mar 4 at 13:10
show 4 more comments
vote up 0 vote down

Most hosting companies won't let you play around with the php.ini unless you rent a dedicated server from them. On that, you could try on page php.ini settings like the following:

ini_set("magic_quotes_gpc", "0");
ini_set("magic_quotes_runtime", "0"); 
ini_set("magic_quotes_sybase", "0");

If that doesn't work, then you'll have to ask your hosting company about it.

link|flag
Don't I need the PHP tags '<? and ?>'? – hp1 Mar 4 at 12:52
I did what you said but no use. – hp1 Mar 4 at 12:57
The lines should go into your page, just after the first <? and before the rest of the code. If they don't do anything, then the hosting company has disallowed editing of this outside of the php.ini – Crises of Identity Mar 4 at 12:58
vote up 2 vote down

You can probably alter these settings in a .htaccess configuration file as well:

php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
php_flag magic_quotes_sybase off

See PHP: How to change configuration settings.

link|flag
vote up 0 vote down

Php.ini is not usually located in public_html. If you can't access your real php.ini, try writing

php_flag magic_quotes_gpc off

in a .htaccess file (in public_html).

link|flag
Do I write it the same way you have written? php_flag magic_quotes_gpc off – hp1 Mar 4 at 12:44
Yes, just like that. – Joonas Pulakka Mar 4 at 12:45
vote up 0 vote down

It's not meant to be placed in the public_html folder... it should be in your PHP installation folder.

link|flag
Some shared hosts may support uploading custom php.ini files in the public_html folder. – tt Mar 4 at 16:39
vote up -1 vote down

Well, you have to change your main php.ini which I don't think is in public_html. Moreover, in order to see the changes you have to restart your php engine.

link|flag
I actually read about it a lot in the Internet, and since many days. Now I did only what I concluded, but which is not working. So probably this host has wasted a lot of my time by saying "make your own php.ini". So, you people might be right that I should contact the host. Thx. – hp1 Mar 4 at 13:01
vote up 4 vote down

use phpinfo() function to see what php.ini file you're actually using

link|flag
vote up 0 vote down

Did you restart the web server?

link|flag
Man the server is with the hosting company. That's why I need the php.ini file. But all I did was what I could find on the net. I understand that php.ini should be in the www folder, if not in the installation directory. – hp1 Mar 4 at 12:42

Your Answer

Get an OpenID
or

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