Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

Callback Error => Core Dumps

Quote Reply
Callback Error => Core Dumps
I am experiencing the following error message when any CGI script powered by LINKS SQL v.1.3 is executed. Error logs give the same error message:

Code:

Callback called exit at staff.cgi line 23.


Line 23 in staff.cgi is:

Code:

use AG::DB_Utils;


I checked the syntax of DB_Utils and it is okay.

Funny thing is that when I try checking the syntax of HTML_Templates.pm, I get the following error message:

Code:

Out of Virtual Memory


Also, I am getting Fragmentation errors, which is causing CORE DUMPS all over the place.

Any ideas what the problem could be????

And, no, I am not using mod_perl (kind of obvious, since LINKS SQL v.1.3 is not mod_perl capable).

Thanks in advance!

Regards,

Eliot Lee
Quote Reply
Re: Callback Error => Core Dumps In reply to
Hi,

So from shell and in your admin directory:

perl -cw Links/HTML_Templates.pm

causes an out of memory error?! This must be something you added in that file.

In Reply To:
And, no, I am not using mod_perl (kind of obvious, since LINKS SQL v.1.3 is not mod_perl capable).
Sure it is! We ran our demo under mod_perl.

Cheers,

Alex

--
Gossamer Threads Inc.
Quote Reply
Re: Callback Error => Core Dumps In reply to
In Reply To:

causes an out of memory error?!


Yes...I am using that same command...the only thing I added to the HTML_Templates.pm file was a few values in the%GLOBALS hash.

In Reply To:

Sure it is! We ran our demo under mod_perl.


I stand corrected...although I am still having problems with NOT running the scripts via mod_perl.

Regards,

Eliot Lee
Quote Reply
Re: Callback Error => Core Dumps In reply to
UPDATE...

For some reason...removing the escape character for subroutine calls in the %GLOBALS caused the scripts to choke...

Now it works...

Regards,

Eliot Lee