Installed OpenCart on my home windows box. Install went smoothly, but when click on the main catalog index, it gave me some garbage errors. Seems that when it wrote the config, it didn't properly escape the backslashes that windows uses, so the php structure was invalid
I had to manually change:
Code: Select all
define('DIR_CACHE', 'C:\Documents and Settings\Server\Application Data\NuSphere\PhpED\projects\opencart\cache\');
Code: Select all
define('DIR_CACHE', 'C:\\Documents and Settings\\Server\\Application Data\\NuSphere\\PhpED\\projects\\opencart\\cache\\');
This got the main home page to load, but all links, such as "My Account", that I clicked said things like:
HTTP/404
The requested URL alias for /account is not defined.
Is there full support for windows install? It seems there at least needs to be an "addslashes" function somewhere in the install.