Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
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…
It happens, rarely as it may, that Plesk will not report the correct disk usage for a subscription. To get it recalculate things issue the following at shell /usr/local/psa/admin/sbin/statistics –calculate-one –domain-name DOMAIN.TLD Credit:
I recently experienced this error on a DigitalOcean node with 512MB ram. The full error below: Starting MySQL (Percona Server). ERROR! The server quit without updating PID file () The log had the following errors logged 2015-05-25 03:46:27 3518 [Note]…
We started experimenting with Varnish in a bid to tackle load instead of adding full blown replicated web server nodes. Once we were done with testing we ran into trouble implementing the set up on Plesk. There isn’t a whole lot…
Make sure you have the epel repo installed on your system #This is for CentOS 64-bit wget wget rpm -Uvh epel-release-6-8.noarch.rpm Install Memcached yum install memcached With installation done, we’ll need configure Memcached now # Running on Port 11211 PORT=”11211″…
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…
This has to be the easiest way to perform a speedtest or bandwidth test on a linux box, perform the following: wget -O speedtest-cli chmod +x speedtest-cli ./speedtest-cli You should end up with something like this
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…
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…
I really haven’t been able to get to the bottom of why this occurs by I’m posting a solution that worked for me below: For us, this occurred when running the following while set in cron /usr/bin/curl After looking…