A few updates to my blog

Super quick today, just activated the twitter plug-in so things will be a little bit more social :). The twitter auth is read only so I wont be doing any funny things to your account when you are not looking

I also added some new modules, down the bottom of every page is some links to other blogs I read. On the right is a box of "latest posts" for quick links to the new stuff.

I have also just finished up some tweaks to the cron job runner thing (needs a cool name) and the email socket for receiving emails without php's imap extension, so the newsletter plug-in can now automatically act upon bounced emails from campaigns.

Read more...

Huge speed gains for Infinitas

I just pushed some changes to Infinitas that has made a huge difference in the page load times. As you have seen in some of my previous posts, Infinitas serves loads of asset files. On average one JavaScript file and one css file, along with all the images. This equates to around 40 or 50 requests per page.

A little while back I added the code for generating symlinks automatically and although…

Read more...

Symlink CakePHP plugin assets for faster page loads

If you are a fan of CakePHP's plug-ins, and want to keep you application non-dependent on plug-ins you have to keep the assets in the plug-ins webroot folder. This might not seem like a bad thing till you realise CakePHP delivers those files via some fread() calls and appropriate headers.

So what you ask? Say You have an application with many plug-ins, things like a gallery, content management…

Read more...

Infinitas is almost beta

If you been to my site before you will notice some changes. A few more links added to the nav bar with some new content.

As I said before I will be keeping my site running a standard version of Infinitas (with some of the available plugins), so that you may get a glimpse into what it has on offer. All the posts from before have been using the Blog Plug-in that was coded for Infinitas. The abou…

Read more...

Google's new mod_pagespeed for Apache

Update

The bug I submitted about the cached names being to long has been fixed. More information is available here. I have not tested it yet, but hope to do so shortly.

Google has released mod_pagespeed for Apache, a module that brings promise of faster page loads and less bandwidth usage, lowering costs and making everyone happy. Is it possible that this could work as well as APC? sudo apt…

Read more...

PHP APC - make your app super fast!

One of the many advantages of using Ubuntu over windows is the ability to install and test out all the plug-ins available for PHP. One of them being APC (Alternative PHP Cache).

I just upgraded to the latest Ubuntu 10.10 and figured I would take a quick screen shot, for anyone that is doubting how much something like APC can affect an application. When I first found out about them, I did not t…

Read more...