Archive for the 'phpWebSite' Category

Cache Page phpWebSite module 0.0.3

Wednesday, November 9th, 2005

Here’s an updated release of the Cache Page module for phpWebSite 0.10.2. Cache Page improves phpWebSite speed by about 6 times faster than without Cache Page.
phpWebSite 0.10.2 left out the pear lib/pear/Cache module, so I’ve included a copy of the pear module distributed with phpWebSite 0.10.1. Copy the patches/0.10.2/lib/pear/Cache directory included with Cache […]

Deleting Expired Announcements in phpWebsite

Sunday, May 8th, 2005

phpWebsite announcements have an expiration date used to determine when to stop displaying them. After they stop displaying, the announcements simply remain in the database until they are deleted manually. This is my solution to delete expired announcements automatically.
Rather than include something in the phpWebsite code that checks for expired records every time […]

Improved phpWebsite speed with cache_page module

Thursday, April 28th, 2005

After using the the cache_page module for over a week on the City of Rolfe website, I new it was faster, but hadn’t done suitable testing to find out how much faster. When I finally took the time for testing, I was quite pleased with the result. Under normal server load, pages served from […]

cache_page - phpWebSite page level cache module

Monday, April 18th, 2005

cache_page uses php output buffering to capture the output of phpWebSite and store it in a cache in the files/cache_page/cache directory. Pages are identified based on the request_uri. The next time the same request_uri is received, the stored page will be served from the cache instead of being dynamically generated by phpwebsite.
See a […]