Stefan Cars wrote:
Here is my code:
$s->add_config('');
$s->add_config('ServerAdmin [EMAIL PROTECTED]');
$s->add_config('ServerName www.xxx.xxx');
$s->add_config('DocumentRoot /xxx/xxx/xxx');
$s->add_config('ErrorLog logs/xxx-error_log
$s->add_config('');
It should be:
$s->add_config(
['',
'Serv
Stas Bekman wrote:
Stefan Cars wrote:
Here is my code:
$s->add_config('');
$s->add_config('ServerAdmin [EMAIL PROTECTED]');
$s->add_config('ServerName www.xxx.xxx');
$s->add_config('DocumentRoot /xxx/xxx/xxx');
$s->add_config('ErrorLog logs/xxx-error_log
$s->add_config('');
It should be:
$s->
Our application uses apache::session as a base, using cookies if they are
supported, and the query string if not. The application is a perl handler
and we are using the template toolkit.
To avoid having to always set the query string manually in the a href links
on all the pages, I was thinking