741.5 System
Submitted by DaveWhite on September 30, 2004 - 14:54
I'm making the automation scripts I use to do the Japanese Beetle free to public. They're not as fully-featured as some of the other systems out there, but they have one advantage - they're quick, free, and doesn't require you to install any modules or set up databases. Even a moron could run a site with this.
They're available for download at http://www.7415comics.com/system/.




by DaveWhite - 09/30/2004 - 16:40
[quote:627d299352="Even A. Moron"]Do they support date-based filenames? A lot of Keenspacers would move on to this if they didn't have to rename everything.
It takes date-based filenames and then provides a tool that encrypts and renames them for you. The script assumes that you're using YYYYMMDD.ext for your filename, but that's an easy enough to change.
741.5 System
by DaveWhite - 09/30/2004 - 14:54
I'm making the automation scripts I use to do the Japanese Beetle free to public. They're not as fully-featured as some of the other systems out there, but they have one advantage - they're quick, free, and doesn't require you to install any modules or set up databases. Even a moron could run a site with this.
They're available for download at http://www.7415comics.com/system/.
by Xaviar Xerexes - 10/12/2004 - 00:46
Or better yet, POSTNUKE. :)
I run this place! Tip the piano player on the way out.
by Rick - 10/12/2004 - 04:25
I've taken a look at this, and it is very cool. Well done, and thanks!
...
by J-Sun - 02/03/2005 - 18:30
Does this support swf files?
Thanks!
:)
[url=http://www.cybertropolis.com/comics/index.html][img]http://www.cybertropolis.com/downloads/banners/cyber366x50.gif[/img][/url]
by DaveWhite - 02/16/2005 - 15:45
Most of the encoding and file testing functions will work just fine with an SWF file, but you'd need to change the stripswitch(date) function to something like this...
[code:1:7f72e721aa]
function stripswitch($date) {
global $md5prefix;
$y = md5($md5prefix . $date[0] . $date[1] . $date[2]);
if (file_exists("strips/$y.swf)) {
print("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"><param name=\"movie\" value=\"strips/$y.swf\" /></object><br />");
$x = true;
}
}
return $x;
}
[/code:1:7f72e721aa]
Obviously, you'd have to edit the object tag to match whatever you're currently outputting, but it should work fine.