You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Windows make sure the following folders and files permissions allow Read and Write.
image/
image/cache/
cache/
download/
config.php
admin/config.php
Right click the folder with the web files in it, and select Security Tab to modify the permissions.
thanks for the fast reply. i checked the premissions and the user has all permissions to read and write.
i made some test.
the actual code does this:
is_writable(DIR_OPENCART . 'image/catalog') in my example its qual to is_writable('D:\inetpub\server.com/image/catalog') // FALSE
here you can see the wrong slashes
if I correct the slashes in the code to is_writable('D:\inetpub\server.com\image\catalog') I get TRUE
The installation of Opencart failed on ISS8 because of writing permissions
if (!is_writable(DIR_OPENCART . 'image/catalog')) fails because the constant DIR_OPENCART contains an incorrect slash at the end
example:
real path to opencart: D:\inetpub\server.com
DIR_OPENCART constant: D:\inetpub\server.com/
so is_writeable returns false because of the wrong slash
The text was updated successfully, but these errors were encountered: