Wix: How to set permissions for folder and all sub folders

First of all, I would recommend you using PermissionEx instead. It is a standard WiX extension and it has one really huge advantage over Permission – it doesn’t overwrite, but modifies ACLs. And by default, it applies permissions to the folder and all its descendant files and folders, so you don’t have to specify anything … Read more

ssh “permissions are too open”

The keys need to be read-writable only by you: chmod 600 ~/.ssh/id_rsa Alternatively, the keys can be only readable by you (this also blocks your write access): chmod 400 ~/.ssh/id_rsa 600 appears to be better in most cases, because you don’t need to change file permissions later to edit it. (See the comments for more … Read more

WAMP error: Forbidden You don’t have permission to access /phpmyadmin/ on this server

Change the file content of c:\wamp\alias\phpmyadmin.conf to the following. Note: You should set the Allow Directive to allow from your local machine for security purposes. The directive Allow from all is insecure and should be limited to your local machine. <Directory “c:/wamp/apps/phpmyadmin3.4.5/”> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Allow from all </Directory> Here … Read more