For some reason, a script of mine has started giving a 406 error when you submit an article to it. It worked before, and I've made no changes. I don't even know what this error is, and the script is encrypted. Does anyone know how I could go about fixing it please?
406 error is usually "Not accepted" method. Maybe your hoster installes mod_security into the apache.. check with them and see how this can be fixed. If they did installed mod_securityin apache but you dont want to use them add the following to your .htaccess: <IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule> I hope this helps you.