cPanel in it’s wisdom are updating htaccess files changing the package type, in our experience “ea-php52” package to “ea-php56”. cpanel forums confirms the modification is part of a regular update to users code. In our case, all it did was break our website causing 500 server errors. Yes, we can access cpanel/file manager/public_html/.htaccess then change […]
Backslash PHP Issue Resolved
A previously good working edit form starting adding a backslash ( \ ) before every quotation character ( “ ) after save. Before Save = src=”file.jpg” After Save = src=\”file.jpg\” I discovered the cause was located in a php.ini file (root – public_html) The cause = magic_quotes I turned [magic_quotes] OFF and it stopped adding the backslash magic_quotes_gpc […]