We are being visited, recorded and cataloged. Not by our own species.
I’ll will not be available until I am better. Soo someone answer questions on comicpress.org and I think byron has the war going good on webcomic planet.
The WebComic Planet War! is starting its signup phase. If you are a webcomic author and wish to participate, go read more @ WebComic Planet.

ComicPress 2.9 upgrades are available from me, for $25.00, taking your current design and implementing it into 2.9. This offer does not include people who have custom site work done by Tyler Martin, discuss upgrades with him.
What you get for the $25? You get your own child theme made out of your current site design so that the original ComicPress can be upgraded at anytime and your site will retain all of it’s current look and feel in the child theme.
There are limited # of people that I can work on each day so make sure that you contact me at philip@frumph.net right away if you’re interested in an upgrade.
If you’re interested in more work done then a basic upgrade you can look at my Hire Me page for rates.
- Phil (Frumph)
How to setup a PHP Error log for WordPress
by Phil (Frumph) on February 6th, 2010There are a few hosts that do not give you an easy ability to see php errors that might happen. The first step is to edit your wp-config.php in your installation root directory.
Add these lines:
// Tell wordpress to enable error reporting
define('WP_DEBUG', 1);
// Do *not* display errors to the screen
define('WP_DEBUG_DISPLAY', 0);
// Tell wordpress to create a log file
define('WP_DEBUG_LOG', 1);
// Tell wordpress we don't want the extra info
define('E_DEPRECATED', 1);
Next step is to tell WordPress to ‘avoid’ giving you all the damn notices you might be getting. Edit the wp-settings.php file that is in the root of the wordpress installation.
Search for:
if ( defined('E_DEPRECATED') )
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
and replace the error_reporting line with this:
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);
This will tell the debug.log to not record anything that’s deprecated strict or notices.
Once you do this, if any errors occur you will find in the wp-content directory a file called debug.log, then you can look at that log for what the error is and fix it. (or tell someone who can fix it).
/wp-content/debug.log
- Phil (Frumph)
Originally ComicPress 2.9 was going to be 2.8.1 but wierdly enough I decided to throw a whole bunch of new features and code cleanup that warranted a serious revision adjustment.
At the end of Nov. 2009 Danny Burleson joined us in helping with revamps of various config sections. Welcome Danny! We’ll get you up to speed with adding features in no time.
↓ Read the rest of this entry…
#menubar / #sidebar-menubar
#header / #sidebar-header
ComicPress 2.9 is nearing completion and the beta is available to those who want to experience all of the new options and abilities that this version has to offer.
Download ComicPress 2.9 (BETA) Here
Remember, the support for 2.9 is limited to reporting buts at http://bugs.comicpress.org/
- Phil (Frumph)


