Adobe Reader X (10.1.3) Offline Installer Link

Here is the Windows XP (SP3) and Windows 7 offline installer for Adobe Reader X: http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.1.3/en_US/AdbeRdr1013_en_US.exe

How to send HTML message from the linux command line

echo “YAY HTML Works” | mail -s “$(echo -e “Subject Goes HerenContent-Type: text/html”)” to@yourmum.com

How to adjust WordPress Blog Storage Space

I had the tricky job of adjusting a clients WordPress blog that had ran out of “Storage Space” and to modify it, it was quite tricky to find this sneaky option.

To change it:

  • Log into the WP dashboard,
  • Up in to top right where it says ” Howdy, USERNAME” click that
  • Then Network Admin
  • Goto Sites on the left
  • “Edit” the blog you want to adjust
  • Click the “Settings Tab”
  • Scroll to the bottom and adjust “Site Upload Space Quota”.
  • Click “Save”

Shortcut to Offer Remote Assistance

If you know how impossible it is to find this link when you need it.
Valid for Windows XP & Windows 2003 Server

%windir%explorer.exe "hcp://CN=Microsoft%20Corporation,L=Redmond,S=Washington,C=US/Remote%20Assistance/Escalation/Unsolicited/Unsolicitedrcui.htm"

Server 2008

%systemroot%system32msra.exe

Performance Tuning WordPress for Low Spec Servers

I recently moved my website to a cheap VPS I had the fun journey of trying to get it work without grinding to a halt everytime I clicked on a page, which you ‘should’ have noticed is fixed.

Firstly I needed to be realistic this blog wouldn’t have more than two simultanious connections at once, with that known I could then edit the amount for apache server threads to an un-godly small number in /etc/apache2/apache2.conf


StartServers 2
MinSpareServers 2
MaxSpareServers 2
MaxClients 20
MaxRequestsPerChild 0

With that noted a quick look at ‘top’ shows MySQL eating lots of Virtual Memory a quick swap of the configuration file: /usr/share/doc/mysql-server-5.1/examples/my-small.cnf to /etc/mysql/my.cnf sorts out that problem. (Don’t forget to backup your originals)

And finally modifying the WordPress max memory limit as noted in this post
suhosin[10882]: ALERT – script tried to increase memory_limit to 268435456 bytes