I have this setting in my htaccess file:
php_flag magic_quotes_gpc 0
php_flag magic_quotes_runtime 0
I have based my program around this, and I don't want to turn it on.
I am trying to integrate phpshop, I require access to the session array so I simply
<?php
require_once ($rootDir.'public_html/phpshop/index.php');
?>
This allows me to access globals as I want, however, PHP shop requires magic_quotes_gpc enabled.
Is there a way to do this? I understand magic_quotes_gpc cannot be enabled at runtime, so I need to know how to set a conditional statement in the .htaccess file. Something like
!(phpshop/) php_flag magic_quotes_gpc 0
. . . or any other suggestions?
Cheers