From: rebecca s. <rss...@ya...> - 2002-11-18 13:38:13
|
I believe your problem is actually the same issue I stumbled over last week. dl() function is not a valid function call on a multi-threaded server. Could you run php_info and tell me if the enable_dl is set on or off? If you have a multi-thread server, you should change your php.ini file to have enable_dl = Off (per the developers at php.net). A more generic change (in phpESP.ini) of: if (!ini_get('safe_mode') && enable_dl) { .... might be warranted. Rebecca > > > 1. [ phpesp-Bugs-639178 ] Solaris 8 gettext test > problem (no...@so...) > > --__--__-- > > Message: 1 > To: no...@so... > From: no...@so... > Date: Fri, 15 Nov 2002 16:28:41 -0800 > Subject: [phpesp-dev] [ phpesp-Bugs-639178 ] Solaris > 8 gettext test problem > > Bugs item #639178, was opened at 2002-11-15 18:28 > You can respond by visiting: > https://sourceforge.net/tracker/?func=detail&atid=108956&aid=639178&group_id=8956 > > Category: Admin > Group: v1.5 > Status: Open > Resolution: None > Priority: 5 > Submitted By: James P. Dugal (jpd2) > Assigned to: Nobody/Anonymous (nobody) > Summary: Solaris 8 gettext test problem > > Initial Comment: > I just installed phpESP v1.5 under Apache 2.0.43, > PHP 4.2.3 and I invoke manage.php ... I get nothing > but a browser error message about no data being > sent. > I did some exploring and found that the test in > phpESP.ini for the gettext module being loaded or > available, is causing the problem here. I did not > install GNU gettext when I built PHP. Apparently > an error occurs when the .ini code attempts to @dl( > 'gettext.so') ... and never returns to take > alternative > action. My work-around was to not attempt to load > gettext.so when PHP_OS reported SunOS. So I have > this code change: > 148c148 > < if (!ini_get('safe_mode')) { > --- > > if (!ini_get('safe_mode') && (substr(PHP_OS, > 0, > 3) != 'Sun')) { > > > which results in an English-only environment, which > is acceptable. > > When I run your status.php script, I got: > php version: 4.2.3 > cwd: /web/docs/InfoTech/UCSS/phpESP-1.5/admin > register_globals: off > magic_quotes_gpc: off > magic_quotes_runtime: off > safe_mode: off > open_basedir: > mysql: loaded > gettext: not loaded ... trying to load > > > Regards. > -- James Dugal > jp...@lo... > > ---------------------------------------------------------------------- > > You can respond by visiting: > https://sourceforge.net/tracker/?func=detail&atid=108956&aid=639178&group_id=8956 > > > > --__--__-- > > _______________________________________________ > phpESP-devel mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-devel > > > End of phpESP-devel Digest __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site http://webhosting.yahoo.com |