Are there issues with aMember and PHP 5.3X. I upgraded to PHP 5.3x and now I'm getting errors like the below: Deprecated: Function set_magic_quotes_runtime() is deprecated in [SITE]/config.inc.php on line 27 Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at [SITE]/config.inc.php:27) in [SITE]/common.inc.php on line 1827 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at [SITE]//config.inc.php:27) in /home/fansoftm/public_html/store/common.inc.php on line 1827
You need to change error_reporting setting in php.ini use this value: Code: error_reporting = E_ALL & ~E_DEPRECATED & ~E_NOTICE
Hello, I don't have access to php.ini (our site is on a cloud environment). What settings do I have to change in the .htaccess to accomplish the same thing as you have suggested above? Thanks,