Re: [Resin-interest] Resin 3.1, RequestDispatcher, include() and forward()

2008-02-28 Thread Ilya Kasnacheev
В сообщении от 27 Февраль 2008 19:30 Huitang Li написал(a):
 I tested with struts 1.0.x, 1.1.x, and 1.2.x, I got the same error.
 However, when I tried struts 1.3.8, this exception disappeared.

Well, I've switched to struts 1.3.8 as you suggested, but exception is still 
in place. I guess I'll have to redesign my app a bit.


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest


[Resin-interest] Resin 3.1.5 Pligg

2008-02-28 Thread Mo DeJong
 The Pligg verbosity I mentioned in the last
 few snapshots its still present, which is a
 shame as we can't go live with such enourmous
 logfiles being generated. Is there some way I
 can turn it off?

Hello Stargazer

It turns out this problem was caused by Pligg's
use of error_log() to write to a file in the cache
directory. I fixed the problem and closed the bug
report, but the fix won't be available until the
next snapshot release. What you could do until then
is change the Pligg code in ez_sql_core.php on line
348. You can replace the error_log() call with
a call to file_put_contents() with the append option.

Like so:

- error_log ( serialize($result_cache), 3,
$cache_file);

+ file_put_contents( $cache_file,
serialize($result_cache), FILE_APPEND);

I hope that helps
Mo


___
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest