The idea behind is to simplify change between different versions. Assume the following structure. ../processwire/ProcessWire-devns /version /devns_3.0.7 /devns_3.0.8 (assume that the apache rigths are set!) /wire /.. and the rest of pw /htdocs (here is the pw installation directory) I create now a new symlink in htdocs to the used source dir like => ln -s /processwire/ProcessWire-devns/version/devns_3.0.8/ pw_src and then the => ln -s pw_src/wire wire ( also for the rest al index.php ) The actual processwire installation should now updated to devns 3.0.8. I can now easchange now easily change the pw version by reset the pw_src link to a new version. This is my plan, but unfortunately does this not work in my configuration. In the vhost conf, the required things are set from my point of view: AllowOverride All Order allow,deny Allow from all Require all granted DirectoryIndex index.php index.html index.htm Options +MultiViews Options -Indexes Options +FollowSymLinks +SymLinksIfOwnerMatch
Has anybody an eye-opener tip?