Problem after changing server

Hi,

I have this strange problem after changing from one server to another. When I try to edit product features in multiple edit I can’t save the changes at all. When I press save nothing it just reload the page without giving me the green message ‘Changes saved’ .

If I change a feature inside a product without multiple edit it saves the change as normal.

Cs Cart version 2.2.4

Do you have any suggestions?



Thank you

sound like a rights problem.



make shure all the correct folders have the correct permissions also check up on the rights for the mysql user i have had some problems in the past ware the user dit not have the rights to change tables only create them…

Thanks for the answer.

It was Suhosin patch which cause the error.It needs the following settings:

suhosin.cookie.max_array_depth = 1000

suhosin.cookie.max_array_index_length = 500

suhosin.cookie.max_value_length = 200000

suhosin.cookie.max_vars = 16384



suhosin.get.max_array_depth = 1000

suhosin.get.max_array_index_length = 500

suhosin.get.max_value_length = 200000

suhosin.get.max_vars = 16384



suhosin.post.max_array_depth = 1000

suhosin.post.max_array_index_length = 500

suhosin.post.max_value_length = 200000

suhosin.post.max_vars = 16384



suhosin.request.max_array_depth = 1000

suhosin.request.max_array_index_length = 500

suhosin.request.max_value_length = 200000

suhosin.request.max_vars = 16384



I also suggest setting the suhosin.session.encrypt and suhosin.cookie.cryptua settings to Off. Session encryption can cause problems with user sessions in CS-Cart.

That's the answer from cscart support and I thank them very much…!