Forum Moderators: coopster & phranque

Message Too Old, No Replies

Anyone recognize this error

Cant Locate cgi-bin/*******/lang/english.pl in @INC (@INC contains: /us

         

dauction

5:16 am on Jun 4, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



This is what I have in cgi files:

use CGI::Carp qw(fatalsToBrowser);
require './source/config.pl';
require './source/categorysetup.pl';
require './source/get.pl';
require './lang/langset.pl';

I've tried switching requirted to "use"

I've tried adding the english set which does exist:

use CGI::Carp qw(fatalsToBrowser);
require './source/config.pl';
require './source/categorysetup.pl';
require './source/get.pl';
require './lang/langset.pl';
require './lang/eng.pl';

Is the problem something along those lines or is the error message indicative more along my paths in config.cgi

thanks

wruppert

12:08 pm on Jun 4, 2005 (gmt 0)

10+ Year Member



One thing I noticed is that you require "eng.pl" but the error says "english.pl".

dauction

2:13 pm on Jun 4, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Morning wruppert,

amazing how we miss stuff , their it is sticking out like a sore thumb.

I havent tried it yet but that looks like the culprit

I'll post the results

Thanks

dauction

2:27 pm on Jun 4, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks wruppert that was the crux of the problem..

I also had to remove

require './lang/langset.pl';