Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

What does this sentence mean?


tencups

Recommended Posts

I don't seem to have the file php.ini

 

Roger

 

php.ini can be found in C:\windows\ (or whatever your windows directory is named on your system)

 

the line in php.ini will look like this:

 

; - register_globals = Off

 

just modify it to:

 

; - register_globals = On

 

:)

Link to comment
Share on other sites

Thanks Drimmie,

 

I have a new problem and that is my host dosn't want register_globals on, he says it's a security issue. There is suppose to be a work around for this using get and put statements but I don't know enough about PHP programming to do this.

 

Drimmie or anyone else know of a work around for this, other wise I will have to find an other shopping cart.

 

mikrodoctor

Link to comment
Share on other sites

my host dosn't want register_globals on, he says it's a security issue.

register_globals in itself is not a security issue - there can be security issues with badly written code. You may read up on this at php.net

 

Matti

Link to comment
Share on other sites

Create a php file on the server that will run the phpinfo command. This will then give you all the settings in php as well as the Configuration File (php.ini) Path. Point your browser to the file and just run it.

 

Contents of /catalog/phpinfo.php:

 

<?php

 

phpinfo();

 

?>

 

HTH

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...