Gossamer Forum
Quote Reply
2.99.1 BUG
I tried updating the table (users) thru admin and this is the error:


A fatal error has occured:
GT::SQL::Editor (32069): Unknown method '_column_sql' called at GT::SQL::Editor::alter_col line 238.

Please enable debugging in setup for more details.

This error is almost the same as the one noted in this thread:

http://www.gossamer-threads.com/perl/gforum/gforum.cgi?post=279307

So cannot update the table from Admin ....




Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================
Quote Reply
Re: [HyperTherm] 2.99.1 BUG In reply to
Are you using it under mod_perl? You're probably using an older library with a 2.99.x.

Adrian
Quote Reply
Re: [brewt] 2.99.1 BUG In reply to
Yes it's under mod_perl

startup.pl has:

glinks (V 2.99.1)
gcommunity (V 1.02)
gmail (V 2.2.0)

in that order

Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================

Last edited by:

HyperTherm: Mar 30, 2005, 2:38 PM
Quote Reply
Re: [HyperTherm] 2.99.1 BUG In reply to
Hi,

Can you come up with the exact content of the mod_perl startup file? In particular, I suspect the problem may be something like this:

use lib '/path/to/gossamer-links';
use Links::mod_perl;

use lib '/path/to/community';
use Community::mod_perl;

use lib '/path/to/gmail';
use GMail::mod_perl;


In such a case, modules that aren't preloaded would come from gmail rather than Gossamer Links. The above should ideally be:

use lib
'/path/to/gossamer-links',
'/path/to/community',
'/path/to/gmail';

use Links::mod_perl;
use Community::mod_perl;
use GMail::mod_perl;

There is more information on this in this thread.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Quote Reply
Re: [brewt] 2.99.1 BUG In reply to
As soon as gcom libs are loaded, the error creeps up. Otherwise:

Glinks -------------------- OK
GLinks + GMail ----------- OK
Glinks + Gforum ---------- OK
Glinks + GMail + Gforum --- OK

GLinks + Gcom -- Same Error
Glinks+Gmail+Gcom -- Same Error
Glinks+GMail+Gforum+Gcom -- Same Error

So problem is Gcom when loaded in any combination.
Any clue?

Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================
Quote Reply
Re: [Jagerman] 2.99.1 BUG In reply to
No Jason.
I had long back read your post on "How To"

The two areas are separate
use lib
'/path/to/glinks/admin',
'/path/to/gcom/lib',
/path/to/gmail/admin';

and then
use Links::mod_perl
.......
.......

use Apache::Constants ();
sub My::ProxyRemoteAddr ($) {
my $r = shift;
.....
.....
.....

1;


Gcom loading, in any combination is causing the error

Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================
Quote Reply
Re: [Jagerman] 2.99.1 BUG In reply to
To fix on the problem, did the following:

linked Gcom's GT to Glinks GT
enabled everything in startup.pl

No errors now.
So the problem seems to be somewhere associated with Gcom's GT

This brings me reminder on long pending issue:

Having a single location of GT (and hence a single copy) common to all products, dealt more so through installer ... i think there was a mention by Alex somewhere that yes this is thought of... long back.

Problem resolved but others *may* find themselves in similar situation.

Thanks

Thanks
HyTC
==================================
Mail Me If Contacting Privately Is That Necessary.
==================================