I've got,a fter installing tabr 3.3.2 on phpnet.org this fatal error
Fatal error: php.ini register_globals MUST BE off. TABR will malfunction.
But the register_globals is off in the php.ini, and I also put a htaccess file to confirm it in the tabr folder (because I already had this kind of problem with another script and it solved it).
What's wrong?
Michel
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've got,a fter installing tabr 3.3.2 on phpnet.org this fatal error
Fatal error: php.ini register_globals MUST BE off. TABR will malfunction.
But the register_globals is off in the php.ini, and I also put a htaccess file to confirm it in the tabr folder (because I already had this kind of problem with another script and it solved it).
What's wrong?
Michel
lib/init.php contains the check:
if(ini_get('register_globals')) // If register_globals is enabled
At this point the check is true. Verify if it should be "off" or "0" or 0, ... etc.