From: SourceForge.net <no...@so...> - 2005-08-02 10:09:30
|
Bugs item #1250099, was opened at 2005-08-02 12:09 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1250099&group_id=8956 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Admin Group: v1.7 Status: Open Resolution: None Priority: 5 Submitted By: oliver.alexy (oalexy) Assigned to: Nobody/Anonymous (nobody) Summary: Configuration WinXP, PHP 5.0.4, MySQL 4.1.13, Apache 2.0.54 Initial Comment: I dont know whether it was just my stupidity, but I could not get to run phpESP on the system mentioned above (Apache 2.0 handler) - and yes, I read the instructions ;). After subsituting all forms of HTTP_POST_VARS used (same for get, session) with _POST (_GET, _SESSION, respectively), everything seems to be working fine. "All forms" because I think both $HTTP_POST_VARS and $GLOBALS['HTTP_POST_VARS'] were used. This also fixed another issue I encountered: When editing survey questions, Question Name, Type, etc. was not displayed at all, again, this now seems to be working fine. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1250099&group_id=8956 |
From: SourceForge.net <no...@so...> - 2005-08-02 11:11:43
|
Bugs item #1250099, was opened at 2005-08-02 12:09 Message generated for change (Comment added) made by oalexy You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1250099&group_id=8956 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Admin Group: v1.7 Status: Open Resolution: None Priority: 5 Submitted By: oliver.alexy (oalexy) Assigned to: Nobody/Anonymous (nobody) Summary: Configuration WinXP, PHP 5.0.4, MySQL 4.1.13, Apache 2.0.54 Initial Comment: I dont know whether it was just my stupidity, but I could not get to run phpESP on the system mentioned above (Apache 2.0 handler) - and yes, I read the instructions ;). After subsituting all forms of HTTP_POST_VARS used (same for get, session) with _POST (_GET, _SESSION, respectively), everything seems to be working fine. "All forms" because I think both $HTTP_POST_VARS and $GLOBALS['HTTP_POST_VARS'] were used. This also fixed another issue I encountered: When editing survey questions, Question Name, Type, etc. was not displayed at all, again, this now seems to be working fine. ---------------------------------------------------------------------- >Comment By: oliver.alexy (oalexy) Date: 2005-08-02 13:11 Message: Logged In: YES user_id=1274627 P.S.: Using phpESP Release Version 1.7.5 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1250099&group_id=8956 |
From: SourceForge.net <no...@so...> - 2005-08-02 13:58:25
|
Bugs item #1250099, was opened at 2005-08-02 05:09 Message generated for change (Comment added) made by greggmc You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1250099&group_id=8956 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Admin Group: v1.7 >Status: Closed Resolution: None Priority: 5 Submitted By: oliver.alexy (oalexy) Assigned to: Nobody/Anonymous (nobody) Summary: Configuration WinXP, PHP 5.0.4, MySQL 4.1.13, Apache 2.0.54 Initial Comment: I dont know whether it was just my stupidity, but I could not get to run phpESP on the system mentioned above (Apache 2.0 handler) - and yes, I read the instructions ;). After subsituting all forms of HTTP_POST_VARS used (same for get, session) with _POST (_GET, _SESSION, respectively), everything seems to be working fine. "All forms" because I think both $HTTP_POST_VARS and $GLOBALS['HTTP_POST_VARS'] were used. This also fixed another issue I encountered: When editing survey questions, Question Name, Type, etc. was not displayed at all, again, this now seems to be working fine. ---------------------------------------------------------------------- >Comment By: Matthew Gregg (greggmc) Date: 2005-08-02 08:58 Message: Logged In: YES user_id=14116 php5 is not supported in this version ---------------------------------------------------------------------- Comment By: oliver.alexy (oalexy) Date: 2005-08-02 06:11 Message: Logged In: YES user_id=1274627 P.S.: Using phpESP Release Version 1.7.5 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1250099&group_id=8956 |
From: Florian (flobee) <fl...@gm...> - 2005-08-14 21:02:16
|
SourceForge.net wrote: >Bugs item #1250099, was opened at 2005-08-02 05:09 > >After subsituting all forms of HTTP_POST_VARS used >(same for get, session) with _POST (_GET, _SESSION, >respectively), >---------------------------------------------------------------------- > >>Comment By: Matthew Gregg (greggmc) >php5 is not supported in this version > wrong: by default long arrays are OFF, thats all. suggestion, because this should be easy to setup: in phpesp.ini.php: if (isset($_SERVER)) $server =& $_SERVER; else $server =& $HTTP_SERVER_VARS; 1) no one ist using "$server" but HTTP_SERVER_VARS :-( 2) no one is using $GLOBALS['server'] 3) missing/suggestion: $GLOBALS['_GET'] | $GLOBALS['_POST'] and then ini_set('register_globals', false); makes it more save! 4) for multi compatiblity: session should get its own "namespace" like $_SESSION[_CONSTANT_PHSESP_SESSION_NAME]['acl'] $_SESSION[_CONSTANT_PHSESP_SESSION_NAME][ *** ] this could be changed quickly, i've done it in esp1.6.1 and running php5 since it's official kind regards flobee |
From: Matthew G. <gr...@MU...> - 2005-08-15 13:02:41
|
If I understand what you're saying most of this has been implemented in CVS thanks to a patch Angke submitted. Please take a look at what is available and see if it's close to what you are suggesting here. A patch for further changes is welcome. On Sun, 2005-08-14 at 23:00 +0200, Florian (flobee) wrote: > SourceForge.net wrote: > > >Bugs item #1250099, was opened at 2005-08-02 05:09 > > > >After subsituting all forms of HTTP_POST_VARS used > >(same for get, session) with _POST (_GET, _SESSION, > >respectively), > >---------------------------------------------------------------------- > > > >>Comment By: Matthew Gregg (greggmc) > >php5 is not supported in this version > > > wrong: by default long arrays are OFF, thats all. > suggestion, because this should be easy to setup: > in phpesp.ini.php: > if (isset($_SERVER)) $server =& $_SERVER; > else $server =& $HTTP_SERVER_VARS; > > 1) no one ist using "$server" but HTTP_SERVER_VARS :-( > 2) no one is using $GLOBALS['server'] > 3) missing/suggestion: $GLOBALS['_GET'] | $GLOBALS['_POST'] > and then ini_set('register_globals', false); > makes it more save! > > 4) for multi compatiblity: session should get its own "namespace" like > $_SESSION[_CONSTANT_PHSESP_SESSION_NAME]['acl'] > $_SESSION[_CONSTANT_PHSESP_SESSION_NAME][ *** ] > > this could be changed quickly, i've done it in esp1.6.1 and running php5 > since it's official > > kind regards flobee > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > phpESP-devel mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-devel > > -- mcg ------------------------------------- The IT Lab (http://www.itlab.musc.edu) |