Search results for "chmod recursive directory only"

Recursive chmod Tricks

Recursively chmod only directories find . -type d -exec chmod 755 {} \; Similarly, recursively set the execute bit on every directory chmod -R a+X * The +X flag sets the execute bit on directories only Recursively chmod only files find . -type f -exec chmod 644 {} \; Recursively chmod only PHP files (with extension .php) find . -type f -name ’*.php’ -exec chmod 644 {} \; … 2, 1, 2, 0 and 16.1

Comments { 1 }

How to Configure APC Cache on Virtual Servers with PHP running under FCGId

… avoid fragmentation, which will cause the 500 errors. If fragmentation rises quickly to 100%, memory usage is full, and cache full count rises above 0, you will almost surely see “500″ errors. If WordPress is the only PHP script software package on the domain, the following configuration will likely work for you; if you have more PHP software packages, you will need to raise apc.shm_size and raise the apc.user_entries_hint and apc.us… 6, 0, 0, 0 and 13.07

Comments { 43 }

Cpanel Mailman mailing lists: cannot manage lists after migrating to new host

… the right list name appended. If you have the proper authority, you can also create a new mailing list. This turned out to be a permissions issue: root@cpanel1 [/usr/local/cpanel/3rdparty/mailman/bin]# ./check_perms –snip– directory permissions must be 02775: /usr/local/cpanel/3rdparty/mailman/…/list_domain.com/… –snip– Problems found: 2999 # ./check_perms -f FIXED!!! … 1, 0, 1, 0 and 3.81

Comments { 2 }

WordPress with W3 Total Cache on Nginx with APC (Virtualmin)

…d will be kept running at all times to serve requests. You can increase this from the default of 4 to improve PHP script latency, or decrease it to reduce memory use. Setting it to None will cause PHP processes to be launched only as needed on demand, and to be cleaned up after some period of inactivity.” Nginx support on Virtualmin is working well, and it is reported that the lead developer, Jamie Cameron, is working on a php-fpm implement… 1, 0, 0, 0 and 2.18

Comments { 11 }

APC Cache Considerations for Virtual Hosting Environments

…. Of course, because this will require greater management, it should be charged as a premium service. If you wish to enable APC on a commodity web hosting server, you may try the following method to selectively enable APC per directory: http://www.php.net/manual/en/ini.php Also see other recommendations in following comments…    … 1, 0, 0, 0 and 2.18

Comments { 2 }