You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
(103) |
Apr
(37) |
May
(45) |
Jun
(49) |
Jul
(55) |
Aug
(11) |
Sep
(47) |
Oct
(55) |
Nov
(47) |
Dec
(8) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(43) |
Feb
(85) |
Mar
(121) |
Apr
(37) |
May
(33) |
Jun
(33) |
Jul
(14) |
Aug
(34) |
Sep
(58) |
Oct
(68) |
Nov
(31) |
Dec
(9) |
2004 |
Jan
(13) |
Feb
(57) |
Mar
(37) |
Apr
(26) |
May
(57) |
Jun
(14) |
Jul
(8) |
Aug
(12) |
Sep
(32) |
Oct
(10) |
Nov
(7) |
Dec
(12) |
2005 |
Jan
(8) |
Feb
(25) |
Mar
(50) |
Apr
(20) |
May
(32) |
Jun
(20) |
Jul
(83) |
Aug
(25) |
Sep
(17) |
Oct
(14) |
Nov
(32) |
Dec
(27) |
2006 |
Jan
(24) |
Feb
(15) |
Mar
(46) |
Apr
(5) |
May
(6) |
Jun
(9) |
Jul
(12) |
Aug
(5) |
Sep
(7) |
Oct
(7) |
Nov
(4) |
Dec
(5) |
2007 |
Jan
(4) |
Feb
(1) |
Mar
(7) |
Apr
(3) |
May
(4) |
Jun
|
Jul
|
Aug
(2) |
Sep
(2) |
Oct
|
Nov
(22) |
Dec
(19) |
2008 |
Jan
(94) |
Feb
(19) |
Mar
(32) |
Apr
(46) |
May
(20) |
Jun
(10) |
Jul
(11) |
Aug
(20) |
Sep
(16) |
Oct
(12) |
Nov
(13) |
Dec
|
2009 |
Jan
|
Feb
(9) |
Mar
(37) |
Apr
(65) |
May
(15) |
Jun
|
Jul
(24) |
Aug
(1) |
Sep
(8) |
Oct
(4) |
Nov
(21) |
Dec
(5) |
2010 |
Jan
(35) |
Feb
(6) |
Mar
(8) |
Apr
|
May
(4) |
Jun
(3) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2006-03-16 19:28:42
|
Bugs item #1410940, was opened at 2006-01-20 11:56 Message generated for change (Comment added) made by blentz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410940&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.8 Status: Open Resolution: None Priority: 5 Submitted By: blentz (blentz) Assigned to: Nobody/Anonymous (nobody) Summary: Accessing designer account admin logs you out Initial Comment: When logged in as a superuser with all ACL abilities, I try to go and modify an existing designer. I can get as far as the "Designers Account Administration" form, but if I click *anything* i.e. Update/Cancel/Delete buttons, Go back to Management Interface link, or even manually try and go to /admin/manage.php, I am booted out and am sent to the Management Login form with "Incorrect User ID or Password, or your account has been disabled/expired." This makes changing or deleting an existing designer impossible. ---------------------------------------------------------------------- >Comment By: blentz (blentz) Date: 2006-03-16 14:28 Message: Logged In: YES user_id=997838 Please try to use the patch I attached to this bug report back in January. It will fix your problem. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-03-16 13:47 Message: Logged In: NO I am having the same issue... I am going to rrot out my bad account thru MySQL... But you are right, we are unable to mod, del, and created account using phpESP. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-03-03 09:04 Message: Logged In: NO Same Problem! ---------------------------------------------------------------------- Comment By: blentz (blentz) Date: 2006-01-23 23:21 Message: Logged In: YES user_id=997838 I'm guessing you're both right; problem is that I have other PHP applications on the system that require register_globals. I've created a patch from the changes by R. Schroeder, can be applied to the phpESP source tree using: patch -p0 < phpESP-1.8.patch Tested, corrects this bug. Perhaps this patch could be incorporated into the next release, making the Administer Respondants and Administer Designers work on systems with register_globals? ---------------------------------------------------------------------- Comment By: Matthew Gregg (greggmc) Date: 2006-01-23 19:50 Message: Logged In: YES user_id=14116 I believe this bug is only present when register globals is on(an unsupported configuration). But I could be wrong. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-01-23 18:56 Message: Logged In: NO Check around line 180 in admdesigner.inc. My modifications are below to fix conflicting variable names. Similar fix applies to admrespondent. /* load ACL */ if(!empty($u) && !empty($r)) { $sql = "SELECT * FROM ".$GLOBALS['ESPCONFIG']['designer_table']." WHERE username=$u AND realm=$r"; $result = execute_sql($sql,"",ADODB_FETCH_ASSOC); if($arr = fetch_row($result)) { /* foreach(array( 'username', 'realm', 'fname', 'lname', 'email', 'pdesign', 'pstatus', 'pdata', 'pall', 'pgroup', 'puser', 'disabled', 'expiration') as $col) { $$col = $arr[$col]; } $u =& $username; $r =& $realm; */ // Ryan Schroeder - assign manually to avoid conflicting with $username $u = $arr['username']; $r = $arr['realm']; $fname = $arr['fname']; $lname = $arr['lname']; $email = $arr['email']; $pdesign = $arr['pdesign']; $pstatus = $arr['pstatus']; $pdata = $arr['pdata']; $pall = $arr['pall']; $pgroup = $arr['pgroup']; $puser = $arr['puser']; $disabled = $arr['disabled']; $expiration = $arr['expiration']; if(intval($expiration) > 0) { $ex_year = substr($expiration,0,4); $ex_month = substr($expiration,4,2); $ex_day = substr($expiration,6,2); } else { $ex_year = ''; $ex_month = ''; $ex_day = ''; } } else { $errstr .= mkerror(_('Account not found.') .' ('. ErrorMsg() .')'); } } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410940&group_id=8956 |
From: Aaron A. <li...@fr...> - 2006-03-16 19:18:15
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The problem appears to be that IE requires more header content. I have created a patch against the latest cvs and attached it to this email. Adding the following to the header solves the IE issues: header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); - -- Aaron Axelsen li...@fr... Great hosting, low prices. Modevia Web Services LLC -- http://www.modevia.com Aaron Axelsen wrote: > I have tested this on all mac and pc browsers, the problem only > exists in the latest version of IE. I currently do not have the > means to test on older versions of IE. > > This leads me to believe Microsoft patched something that is > breaking this. > > -- Aaron Axelsen li...@fr... > > Great hosting, low prices. Modevia Web Services LLC -- > http://www.modevia.com > > > > Aaron Axelsen wrote: >>> Whenever I try to export survey data in IE, i get an error >>> saying Internet Explorer cannot download the file from the >>> server. >>> >>> I am running version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 >>> >>> Does anyone else have this problem with the latest updates on >>> windows xp? If you do not have this problem, what version of >>> IE running? >>> >>> >>> ------------------------------------------------------- This >>> SF.Net email is sponsored by xPML, a groundbreaking scripting >>> language that extends applications into web and mobile media. >>> Attend the live webcast and join the prime developer group >>> breaking into this new coding territory! >>> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > >>> _______________________________________________ phpESP-devel >>> mailing list php...@li... >>> https://lists.sourceforge.net/lists/listinfo/phpesp-devel >>> > > ------------------------------------------------------- This SF.Net > email is sponsored by xPML, a groundbreaking scripting language > that extends applications into web and mobile media. Attend the > live webcast and join the prime developer group breaking into this > new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ phpESP-devel > mailing list php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-devel > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEGbniuucONIvD0AMRAuaCAJ0ZL06x3sE7nyTDwQjO2MRPPazU1QCgm89O yPfBYaoh5kCoQ+GnapkClfM= =Da2m -----END PGP SIGNATURE----- |
From: SourceForge.net <no...@so...> - 2006-03-16 18:47:50
|
Bugs item #1410940, was opened at 2006-01-20 08:56 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410940&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.8 Status: Open Resolution: None Priority: 5 Submitted By: blentz (blentz) Assigned to: Nobody/Anonymous (nobody) Summary: Accessing designer account admin logs you out Initial Comment: When logged in as a superuser with all ACL abilities, I try to go and modify an existing designer. I can get as far as the "Designers Account Administration" form, but if I click *anything* i.e. Update/Cancel/Delete buttons, Go back to Management Interface link, or even manually try and go to /admin/manage.php, I am booted out and am sent to the Management Login form with "Incorrect User ID or Password, or your account has been disabled/expired." This makes changing or deleting an existing designer impossible. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-03-16 10:47 Message: Logged In: NO I am having the same issue... I am going to rrot out my bad account thru MySQL... But you are right, we are unable to mod, del, and created account using phpESP. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-03-03 06:04 Message: Logged In: NO Same Problem! ---------------------------------------------------------------------- Comment By: blentz (blentz) Date: 2006-01-23 20:21 Message: Logged In: YES user_id=997838 I'm guessing you're both right; problem is that I have other PHP applications on the system that require register_globals. I've created a patch from the changes by R. Schroeder, can be applied to the phpESP source tree using: patch -p0 < phpESP-1.8.patch Tested, corrects this bug. Perhaps this patch could be incorporated into the next release, making the Administer Respondants and Administer Designers work on systems with register_globals? ---------------------------------------------------------------------- Comment By: Matthew Gregg (greggmc) Date: 2006-01-23 16:50 Message: Logged In: YES user_id=14116 I believe this bug is only present when register globals is on(an unsupported configuration). But I could be wrong. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-01-23 15:56 Message: Logged In: NO Check around line 180 in admdesigner.inc. My modifications are below to fix conflicting variable names. Similar fix applies to admrespondent. /* load ACL */ if(!empty($u) && !empty($r)) { $sql = "SELECT * FROM ".$GLOBALS['ESPCONFIG']['designer_table']." WHERE username=$u AND realm=$r"; $result = execute_sql($sql,"",ADODB_FETCH_ASSOC); if($arr = fetch_row($result)) { /* foreach(array( 'username', 'realm', 'fname', 'lname', 'email', 'pdesign', 'pstatus', 'pdata', 'pall', 'pgroup', 'puser', 'disabled', 'expiration') as $col) { $$col = $arr[$col]; } $u =& $username; $r =& $realm; */ // Ryan Schroeder - assign manually to avoid conflicting with $username $u = $arr['username']; $r = $arr['realm']; $fname = $arr['fname']; $lname = $arr['lname']; $email = $arr['email']; $pdesign = $arr['pdesign']; $pstatus = $arr['pstatus']; $pdata = $arr['pdata']; $pall = $arr['pall']; $pgroup = $arr['pgroup']; $puser = $arr['puser']; $disabled = $arr['disabled']; $expiration = $arr['expiration']; if(intval($expiration) > 0) { $ex_year = substr($expiration,0,4); $ex_month = substr($expiration,4,2); $ex_day = substr($expiration,6,2); } else { $ex_year = ''; $ex_month = ''; $ex_day = ''; } } else { $errstr .= mkerror(_('Account not found.') .' ('. ErrorMsg() .')'); } } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410940&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-16 18:41:43
|
Bugs item #1451543, was opened at 2006-03-16 10:41 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=1451543&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.8 Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Update / Del Designer Account Issue Initial Comment: Greetings All: 1st off, thanks to phpESP for making the app... Big help! However, having a little issue. 1: When I try to mod or del a designer account I get kicked out and back to the login page... And it will do this with every superuser account. I read that the globals should be set to "off"... My Question is, where do I set the globals to off if they are not already??? Is this on the server in a PHP script or on MYSQL or in the phpESP progie? And do you think that this is my issue at all? Thanx All. Az bc...@ti... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1451543&group_id=8956 |
From: Aaron A. <li...@fr...> - 2006-03-16 18:38:34
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have tested this on all mac and pc browsers, the problem only exists in the latest version of IE. I currently do not have the means to test on older versions of IE. This leads me to believe Microsoft patched something that is breaking this. - -- Aaron Axelsen li...@fr... Great hosting, low prices. Modevia Web Services LLC -- http://www.modevia.com Aaron Axelsen wrote: > Whenever I try to export survey data in IE, i get an error saying > Internet Explorer cannot download the file from the server. > > I am running version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 > > Does anyone else have this problem with the latest updates on > windows xp? If you do not have this problem, what version of IE > running? > > > ------------------------------------------------------- This SF.Net > email is sponsored by xPML, a groundbreaking scripting language > that extends applications into web and mobile media. Attend the > live webcast and join the prime developer group breaking into this > new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ phpESP-devel > mailing list php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-devel > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEGbCmuucONIvD0AMRAmojAKDWEzyJYf1hf/9l0OSuzJ9oUOxIMgCfaVUp rluYdGjzZLN1lGl+/C6iWzU= =U53I -----END PGP SIGNATURE----- |
From: Aaron A. <li...@fr...> - 2006-03-16 18:18:33
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Whenever I try to export survey data in IE, i get an error saying Internet Explorer cannot download the file from the server. I am running version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 Does anyone else have this problem with the latest updates on windows xp? If you do not have this problem, what version of IE running? - -- Aaron Axelsen li...@fr... Great hosting, low prices. Modevia Web Services LLC -- http://www.modevia.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEGavxuucONIvD0AMRAmapAKCQoLYGt40FV4rPAo7xv0ESrJNu+wCgrl1T DY16MnvlfXhWE1xciVWcVAo= =/AHT -----END PGP SIGNATURE----- |
From: Aaron A. <li...@fr...> - 2006-03-16 15:19:15
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I am currently 90% done or so coding an export function to produce an csv file in the proper format suitable for spss. Ill provide a patch against the cvs when completed. Just thought i'd alert the world of whats coming! - -- Aaron Axelsen li...@fr... Great hosting, low prices. Modevia Web Services LLC -- http://www.modevia.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEGYHvuucONIvD0AMRAi7iAKCZLR1SQuuS39ntbvquXX8INM7iEwCg4AlQ UXqGu4Rg1khourpHNx4kV5k= =AxZ6 -----END PGP SIGNATURE----- |
From: SourceForge.net <no...@so...> - 2006-03-14 15:20:59
|
Bugs item #1449653, was opened at 2006-03-14 07:20 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=1449653&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.8 Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: log in issues Initial Comment: I got the data base installed and the phpesp folder in the root of my web server. I am using the latest version of xampp. I tried to log in as root on the management page but it gives me this error not matter what I try. " Incorrect User ID or Password, or your account has been disabled/expired." I have even tried droping the user root out of the table and inserting root back in with useing the same sytax and values from the mysql_populate.sql script, and still get the same thing. I would spend hours looking through the code but I thought you might have a fix for this issue already. Michael LeJeune mjl...@gm... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1449653&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-08 21:15:09
|
Feature Requests item #1445933, was opened at 2006-03-08 13:15 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1445933&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: gui Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: add 'line break" tag to break long questions/text Initial Comment: be nice to have a "\n" feature (or newline feature) so that if you have a long introductory text or section header you can have a line break or two. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1445933&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-07 00:06:34
|
Bugs item #1444503, was opened at 2006-03-06 18:40 Message generated for change (Comment added) made by greggmc You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1444503&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: None Group: None >Status: Closed >Resolution: Works For Me Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Demo page Initial Comment: Demo page is malfuctioning. ---------------------------------------------------------------------- >Comment By: Matthew Gregg (greggmc) Date: 2006-03-06 19:06 Message: Logged In: YES user_id=14116 It appears to be working fine ATM. Could be a Sourceforge problem. If you can provide more information as to what is broken please reopen. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1444503&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-06 23:40:44
|
Bugs item #1444503, was opened at 2006-03-06 15:40 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=1444503&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: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Demo page Initial Comment: Demo page is malfuctioning. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1444503&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-05 19:47:25
|
Bugs item #1443663, was opened at 2006-03-05 11:47 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=1443663&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: Docs / FAQ Group: v1.8 Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: INSTALL does list locales as prereq Initial Comment: The INSTALL documentation should have locales-xx mentionned as a prerequisite if you want to use a language other than English or the default language available on the server. Suggested text "b. locales for languages of the surveys Gettext requires that the locales-xx package be installed for each language that you want to use. You need to be sure that locales are installed for each language. Under Linux you can list the locales already installed useing the command. locales -a If you do not have Gettext and the appropriate locales installed, all surveys will be in English. " from rwh...@ar... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1443663&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-03 14:04:26
|
Bugs item #1410940, was opened at 2006-01-20 08:56 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410940&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.8 Status: Open Resolution: None Priority: 5 Submitted By: blentz (blentz) Assigned to: Nobody/Anonymous (nobody) Summary: Accessing designer account admin logs you out Initial Comment: When logged in as a superuser with all ACL abilities, I try to go and modify an existing designer. I can get as far as the "Designers Account Administration" form, but if I click *anything* i.e. Update/Cancel/Delete buttons, Go back to Management Interface link, or even manually try and go to /admin/manage.php, I am booted out and am sent to the Management Login form with "Incorrect User ID or Password, or your account has been disabled/expired." This makes changing or deleting an existing designer impossible. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-03-03 06:04 Message: Logged In: NO Same Problem! ---------------------------------------------------------------------- Comment By: blentz (blentz) Date: 2006-01-23 20:21 Message: Logged In: YES user_id=997838 I'm guessing you're both right; problem is that I have other PHP applications on the system that require register_globals. I've created a patch from the changes by R. Schroeder, can be applied to the phpESP source tree using: patch -p0 < phpESP-1.8.patch Tested, corrects this bug. Perhaps this patch could be incorporated into the next release, making the Administer Respondants and Administer Designers work on systems with register_globals? ---------------------------------------------------------------------- Comment By: Matthew Gregg (greggmc) Date: 2006-01-23 16:50 Message: Logged In: YES user_id=14116 I believe this bug is only present when register globals is on(an unsupported configuration). But I could be wrong. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-01-23 15:56 Message: Logged In: NO Check around line 180 in admdesigner.inc. My modifications are below to fix conflicting variable names. Similar fix applies to admrespondent. /* load ACL */ if(!empty($u) && !empty($r)) { $sql = "SELECT * FROM ".$GLOBALS['ESPCONFIG']['designer_table']." WHERE username=$u AND realm=$r"; $result = execute_sql($sql,"",ADODB_FETCH_ASSOC); if($arr = fetch_row($result)) { /* foreach(array( 'username', 'realm', 'fname', 'lname', 'email', 'pdesign', 'pstatus', 'pdata', 'pall', 'pgroup', 'puser', 'disabled', 'expiration') as $col) { $$col = $arr[$col]; } $u =& $username; $r =& $realm; */ // Ryan Schroeder - assign manually to avoid conflicting with $username $u = $arr['username']; $r = $arr['realm']; $fname = $arr['fname']; $lname = $arr['lname']; $email = $arr['email']; $pdesign = $arr['pdesign']; $pstatus = $arr['pstatus']; $pdata = $arr['pdata']; $pall = $arr['pall']; $pgroup = $arr['pgroup']; $puser = $arr['puser']; $disabled = $arr['disabled']; $expiration = $arr['expiration']; if(intval($expiration) > 0) { $ex_year = substr($expiration,0,4); $ex_month = substr($expiration,4,2); $ex_day = substr($expiration,6,2); } else { $ex_year = ''; $ex_month = ''; $ex_day = ''; } } else { $errstr .= mkerror(_('Account not found.') .' ('. ErrorMsg() .')'); } } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410940&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-01 20:58:04
|
Feature Requests item #1441284, was opened at 2006-03-01 12:53 Message generated for change (Comment added) made by liontooth You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1441284&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: None Group: None Status: Open Priority: 5 Submitted By: David Liontooth (liontooth) Assigned to: Nobody/Anonymous (nobody) Summary: make sender e-mail configurable Initial Comment: The e-mail address used to send backup copies of responses to the survey designer is currently automatically generated. This leads to bounced mails in my case, as the user of phpESP (www-data) is not recognized by my smtp server. This should be a configurable item in phpESP.ini. Matt Gregg's workaround until this is implemented: Edit line 797 or so (in 1.6 it's 780) in admin/include/lib/espresponse.inc. Change: return(mail($email,$subject,$body,$headers)); to: return(mail($email,$subject,$body,$headers,'-f foo@com')); Replace em...@fo... with a valid "from" address. Tested and works. ---------------------------------------------------------------------- >Comment By: David Liontooth (liontooth) Date: 2006-03-01 12:58 Message: Logged In: YES user_id=897748 Sorry, that was supposed to read "(in 1.7-rc2 it's line 780)". I don't know about 1.6. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1441284&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-03-01 20:53:29
|
Feature Requests item #1441284, was opened at 2006-03-01 12:53 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1441284&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: None Group: None Status: Open Priority: 5 Submitted By: David Liontooth (liontooth) Assigned to: Nobody/Anonymous (nobody) Summary: make sender e-mail configurable Initial Comment: The e-mail address used to send backup copies of responses to the survey designer is currently automatically generated. This leads to bounced mails in my case, as the user of phpESP (www-data) is not recognized by my smtp server. This should be a configurable item in phpESP.ini. Matt Gregg's workaround until this is implemented: Edit line 797 or so (in 1.6 it's 780) in admin/include/lib/espresponse.inc. Change: return(mail($email,$subject,$body,$headers)); to: return(mail($email,$subject,$body,$headers,'-f foo@com')); Replace em...@fo... with a valid "from" address. Tested and works. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1441284&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-02-22 23:28:16
|
Bugs item #1432840, was opened at 2006-02-16 12:31 Message generated for change (Comment added) made by frisket You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1432840&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: User Group: v1.8 Status: Open Resolution: None Priority: 5 Submitted By: Peter Flynn (frisket) Assigned to: Nobody/Anonymous (nobody) Summary: Exported data is a null file Initial Comment: When I (as admin) pick an export for one user's survey (any of the three types), I get an empty file, both as download and as saved in /tmp. There is a pause while it does it, so it's presumably going through the motions, but there is no data in the output. The survey contains several hundred responses and is still Active. A different user with a different (smaller) survey apparently had no problem exporting her data. Are there settings which might prevent large volumes being exported? Platform: FC4 php-5.0.4-10.5 mysql-4.1.16-1.FC4.1 httpd-2.0.54-10.3 Version: 1.8 Browser: Firefox 1.5.0.1 ---------------------------------------------------------------------- >Comment By: Peter Flynn (frisket) Date: 2006-02-22 23:28 Message: Logged In: YES user_id=111901 Following comment on the mailing list, I can now reproduce this behaviour for any survey. The export function is thus currently non-functional, in that it always returns a zero-length file. My earlier information that at least one user had been able to export data was incorrect: no users have been able to export any data. I have played with the script time settings and the max memory settings in php.ini, taking max memory to 64Mb and script times to 120sec but this does not affect the bug. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-02-22 23:26 Message: Logged In: NO Following comment on the mailing list, I can now reproduce this behaviour for any survey. The export function is thus currently non-functional, in that it always returns a zero-length file. My earlier information that at least one user had been able to export data was incorrect: no users have been able to export any data. I have played with the script time settings and the max memory settings in php.ini, taking max memory to 64Mb and script times to 120sec but this does not affect the bug. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1432840&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-02-22 23:26:46
|
Bugs item #1432840, was opened at 2006-02-16 04:31 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1432840&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: User Group: v1.8 Status: Open Resolution: None Priority: 5 Submitted By: Peter Flynn (frisket) Assigned to: Nobody/Anonymous (nobody) Summary: Exported data is a null file Initial Comment: When I (as admin) pick an export for one user's survey (any of the three types), I get an empty file, both as download and as saved in /tmp. There is a pause while it does it, so it's presumably going through the motions, but there is no data in the output. The survey contains several hundred responses and is still Active. A different user with a different (smaller) survey apparently had no problem exporting her data. Are there settings which might prevent large volumes being exported? Platform: FC4 php-5.0.4-10.5 mysql-4.1.16-1.FC4.1 httpd-2.0.54-10.3 Version: 1.8 Browser: Firefox 1.5.0.1 ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2006-02-22 15:26 Message: Logged In: NO Following comment on the mailing list, I can now reproduce this behaviour for any survey. The export function is thus currently non-functional, in that it always returns a zero-length file. My earlier information that at least one user had been able to export data was incorrect: no users have been able to export any data. I have played with the script time settings and the max memory settings in php.ini, taking max memory to 64Mb and script times to 120sec but this does not affect the bug. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1432840&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-02-21 06:18:05
|
Bugs item #1410529, was opened at 2006-01-20 18:47 Message generated for change (Comment added) made by angek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410529&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.8 >Status: Closed Resolution: None Priority: 5 Submitted By: mbell (michaelabell) Assigned to: Nobody/Anonymous (nobody) Summary: crosstab error with yes/no question Initial Comment: hello, when i crosstabulate survey results (with 2 questions), everything works fine. but if one of these 2 questions is a yes/no question i get the following error: Notice: Undefined offset: 0 in C:\xampp\htdocs\phpESP\admin\include\where\crosstab.inc on line 276 Notice: Undefined offset: 2 in C:\xampp\htdocs\phpESP\admin\include\where\crosstab.inc on line 280 Notice: Undefined offset: 1 in C:\xampp\htdocs\phpESP\admin\include\where\crosstab.inc on line 276 Notice: Undefined offset: 3 in C:\xampp\htdocs\phpESP\admin\include\where\crosstab.inc on line 280 any ideas how to fix this? greets, michi ---------------------------------------------------------------------- >Comment By: Kon Angelopoulos (angek) Date: 2006-02-21 17:18 Message: Logged In: YES user_id=198398 fixed in CVS ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1410529&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-02-21 05:02:45
|
Feature Requests item #1433465, was opened at 2006-02-17 21:12 Message generated for change (Comment added) made by angek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1433465&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: gui Group: None Status: Open Priority: 5 Submitted By: William Strijks (dwstrijks) Assigned to: Nobody/Anonymous (nobody) Summary: Make it compa. with Joomla Initial Comment: Hi there, Make a component and a module for Joomla, The you will reach i think a large group of users who will intetgrate your system into their sites William ---------------------------------------------------------------------- >Comment By: Kon Angelopoulos (angek) Date: 2006-02-21 16:02 Message: Logged In: YES user_id=198398 Thanks for the feedback William. To convert phpESP so that it can be incorporated into Joomla (via modules, components, mambots)would be a mammoth task and would probably require a seperate project to be set up. At present you should be able to run phpESP using Joomla's wrapper functionality apart from that I don't believe we have plans for such integration. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1433465&group_id=8956 |
From: Aaron A. <li...@fr...> - 2006-02-17 14:37:33
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I've only ever used phpesp on linux systems. Maybe is something related to php 5.1 or mysql 5? I'm not sure how much testing has been done with phpesp on the newer versions. - -- Aaron Axelsen li...@fr... Great hosting, low prices. Modevia Web Services LLC -- http://www.modevia.com Steffen Beneker wrote: > Hello, > > Whe i Save a survey in the middle of filling it out, and then start > it from that point via the provided link, this error occurs. It is > possible to go on, complete and save the survey results, though its > not very pretty. > > Notice: Only variable references should be returned by reference in > > C:\Programme\xampp\htdocs\phpESP\admin\include\lib\adodb\adodb.inc.php > on line 859 > > As you see, i use xampp with php 5.1.1, mysql 5.0.18-nt, and phpESP > 1.8. > >> Best regards, >> >> Steffen Beneker >> > > > ------------------------------------------------------- This SF.net > email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that > makes searching your log files as easy as surfing the web. > DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ phpESP-devel > mailing list php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-devel > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFD9d+ouucONIvD0AMRAlNpAJ9hUxtx8yQZVuwLYqUyDU4b2jrWPACfbPgg x0SyiXeYmJsH2k8bkC46o6c= =Nz28 -----END PGP SIGNATURE----- |
From: SourceForge.net <no...@so...> - 2006-02-17 10:12:37
|
Feature Requests item #1433465, was opened at 2006-02-17 11:12 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1433465&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: gui Group: None Status: Open Priority: 5 Submitted By: William Strijks (dwstrijks) Assigned to: Nobody/Anonymous (nobody) Summary: Make it compa. with Joomla Initial Comment: Hi there, Make a component and a module for Joomla, The you will reach i think a large group of users who will intetgrate your system into their sites William ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1433465&group_id=8956 |
From: SourceForge.net <no...@so...> - 2006-02-16 12:31:22
|
Bugs item #1432840, was opened at 2006-02-16 12:31 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=1432840&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: User Group: v1.8 Status: Open Resolution: None Priority: 5 Submitted By: Peter Flynn (frisket) Assigned to: Nobody/Anonymous (nobody) Summary: Exported data is a null file Initial Comment: When I (as admin) pick an export for one user's survey (any of the three types), I get an empty file, both as download and as saved in /tmp. There is a pause while it does it, so it's presumably going through the motions, but there is no data in the output. The survey contains several hundred responses and is still Active. A different user with a different (smaller) survey apparently had no problem exporting her data. Are there settings which might prevent large volumes being exported? Platform: FC4 php-5.0.4-10.5 mysql-4.1.16-1.FC4.1 httpd-2.0.54-10.3 Version: 1.8 Browser: Firefox 1.5.0.1 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1432840&group_id=8956 |
From: Steffen B. <Ste...@Co...> - 2006-02-15 14:56:01
|
Hello, Whe i Save a survey in the middle of filling it out, and then start it from that point via the provided link, this error occurs. It is possible to go on, complete and save the survey results, though its not very pretty. Notice: Only variable references should be returned by reference in C:\Programme\xampp\htdocs\phpESP\admin\include\lib\adodb\adodb.inc.php on line 859 As you see, i use xampp with php 5.1.1, mysql 5.0.18-nt, and phpESP 1.8. > Best regards, > > Steffen Beneker > |
From: Steffen B. <Ste...@Co...> - 2006-02-15 11:17:44
|
Hi, the populate db error disappeared when I tailored the populating script and replaced every 'CURRENT_TIMESTAMP' with CURRENT_TIMESTAMP. I guess this is a mysql version problem. (using xammp with php 5.1.1 and mysql 5.0.18-nt, and phpESP 1.8) Also, the cannot login failure occured. (with forms, root/esp). I only have a workaroud for this. So I edited manage.php and commented out the "if (!manage_auth($username, $password, $raw_password))" part. Then I got the Admin Interface and added a superuser. I took back the changes and could login to the interface normally with the new user. That is very dirty because i have to do it with every new installation. I hope someone can explain me or better fix it. Maybe it has something to do with the use of mysql PASSWORD() function that is not intended for user tables and that is one way. As myswl documentation says, SH1() should be used for these cases. Best regards, Steffen |
From: Aaron A. <li...@fr...> - 2006-02-09 18:55:30
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I did some more testing, i created this simple php script: <?php $name = "test4"; header('Content-Transfer-Encoding: ascii'); header('Content-type: text/csv'); header("Content-Disposition: attachment; filename=$name.csv"); echo "this is a test"; ?> That properly works and exports the files from within IE. There has to be something within phpesp that is causing a problem since this appears to work in IE, but I haven't been able to figure anything out yet. Any suggestions on what else I can test and play with? Could the javascript submit process have anything to do with it? - -- Aaron Axelsen li...@fr... Great hosting, low prices. Modevia Web Services LLC -- http://www.modevia.com Matthew Gregg wrote: > Could it be one of the newer IE security "features" getting in the > way? > > > On 2/7/06, *Aaron Axelsen* <li...@fr... > <mailto:li...@fr...>> wrote: > > I had a user report to me this morning that they were unable to > export surveys in IE using version 1.8. I have confirmed this too. > A error window pops up that says "Internet Explorer was not able > to open this Internet site. The requested site is either > unavailable or cannot be found. Please try again later.". > > Has anyone else had this issue? Is this fixed in the cvs? > > -- Aaron Axelsen li...@fr... <mailto:li...@fr...> > > Great hosting, low prices. Modevia Web Services LLC -- > http://www.modevia.com > > ------------------------------------------------------- This SF.net > email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that > makes searching your log files as easy as surfing the web. > DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ phpESP-devel > mailing list php...@li... > <mailto:php...@li...> > https://lists.sourceforge.net/lists/listinfo/phpesp-devel > > > > >> -- D'oh! -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFD65ASuucONIvD0AMRArt0AKDWpcTDokLihRSThiVdK6CFYgfM0ACeJTFW ymXnuH8E4vrA+EH+5GMBtt8= =mWlv -----END PGP SIGNATURE----- |