Home : Products : DBMan : Customization :

Products: DBMan: Customization: Re: [ryans] Build static .html pages for details: Edit Log

Here is the list of edits for this post
Re: [ryans] Build static .html pages for details
You shouldn't get that as you are requiring the file that has sub cgierr in it.

Anyway change:

open (DB, "</web/docs/www.mysite.com/htdocs/cgi-bin/dbman/default.db") or &cgierr("Can't open db : $!");

to

open (DB, "</web/docs/www.mysite.com/htdocs/cgi-bin/dbman/default.db") or print "Can't open db : $!" and exit;

....and.........

open (F, ">$path/$bla[0].html") or &cgierr("Can't open db : $!");

to:

open (F, ">$path/$bla[0].html") or print "Can't open db : $!" and exit;

Last edited by:

RedRum: Oct 28, 2001, 1:26 PM

Edit Log: