stevi1983 Posted April 24, 2007 Share Posted April 24, 2007 I am having problems with the registerglobals when setting up oscommerce. I know it is on here and I have tried all options that have been recommended. I even tried chmoding the php file but I am still not getting any joy. The only thing i can think of is i could only instal the windows version but the web server is linux. Is this the problem? Many thanks in advance. Steve Link to comment Share on other sites More sharing options...
♥Vger Posted April 24, 2007 Share Posted April 24, 2007 You don't "chmod" the php.ini file. Where did that idea come from? Server Requirement Error: register_globals is disabled in your PHP configuration -------------------------------------------------------------------------------- You get this message when Register Globals is set to 'off' in a file called php.ini. On a shared server you may have access to a 'local' copy of php.ini, but it's most likely that you won't. If you do then you can edit your local copy to set Register Globals to 'on'. On a shared server you certainly won't have access to the main php.ini file which is for all sites on the server. What can you do if you don't have access to a php.ini file? 1. You can create a file called php.ini and put this inside the file: Register Globals = On 2. You then put this file in the catalog folder (if you use one), and again inside the admin folder, and yet again inside the install folder. 3. If your site is hosted on an Apache server with a Unix or Linux Operating System then you can try turning on Register Globals by the use of a .htaccess file in the folder level where your osCommerce website will be located, with this code in it: php_flag register_globals on and you can also try: php_value register_globals on or you can try using 1 instead of on 4. You cannot use .htaccess files on a Windows server and the use of .htaccess to turn on Register Globals may not even work on an Apache server, because your host may have disallowed it. 5. If all else fails you can install the Register Globals Patch by Richard Bentley which is available from the Contributions section of the osCommerce Forums. This enables the default osCommerce to work with Register Globals set to off in php.ini. 6. Be aware that if you use the Register Globals Patch most Contributions (add-ons) available for osCommerce won't work on your website without modification, because most are not written to work with Register Globals set to off in php.ini Vger Link to comment Share on other sites More sharing options...
stevi1983 Posted April 25, 2007 Author Share Posted April 25, 2007 You don't "chmod" the php.ini file. Where did that idea come from? Server Requirement Error: register_globals is disabled in your PHP configuration -------------------------------------------------------------------------------- You get this message when Register Globals is set to 'off' in a file called php.ini. On a shared server you may have access to a 'local' copy of php.ini, but it's most likely that you won't. If you do then you can edit your local copy to set Register Globals to 'on'. On a shared server you certainly won't have access to the main php.ini file which is for all sites on the server. What can you do if you don't have access to a php.ini file? 1. You can create a file called php.ini and put this inside the file: Register Globals = On 2. You then put this file in the catalog folder (if you use one), and again inside the admin folder, and yet again inside the install folder. 3. If your site is hosted on an Apache server with a Unix or Linux Operating System then you can try turning on Register Globals by the use of a .htaccess file in the folder level where your osCommerce website will be located, with this code in it: php_flag register_globals on and you can also try: php_value register_globals on or you can try using 1 instead of on 4. You cannot use .htaccess files on a Windows server and the use of .htaccess to turn on Register Globals may not even work on an Apache server, because your host may have disallowed it. 5. If all else fails you can install the Register Globals Patch by Richard Bentley which is available from the Contributions section of the osCommerce Forums. This enables the default osCommerce to work with Register Globals set to off in php.ini. 6. Be aware that if you use the Register Globals Patch most Contributions (add-ons) available for osCommerce won't work on your website without modification, because most are not written to work with Register Globals set to off in php.ini Vger Where does the register gloabls pacth go? Do you put the whole folder in the catalog ection or do you just take certain elements out of it? Steve Link to comment Share on other sites More sharing options...
stevi1983 Posted April 25, 2007 Author Share Posted April 25, 2007 i was wondering do i need to edit the .htaccess file at all? I have added the patch but it is still not working is there anything else I can do. I have added the php.ini to catalog,admin and instal and still no luck. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.