Is this my misconfiguration? ===================== Undefined subroutine CGI::dump at /usr/local/koha/intranet/cgi-bin/placerequest.pl line 76 Global symbol "$flaginfotextEOF" requires explicit package name at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 368. Global symbol "$returneditemstable" requires explicit package name at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 368. Global symbol "$returneditemstable" requires explicit package name at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 409. Global symbol "$returneditemstable" requires explicit package name at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 424. Global symbol "$returneditemstable" requires explicit package name at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 474. Missing right curly or square bracket at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 491, at end of line syntax error at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 491, at EOF Execution of /usr/local/koha/intranet/cgi-bin/circ/returns.pl aborted due to compilation errors. [Tue Jan 14 22:41:42 2003] [error] [client 127.0.0.1] Premature end of script headers: /usr/local/koha/intranet/cgi-bin/circ/returns.pl =========================== When trying to add a new memeber I get this: ===================== syntax error at /usr/local/koha/intranet/cgi-bin/newmember.pl line 162, at EOF Execution of /usr/local/koha/intranet/cgi-bin/newmember.pl aborted due to compilation errors. [Tue Jan 14 22:45:25 2003] [error] [client 127.0.0.1] Premature end of script headers: /usr/local/koha/intranet/cgi-bin/newmember.pl ====================== Benedict
In article <E18YZee-000787-00@sc8-sf-list1.sourceforge.net>, Benedict <kb2qzv@poczta.wp.pl> wrote:
Is this my misconfiguration? ===================== Undefined subroutine CGI::dump at /usr/local/koha/intranet/cgi-bin/placerequest.pl line 76 Global symbol "$flaginfotextEOF" requires explicit package name at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 368.
[...] I'm getting this too. This probably is a real bug, but I have no clue what is causing it yet. -- Ambrose Li <a.c.li@ieee.org> http://ada.dhs.org/~acli/cmcc/ http://www.cccgt.org/ DRM is theft - We are the stakeholders
On Wed, Jan 15, 2003 at 02:58:16AM +0000, acli@ada.dhs.org via news-to-mail gateway said:
In article <E18YZee-000787-00@sc8-sf-list1.sourceforge.net>, Benedict <kb2qzv@poczta.wp.pl> wrote:
Is this my misconfiguration? ===================== Undefined subroutine CGI::dump at /usr/local/koha/intranet/cgi-bin/placerequest.pl line 76 Global symbol "$flaginfotextEOF" requires explicit package name at /usr/local/koha/intranet/cgi-bin/circ/returns.pl line 368.
[...]
I'm getting this too. This probably is a real bug, but I have no clue what is causing it yet.
The placerequest.pl error is a simple one ill fix that now. Its actually a typo in a debugging statement :-) In the old CGI (quite old now) $query->dump(); (where $query is a CGI object) would dump out all the variables and values passed to the script from the calling form. This was then changed to Dump (because dump is a reserved word) Ill fix this one right now in cvs and take a look at the returns bug. Chris -- Chris Cormack Programmer 025 500 789 Katipo Communications Ltd chris@katipo.co.nz www.katipo.co.nz
Hi, On Wed, Jan 15, 2003 at 04:09:40PM +1300, Chris Cormack wrote:
Ill fix this one right now in cvs and take a look at the returns bug.
I found the cause of the returns bug. The fix is below: ----------- cut here ------------ 8< --------------------- --- returns.pl.orig Mon Jan 13 18:07:18 2003 +++ returns.pl Tue Jan 14 22:24:33 2003 @@ -368,7 +368,8 @@ $borrowertable .= << "EOF"; <tr><td bgcolor=$headerbackgroundcolor background=$backgroundimage colspan=2> <b>Flags</b></td></tr> -$flaginfotextEOF +$flaginfotext +EOF } $borrowertable .= "</table>"; } ----------- cut here ------------ 8< --------------------- -- Ambrose Li <a.c.li@ieee.org> http://ada.dhs.org/~acli/cmcc/ http://www.cccgt.org/ DRM is theft - We are the stakeholders
participants (4)
-
acli@ada.dhs.org via news-to-mail gateway -
Ambrose Li -
Benedict -
Chris Cormack