Hey SteveHE,
You should be able to disable it from the PHP ini file. The ini configuration file is typically located here: /usr/local/lib/php.ini although you can confirm via the command line:
Code:
# php --ini
Configuration File (php.ini) Path: /usr/local/lib
Loaded Configuration File: /usr/local/lib/php.ini
Scan for additional .ini files in: (none)
Additional .ini files parsed: (none)
Find the line with 'magic_quotes_gpc' in the ini file. If there isn't one, try adding this to the end:
Once you save that change, make sure you restart apache.
Code:
# /scripts/restartsrv_apache
Try that out and let me know the results.