Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Darrell3831
Worker
Worker



Joined: Feb 18, 2004
Posts: 244

PostPosted: Sat Mar 05, 2005 1:43 pm Reply with quote

Hi,

Is there a function, directive, define, or piece of code you can put at the top of your .php files that stops magic quotes if it's globally ON where a php file is being executed? (at runtime)

In other words I want to say something like "if magic qutoes are on turn them off for this file".

This magic quote thing is driving me crazy. If I'm looping to edit something or a person abandons their edits and backs up a page things are getting messed up for me.....

I just as soon give up on the darn thing and take responisbility myself no matter which way its set on the server.

Any advice, or code examples??

Thanks,
Darrell

_________________
http://www.psy-center.com 
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Sat Mar 05, 2005 2:18 pm Reply with quote

In .htaccess add these lines:

php_flag magic_quotes_gpc Off
php_flag magic_quotes_runtime Off

If that doesn't work use

php_value magic_quotes_gpc Off
php_value magic_quotes_runtime Off
 
View user's profile Send private message
Darrell3831







PostPosted: Sat Mar 05, 2005 2:38 pm Reply with quote

Thanks Raven,

But those don't feel quite right. As I pass my code around from person to person and server to server I'd have to constantly keep telling people to make these changes.

Isent there a php code based solution to turning magic quotes off??

Thanks,
Darrell
 
Darrell3831







PostPosted: Sat Mar 05, 2005 2:45 pm Reply with quote

I found something.

Only registered users can see links on this board! Get registered or login!

Would set_magic_quotes_runtime() apply to only the current file being executed?

Then if so I'd need this at the top of all files I want to turn it off...

if (get_magic_quotes_gpc())
set_magic_quotes_runtime(0);

Is that right??
 
Raven







PostPosted: Sat Mar 05, 2005 4:27 pm Reply with quote

Darrell3831 wrote:
Thanks Raven,

But those don't feel quite right. As I pass my code around from person to person and server to server I'd have to constantly keep telling people to make these changes.

Isent there a php code based solution to turning magic quotes off??

Thanks,
Darrell
Just pass the .htaccess file with your code. this is, by far, the easiest and the best way, imo.
 
Raven







PostPosted: Sat Mar 05, 2005 4:28 pm Reply with quote

Darrell3831 wrote:
I found something.

Only registered users can see links on this board! Get registered or login!

Would set_magic_quotes_runtime() apply to only the current file being executed?

Then if so I'd need this at the top of all files I want to turn it off...

if (get_magic_quotes_gpc())
set_magic_quotes_runtime(0);

Is that right??
Why even check? Just set them both off at the beginning of each script. Either way (.htaccess or this) will work.
 
Darrell3831







PostPosted: Sat Mar 05, 2005 10:26 pm Reply with quote

thanks
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©