Hi Klaus-F., if you just want to avoid the symptoms, altering the "memory_limit" value in php.ini (might be D:\xampp\apache\bin\php.ini in your case, depending on if you changed xampp's defaults), maybe to 64M, could be a first step.
I never ran into that error when handling RPCs myself, even when doing some tables. If you're on for some debugging, and your xampp is rather fresh (PHP 5.2.1 does bring it along), you could check your script's maximum memory usage with "memory_get_peak_usage()": http://www.php.net/manual/en/function.memory-get-peak-usage.php In my version of JSON.phps, which is: * @version CVS: $Id: JSON.php,v 1.30 2006/03/08 16:10:20 migurski Exp $ in line 406, the encode() function joins the argument's php array elements. Is it possible that your RPC method returned some really big array? So if the behaviour is not an error because you are juggling with huge amounts of data, why not try to chop it into smaller parts? Bye, Stefan Klaus-F. Kaal wrote: > Hi, > > I try to populate a table with quite a few lines and columns of data. > For this purpose, I issue a asynch RPC call which works with smaller > amount of data. > > Now, it issues this exception box. > > > > Any idea, how I could circumvent that? > > Thank you > > -- > > *Klaus-F. Kaal* > Geschäftsführer > > *TIMO/logic/ GmbH* > Singener Str. 42d > D-78256 Steisslingen > > phone +49 7738 97096 > fax +49 7738 97094 > web www.timologic.com <http://www.timologic.com/> > mail [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > > Handelsregister: Singen HRB 1795 > ------------------------------------------------------------------------ > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
