Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category CentOS

Fix Timezone in Horde – Plesk

Horde for some reason doesn’t pick up the system timezone and defaults to UTC, to fix this you’ll need to edit Horde’s own php.ini at Add the following line (affixed with the your desired timezone) date.timezone = Asia/Singapore Now restart apache…

Remove drweb from Plesk

Drweb can get really annoying because of it’s resource usage even on a brand new Plesk server. Run the following to remove drweb from your system: rpm -qa | grep drweb | xargs rpm -e credit: Update your mail…

Exclude selective folders with identical names in Rsync run/var/www/html/wordpress/wp-admin/uploads – (exclude) /var/www/html/wordpress/wp-content/uploads – (sync)

We recently had to run rsync excluding some identically named folders. To explain: /var/www/html/cms/admin/uploads – (exclude) /var/www/html/cms/content/uploads – (sync) Here is how we got around to getting this done rsync -av –exclude=/admin/uploads/ /var/www/html/cms/ /var/www/html/syncfolder/ –progress Flags: -a: Archive mode -v: increase verbosity…

Update Ioncube loader files

We recently came across a server which had an outdated ioncube load running, follow below to update to the latest version. Search for the location of ioncube loader files on your server, run the following command: find / -name ioncube_loader_lin_5.3.so…