Joris Le Blansch
Forum Replies Created
-
Like I said, I’m not familair with WAMP. Maybe somebody else can help you. In the mean time, I think you should close the support topic here and seek advice in a related forum.
Sorry, but I’m not familiar with WAMP… You can find some info on the topic here that can maybe lead you to the source of your problem wrt settings that might be other then default : https://www.devside.net/wamp-server/setting-file-permissions-with-chmod-on-windows-for-apache-and-php . Why would you want to run Apache on Windows? Better not open up that server to the www…
I’m not the plugin developper but I think this is not related to the plugin. You probably have issues with proper directory and file rights. Make sure your webuser owns your web root and everything below. Exemple for an Apache installation on Debian (adapt to your own needs in terms of path and user/group):
chown -R www-data:www-data /var/www/htmlThen, from inside your webroot, set all dir and file permissions correctly, for exemple like so:
cd /var/www/html find . -type f -exec chmod 644 {} \; find . -type d -exec chmod 755 {} \;That should help.
Kind regards,
Joris.