Current location: Hot Scripts Forums » Programming Languages » PHP » Please help us make it unsafe!


Please help us make it unsafe!

Reply
  #1 (permalink)  
Old 06-14-04, 10:57 AM
moving images moving images is offline
New Member
 
Join Date: May 2004
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Please help us make it unsafe!

Hi everybody!
We are struggling with another PHP problem:
our (shared) provider doesn't want to set SAFE MODE = OFF AND REGISTER GLOBALS = ON and this is causing malfunction of a realy nice photo-gallery programe which we are trying to run.
This complicates also the use of our 'favorite' tool GO LIVE 6.01.
Does anybody by chance know a workaround script for safe mode and register globals or have you any idea where we can find it?
Many thanks!
777
Reply With Quote
  #2 (permalink)  
Old 06-15-04, 04:49 AM
Worm's Avatar
Worm Worm is offline
Newbie Coder
 
Join Date: Jun 2004
Location: Germany, Frankfurt am Main
Posts: 91
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by moving images
Hi everybody!
We are struggling with another PHP problem:
our (shared) provider doesn't want to set SAFE MODE = OFF AND REGISTER GLOBALS = ON and this is causing malfunction of a realy nice photo-gallery programe which we are trying to run.
This complicates also the use of our 'favorite' tool GO LIVE 6.01.
Does anybody by chance know a workaround script for safe mode and register globals or have you any idea where we can find it?
Many thanks!
777
If you are not able to change the server's configuration generally, you change its behavior of php for each script you use:

string ini_set ( string varname, string newvalue)

Sets the value of the given configuration option. Returns the old value on success, FALSE on failure. The configuration option will keep this new value during the script's execution, and will be restored at the script's ending.

This is a php function which should be loaded at the startup of your page. Sample:

ini_set("REGISTER_GLOBALS", "ON");
ini_set("SAFE_MODE", "OFF");

Try it this way, good luck !
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 05:02 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.