Help for this page

Select Code to Download


  1. or download this
    %config = do "../config.cgi" or die("Error: $!");
    
  2. or download this
    our %config = do "filename"
        or die("can't recreate config info: $!");
    return %config;
    
  3. or download this
    %config = (
                'logging_enabled' => 1,
                'crypt_salt' => 'xQ'
              );