Monthly Archives: May 2005

Query Caching in MySQL

Something you might want to consider turning on query caching in MySQL. I’m not sure if this is what you are getting at, but MySQL has can be configured to cache query results in memory. That way, if you use … Continue reading

Posted in Uncategorized | Leave a comment

Howto install Apache with ModSSL and PHP from source

Code: # choose a source dir:cd /usr/local/src# there are lots of mirrors, get apach_1.3.33.tar.gz from one of them# you can get a random mirror at http://httpd.apache.org/download.cgi# here is one for your convenience: Share This Post On:u=http://www.koopman.me/2005/05/howto-install-apache-with-modssl-and-php-from-source/&title=Howto+install+Apache+with+ModSSL+and+PHP+from+source” title=”Share ‘Howto install Apache … Continue reading

Posted in Uncategorized | Leave a comment

Bookmark a page that auto-posts your login

The idea is this: I am tired of logging into the same site over and over again. This is a simple GET to POST converter. The page helps you create a URL that you can bookmark. When you use this … Continue reading

Posted in Code | Leave a comment

What PHP accelerator works well with PHP?

I know that the Zend Accelerator works well, but it’s expensive. Turke MMCache is the best freeware PHP accelerator for PHP4, but has some problems with PHP5. Any thoughts?        Best Freeware Available, I think, is E Accelerator (this site … Continue reading

Posted in Uncategorized | Leave a comment

PHP5 Autoload classes

This is really handy for medium to large size projects. You don’t have to remember to put a set of require_once functions in every file.  I usually put this in a config file that’s loaded early and on every page. … Continue reading

Posted in Code | Leave a comment