I figured out why 22Pixels has been loading extremely slow over the past few months. It had to do with some extremely inefficient tag queries, something I should be able to clear up within the coming weeks.
Archive for category PHP
22Pixels Slowness
Apr 9
Simple, all you need to do is create a new php document, and paste the following into it.
<?php phpinfo(); ?>
Load the page in your browser, and then press Control + F and search for “safe_mode.”
I have been using my latest project, VentStatus, as a an opportunity to learn a new framework: CodeIgniter. It has treated me well so far, most problems encountered only required a short workaround. Lately I’ve been concerned with the scale-ability of VentStatus, it’s my first project on this large of a scale. Luckily, CodeIgniter has [...]