I'm running a small Zen-Cart shop and I have the following problem. When I'm in the administrator interface and edit a product, the name and description texts do not show. The text boxes are just empty for all languages. When I enter the name and description again all works fine and changes are saved and show up in the website.
I don't know if it has anything to do with this problem, but I'm running Zen-Cart on a NGINX webserver (on CentOS). PHP is supported through Fast-CGI. Except for this small problem the website runs fine and is fast.
I tried a copy of the website offline on a Windows machine (with WAMP) and here the problem does not occur. Any ideas how I can fix this?
Well, although this is not a great solution:
The problem is in this line in collect_info.php:
Using
$pInfo->products_name
instead of$products_name[$languages[$i]['id']]
andzen_get_products_name(...)
does work. This only works if you have only one language.For description I can use the FCK Editor which was working here already.