in reply to Apache::Registry - shared variable?
It appears as though this may be the issue
It isn't, not with the code you posted, it has no nested subs, it shares no variables (unless the code you haven't shown does that)
A problem is with CGI->Vars , you never want to use CGI->Vars, CGI->Vars is for perl4
Also , return from main, exit after main
or exit main( @ARGV );main( @ARGV ); exit( 0 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Apache::Registry - shared variable?
by DaisyLou (Sexton) on Jun 20, 2013 at 15:07 UTC | |
by Anonymous Monk on Jun 20, 2013 at 15:11 UTC | |
|
Re^2: Apache::Registry - shared variable?
by DaisyLou (Sexton) on Jun 20, 2013 at 15:11 UTC | |
by Anonymous Monk on Jun 20, 2013 at 15:15 UTC | |
by DaisyLou (Sexton) on Jun 20, 2013 at 15:25 UTC | |
by Anonymous Monk on Jun 20, 2013 at 15:40 UTC | |
by poj (Abbot) on Jun 20, 2013 at 15:23 UTC |