Whenever I try to update a product (either old or new) and I'm trying to change the price, shipping, associations, then save the product, no changes are saved, but I get this error message:instead:
400 Bad Request
Your browser sent a request that this server could not understand.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
the browser is trying to open a page which looks like this:
mysite.com/prestashop/admin####/index.php?controller=AdminProducts&token=812ed86f2d636d5d09afbed67f0be3a4&id_product=1
I'm using PS 1.5.4.1
Server: Apache
PHP version: 5.3.15
MySQL engine: MyISAM
Check your configuration
Required parameters: OK
Optional parameters: Please fix the following error(s)
fopen
magicquotes
Yet in the php.ini the settings are:
register_globals = Off
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
allow_url_fopen = On
allow_url_include = On
In addition, the htaccess file in the root directory contains this:
<ifmodule mod_php5.c="">
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
</ifmodule>
Could someone please help?
Thank you.