Re: Server returns nothing (solved)

2003-02-14 Thread Ged Haywood
Hi there, On Thu, 13 Feb 2003, Viljo Marrandi wrote: On Thu, 13 Feb 2003, Ged Haywood wrote: Hi there, On Thu, 13 Feb 2003, Viljo Marrandi wrote: DBIx::Recordset::Fetchsizewarn = 0; while the correct is: $DBIx::Recordset::Fetchsizewarn = 0; Only one missing $ !

Re: Server returns nothing (solved)

2003-02-13 Thread Viljo Marrandi
Hello, My code checks $tt-error() and it didn't show anything. But I found the problem, it still was perl and it was very, very stupid mistake. In that weird module I defined: DBIx::Recordset::Fetchsizewarn = 0; while the correct is: $DBIx::Recordset::Fetchsizewarn = 0; Only one missing $ !

Re: Server returns nothing (solved)

2003-02-13 Thread Ged Haywood
Hi there, On Thu, 13 Feb 2003, Viljo Marrandi wrote: My code checks $tt-error() and it didn't show anything. But I found the problem, it still was perl and it was very, very stupid mistake. In that weird module I defined: DBIx::Recordset::Fetchsizewarn = 0; while the correct is:

Re: Server returns nothing (solved)

2003-02-13 Thread Viljo Marrandi
Hello, Yes, use strict; was in all modules, this makes it even more interesting, doesn't it? Viljo On Thu, 13 Feb 2003, Ged Haywood wrote: Hi there, On Thu, 13 Feb 2003, Viljo Marrandi wrote: My code checks $tt-error() and it didn't show anything. But I found the problem, it still was

Re: Server returns nothing (solved)

2003-02-13 Thread Stas Bekman
Viljo Marrandi wrote: Hello, Yes, use strict; was in all modules, this makes it even more interesting, doesn't it? use warnings; ? __ Stas BekmanJAm_pH -- Just Another mod_perl Hacker http://stason.org/

Re: Server returns nothing (solved)

2003-02-13 Thread Viljo Marrandi
Yes, even warnings was used. Viljo On Fri, 14 Feb 2003, Stas Bekman wrote: Viljo Marrandi wrote: Hello, Yes, use strict; was in all modules, this makes it even more interesting, doesn't it? use warnings; ? __ Stas