Help for this page

Select Code to Download


  1. or download this
    if (<check that the file exists>) { 
        require 'settings.pm'; 
    ...
    else { 
        $::CONFIGPATH = "C:\\configdir\\config.pm"; 
    }
    
  2. or download this
    eval "use settings";
    if ($@) {
        $::CONFIGPATH = "C:\\configdir\\config.pm"; 
    }