Canman2005 Posted April 9, 2006 Share Posted April 9, 2006 Hi allI recently moved a load of websites to a new server, my old server had the register globals turned on, and on the new server they are turned off.What needs to be changed in my php scripts in order to get it to work, as most of the pages wont function due to this change. I have alot of sites, so is there a easy way?I have found some information on fixing pages, but im not great with php and most of it made little sense to me.I did find some scripts which you put at the top of each php page to sort this issue, but on pages where images are uploaded via a php page and so on, those sort of scripts dont seem to work.I am on shared hosting so cannot change the php.ini file.Any help would be greatThanksEd Link to comment https://forums.phpfreaks.com/topic/6975-register-globals/ Share on other sites More sharing options...
AndyB Posted April 9, 2006 Share Posted April 9, 2006 Sloppy and insecure, but - for example - add this at the start of all the 'non-working' scripts that use forms to pass data. Review the manual for alternative uses of extract():[code]extract($_POST); // abstract POSTed array data[/code] Link to comment https://forums.phpfreaks.com/topic/6975-register-globals/#findComment-25356 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.