How to Prioritize Your To-Do List
The To-do list is a big thing in most people’s lives now. Read our Medium post to get tips on how to break free from the oppression! https://medium.com/@hosting.fluid7/how-to-prioritize-your-to-do-list-2062941f907b
The To-do list is a big thing in most people’s lives now. Read our Medium post to get tips on how to break free from the oppression! https://medium.com/@hosting.fluid7/how-to-prioritize-your-to-do-list-2062941f907b
I’ve been working on a jbilling install whenever I’ve had a moment over the past few nights. From what I’ve seen, this is a very promising piece of open source work that is remarkably simple Read more…
Things to tweak on your Magento installations gleaned from the Magento forums. Magento ver. 1.0.19870.4 Install APC # pecl install apc edit php.ini to use apc extension extension=apc.so Switch mysql query caching on in my.cnf Read more…
I’ve setup a more resilient web service for a good client of mine.. http://www.practicalaction.org/ By using 2 servers and ‘pound’ they now have some load balancing but most importantly some resilience.. so if one server Read more…
Looking to eke out some more performance from my shared server sites running on CENTos, I decided to re-investigate the methods I’ve been using to optimise mysql. I’ve found another new tool to me that Read more…
I’ve been creating Certificate signing requests and private keys in individual command line instructions for years. Just found you can do this! openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr It’s the little Read more…
Ensure your SSDs are mounted on /mnt # mount -l Add a 8GB swapfile to /mnt # cd /mnt # /bin/dd if=/dev/zero of=swapfile bs=1M count=8192 # chown root:root swapfile # chmod 0600 swapfile Activate your Read more…
I’ve just upgraded my Fedora 16 to 17 using the lovely preupgrade tool. I’ve never had major problems with this before, but there a few complications thrown in this time that I thought worth documenting. Read more…
iptables -A OUTPUT -o eth0 -p tcp –dport 9418 -m state –state NEW,ESTABLISHED -j ACCEPT iptables -A INPUT -i eth0 -p tcp –sport 9418 -m state –state ESTABLISHED -j ACCEPT That is all
I’ve been using the mysql console tip for years from this blog post by Brian Resig (maintaining a few legacy sites), and struggled to find it this time. In fear of losing it entirely, I’m Read more…