![]() |
|
P is for Practical | |
PerlMonks |
fastcgi did NOT break my Exports, issue now resolvedby hesco (Deacon) |
on Jul 13, 2009 at 19:29 UTC ( #779726=perlquestion: print w/replies, xml ) | Need Help?? |
hesco has asked for the wisdom of the Perl Monks concerning the following question:
Hola, all: Last week I added fastcgi to my development server and now code which was essentially working is churning out errors like:
This code under development is organized as follows:
My::Module begins:
and each of those modules begins:
I have been able to restore some functionality by fully qualifying my method calls like so:
But there are 106 mostly working methods in this application so far and it is still growing. I would love not to have to rewrite every method call in the package in this way. Can anyone please advise me what is the matter here and what I could do about this? Any clues appreciated. -- Hugh UPDATE: Thanks to a remark in ikegami's post below, I went back into each of my use'd modules and changed them like so:
The result is that my code seems to work again. Thank you everyone who contributed to this discussion. Even those posts which did not immediately resolve this taught me quite a bit about the innards of perl. I had heard often of the symbol table, but had never known how to access it before. I suspect that should prove invaluable in the future. Thank you ikigami, perrin, esper, and how ever many anonymous monks may have contributed to this discussion. I'm still curious why the pre-patch version worked before the dist-upgrade, but not after. But I'm grateful to be moving forward again. I'm hopeful I may yet have this code ready for a public launch at next weekend's conference. We shall see.
if( $lal && $lol ) { $life++; }
Back to
Seekers of Perl Wisdom
|
|