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...> - 2007-11-27 11:44:24
|
Bugs item #1727902, was opened at 2007-05-29 22:38 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1727902&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: Closed >Resolution: Accepted Priority: 5 Private: No Submitted By: Miguel (miguel2) Assigned to: Nobody/Anonymous (nobody) Summary: No Logon when mysql > 4.1 (hash lenght problem) Initial Comment: Today i could not login to phpESP even if i created a new user via phpmyadmin. I didnt login since a year. in the meantime the hoster upgraded to mysql 5. I investigated a bit and found that the lenght of the password hash created by the mysql function PASSWORD() has changed from 16bit to 41bit. (http://dev.mysql.com/doc/refman/5.0/en/password-hashing.html) You have to change the lenght of the password field in table designer to 41 ALTER TABLE `designer` CHANGE `password` `password` CHAR( 64 ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 12:44 Message: Logged In: YES user_id=109671 Originator: NO Hi, I do consider this a phpesp issue as well, so I added these statements again to the next upgrade sql script, so everybody has the changes needed. Franky ---------------------------------------------------------------------- Comment By: Miguel (miguel2) Date: 2007-05-29 23:22 Message: Logged In: YES user_id=1346327 Originator: YES You are right. The sql statement in mysql_populate.sql is CREATE TABLE designer ( username CHAR(64) NOT NULL, password CHAR(64) NOT NULL, So the lenght is ok. Maybe you should put something in the faq like: I can't login anymore never mind which user I try. I always get the message "[ Incorrect User ID or Password, or your account has been disabled/expired. ]" ---------------------------------------------------------------------- Comment By: Matthew Gregg (greggmc) Date: 2007-05-29 22:54 Message: Logged In: YES user_id=14116 Originator: NO I guess this belongs in the documentation somewhere. Not really a bug with ESP. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1727902&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 11:28:23
|
Bugs item #1706923, was opened at 2007-04-24 22:41 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1706923&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: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: not returning reference in adodb.inc.php Initial Comment: Version 1.8.2 When returning to a saved survey I get about seven lines of the following "Notice" at the top of the page... Everything else works fine and when I go forward a page and back a page the message is no longer present. Notice: Only variable references should be returned by reference in /hsphere/local/home/login/domain.com/phpESP/admin/include/lib/adodb/adodb.inc.php on line 858 I tried replacing: return false; with: $x = false; return $x; But that didn't work... (too simple...) ti...@ho... ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 12:28 Message: Logged In: YES user_id=109671 Originator: NO Fixed in CVS ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1706923&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 11:28:00
|
Bugs item #1183335, was opened at 2005-04-14 23:15 Message generated for change (Settings changed) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1183335&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.6.1 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Totals in 'view report' aren't correct Initial Comment: Some fields types, like radio and dropdowns, show a line called 'TOTAL' when you view the results of an active survey. But the TOTAL is the same for all questions and represents the total number of people who took the survey, not the total number of people who answered the question. I think it would make more sense to have the total that appears under some question types be the total respondents and have the total number of survey takers appear elsewhere. Cindy cin...@do... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1183335&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 11:27:14
|
Bugs item #1545414, was opened at 2006-08-23 18:49 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1545414&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: v1.7 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: handler.php hardcoded button values Initial Comment: The buttons do not use the translations because they are hardcoded. i Think the problem could be solved with something like value="<?php echo(_('Previous Page')); ?>" /> ---- Also have a look at the button values in the preview.inc - they look a little bit strange ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 12:27 Message: Logged In: YES user_id=109671 Originator: NO fixed in CVS ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1545414&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 10:45:58
|
Bugs item #1575902, was opened at 2006-10-12 15:05 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1575902&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: Fixed Priority: 5 Private: No Submitted By: David Weingart (dweingart) Assigned to: Nobody/Anonymous (nobody) Summary: Ranks still off by one in emailed results Initial Comment: This bug was closed: http://sourceforge.net/tracker/index.php?func=detail&aid=1195484&group_id=8956&atid=108956 but I'm still experiencing the problem in version 1.8.2. Pretty sure the error is on line 546 of espresponse.inc (function response_select_human). -dave ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 11:46 Message: Logged In: YES user_id=109671 Originator: NO fixed in latest version ---------------------------------------------------------------------- Comment By: Franky Van Liedekerke (liedekef) Date: 2006-12-07 13:34 Message: Logged In: YES user_id=109671 Originator: NO fixed in the version I maintain on my website, see http://www.e-dynamics.be/index.php?section=programs&lang=en Franky ---------------------------------------------------------------------- Comment By: Fredrik Johansson (johfrd) Date: 2006-12-05 15:51 Message: Logged In: YES user_id=1661330 Originator: NO I added align right to row 205 in esphtml.results.inc and now the Average rank bars in Survey Results is correct. echo( "<td align=\"right\" width=\"$width\">". ++$i ."</td>\n"); /Fredrik ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1575902&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 10:45:34
|
Bugs item #1534118, was opened at 2006-08-03 22:36 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1534118&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: Fixed Priority: 5 Private: No Submitted By: swy (saiwing) Assigned to: Nobody/Anonymous (nobody) Summary: Numeric questions accept alphabet Initial Comment: Numeric questions accept alphabet, doesn't give you an error, just won't save them. Repro 1) create question with numeric types 2) enter "G123", submit 3) page submitted without any error message 4) when you look at the report, you get only "123" ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 11:45 Message: Logged In: YES user_id=109671 Originator: NO fixed in latest version, but anyway: what do you expect when entering letters in a numeric question type? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1534118&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 10:44:27
|
Bugs item #1584918, was opened at 2006-10-26 09:57 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1584918&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: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: problem to keep session Initial Comment: i have a problem with authentification. When i start phpESP i have to log. Then i have the administration page but after when i pick one section it asks again to log. If i log again i arrive to the section that i picked. ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 11:44 Message: Logged In: YES user_id=109671 Originator: NO fixed in latest version ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1584918&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 10:43:58
|
Bugs item #1573257, was opened at 2006-10-08 19:40 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1573257&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: Fixed Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Call-time pass-by-reference has been deprecated Initial Comment: On Survey Design Page, running PHP 5, getting this warning: Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of intval(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer./phpesp/admin/include/where/tab.inc on line 37 gare at calhounfarms.com ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 11:44 Message: Logged In: YES user_id=109671 Originator: NO fixed in latest version ---------------------------------------------------------------------- Comment By: Christopher Kolar (ckolar) Date: 2006-11-06 23:49 Message: Logged In: YES user_id=40678 Just want to report this as well, on DreamHost running php 5.x Message only happens when editing, testing and running surveys seems to work just fine. Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of intval(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/XXXXX/survey.XXXXX.net/admin/include/where/tab.inc on line 37 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1573257&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 10:43:28
|
Bugs item #1575965, was opened at 2006-10-12 16:53 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1575965&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: Fixed Priority: 5 Private: No Submitted By: tim (temler) Assigned to: Nobody/Anonymous (nobody) Summary: email count off by 1 Initial Comment: I am using phpesp 1.8.2 On the email response the count is off by one. On the email the count is one higher. Can you tell me how to fix that? ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 11:43 Message: Logged In: YES user_id=109671 Originator: NO Fixed in latest version ---------------------------------------------------------------------- Comment By: Franky Van Liedekerke (liedekef) Date: 2006-11-20 13:30 Message: Logged In: YES user_id=109671 Originator: NO See my patch at http://sourceforge.net/tracker/index.php?func=detail&aid=1598273&group_id=8956&atid=308956 It contains a fix for this that should solve it. Franky ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1575965&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 10:43:06
|
Bugs item #1659995, was opened at 2007-02-14 20:18 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1659995&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: Fixed Priority: 5 Private: No Submitted By: Walt Daniels (yktdan) Assigned to: Nobody/Anonymous (nobody) Summary: Use of PHP deprecated feature Initial Comment: Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of intval(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/.makadisa/nynjtc/survey.nynjtc.org/phpESP/admin/include/where/tab.inc on line 37 PHP Version: 5.1.2 phpESP 1.8.2 ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 11:43 Message: Logged In: YES user_id=109671 Originator: NO fixed in latest version ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1659995&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-11-27 10:42:39
|
Bugs item #1777825, was opened at 2007-08-20 21:04 Message generated for change (Comment added) made by liedekef You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1777825&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: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Sam Karpluk (samkarpluk) Assigned to: Nobody/Anonymous (nobody) Summary: rating result via email Initial Comment: I have set up a survey with a bunch of rating questions. I am using the default 1-5 rating scale. In the results email that we receive when the survey is submitted, the ratings are all incremented by 1, i.e. a 5 is received as a 6. ---------------------------------------------------------------------- >Comment By: Franky Van Liedekerke (liedekef) Date: 2007-11-27 11:42 Message: Logged In: YES user_id=109671 Originator: NO Fixed in latest version ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1777825&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-09-20 13:27:24
|
Bugs item #1798592, was opened at 2007-09-20 03:03 Message generated for change (Comment added) made by axelseaa You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1798592&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 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: HTTP 503 Service Unavailable Initial Comment: [ Unable to load ACL. (Table 'phpesp.designer' doesn't exist) ]. pls help I just installed this on XP prof with latest version of xampp,php 5, mysql ---------------------------------------------------------------------- Comment By: Aaron Axelsen (axelseaa) Date: 2007-09-20 08:27 Message: Logged In: YES user_id=704595 Originator: NO This is not a bug. It sounds like you did not populate your mysql database with the correct tables. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1798592&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-09-20 08:03:04
|
Bugs item #1798592, was opened at 2007-09-20 01:03 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=1798592&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 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: HTTP 503 Service Unavailable Initial Comment: [ Unable to load ACL. (Table 'phpesp.designer' doesn't exist) ]. pls help I just installed this on XP prof with latest version of xampp,php 5, mysql ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1798592&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-08-23 12:45:27
|
Patches item #1780161, was opened at 2007-08-23 14:45 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308956&aid=1780161&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 Private: No Submitted By: Christopher Oezbek (coezbek) Assigned to: Nobody/Anonymous (nobody) Summary: Link to "Edit" and "Test" from "Survey Status"-page Initial Comment: Put the following code at line 215 of status.inc (admin/include/where/) to get links while in Editing and Testing mode directly to the edit page and the standalone test of the survey. This is very helpful if you do optical touchup in the end, because you don't need to go over the main menu. Cheers, Christopher if ($stat == 'Active') {?> <td><a href="<?php echo($ESPCONFIG['autopub_url']."?name=".$name); ?>"><?php echo($name) ?></a></td> <?php } elseif ($stat == 'Testing') {?> <td><a href="<?php echo($ESPCONFIG['autopub_url']."?name=".$name."&test=1"); ?>"><?php echo($name) ?></a></td> <?php } elseif ($stat == 'Editing') { $editUrl = "<a href=\"". $GLOBALS['ESPCONFIG']['ME'] .htmlentities("?where=tab&newid=${sid}")."\">" . $name . "</a>"; ?> <td><?php echo($editUrl) ?></td> <?php } else { ?> <td><?php echo($name); ?></td> <?php } ?> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=308956&aid=1780161&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-08-20 19:04:50
|
Bugs item #1777825, was opened at 2007-08-20 12:04 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=1777825&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 Private: No Submitted By: Sam Karpluk (samkarpluk) Assigned to: Nobody/Anonymous (nobody) Summary: rating result via email Initial Comment: I have set up a survey with a bunch of rating questions. I am using the default 1-5 rating scale. In the results email that we receive when the survey is submitted, the ratings are all incremented by 1, i.e. a 5 is received as a 6. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1777825&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-05-29 21:22:54
|
Bugs item #1727902, was opened at 2007-05-29 22:38 Message generated for change (Comment added) made by miguel2 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1727902&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 Private: No Submitted By: Miguel (miguel2) Assigned to: Nobody/Anonymous (nobody) Summary: No Logon when mysql > 4.1 (hash lenght problem) Initial Comment: Today i could not login to phpESP even if i created a new user via phpmyadmin. I didnt login since a year. in the meantime the hoster upgraded to mysql 5. I investigated a bit and found that the lenght of the password hash created by the mysql function PASSWORD() has changed from 16bit to 41bit. (http://dev.mysql.com/doc/refman/5.0/en/password-hashing.html) You have to change the lenght of the password field in table designer to 41 ALTER TABLE `designer` CHANGE `password` `password` CHAR( 64 ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL ---------------------------------------------------------------------- >Comment By: Miguel (miguel2) Date: 2007-05-29 23:22 Message: Logged In: YES user_id=1346327 Originator: YES You are right. The sql statement in mysql_populate.sql is CREATE TABLE designer ( username CHAR(64) NOT NULL, password CHAR(64) NOT NULL, So the lenght is ok. Maybe you should put something in the faq like: I can't login anymore never mind which user I try. I always get the message "[ Incorrect User ID or Password, or your account has been disabled/expired. ]" ---------------------------------------------------------------------- Comment By: Matthew Gregg (greggmc) Date: 2007-05-29 22:54 Message: Logged In: YES user_id=14116 Originator: NO I guess this belongs in the documentation somewhere. Not really a bug with ESP. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1727902&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-05-29 20:54:12
|
Bugs item #1727902, was opened at 2007-05-29 15:38 Message generated for change (Comment added) made by greggmc You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1727902&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: SQL Group: v1.8 Status: Open >Resolution: Wont Fix Priority: 5 Private: No Submitted By: Miguel (miguel2) Assigned to: Nobody/Anonymous (nobody) Summary: No Logon when mysql > 4.1 (hash lenght problem) Initial Comment: Today i could not login to phpESP even if i created a new user via phpmyadmin. I didnt login since a year. in the meantime the hoster upgraded to mysql 5. I investigated a bit and found that the lenght of the password hash created by the mysql function PASSWORD() has changed from 16bit to 41bit. (http://dev.mysql.com/doc/refman/5.0/en/password-hashing.html) You have to change the lenght of the password field in table designer to 41 ALTER TABLE `designer` CHANGE `password` `password` CHAR( 64 ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL ---------------------------------------------------------------------- >Comment By: Matthew Gregg (greggmc) Date: 2007-05-29 15:54 Message: Logged In: YES user_id=14116 Originator: NO I guess this belongs in the documentation somewhere. Not really a bug with ESP. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1727902&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-05-29 20:38:10
|
Bugs item #1727902, was opened at 2007-05-29 22:38 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=1727902&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: SQL Group: v1.8 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Miguel (miguel2) Assigned to: Nobody/Anonymous (nobody) Summary: No Logon when mysql > 4.1 (hash lenght problem) Initial Comment: Today i could not login to phpESP even if i created a new user via phpmyadmin. I didnt login since a year. in the meantime the hoster upgraded to mysql 5. I investigated a bit and found that the lenght of the password hash created by the mysql function PASSWORD() has changed from 16bit to 41bit. (http://dev.mysql.com/doc/refman/5.0/en/password-hashing.html) You have to change the lenght of the password field in table designer to 41 ALTER TABLE `designer` CHANGE `password` `password` CHAR( 64 ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1727902&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-05-07 13:37:52
|
Feature Requests item #1164757, was opened at 2005-03-16 12:09 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1164757&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 Private: No Submitted By: Paolo Brocco (pbworks) Assigned to: Kon Angelopoulos (angek) Summary: activate - deactivate - reactivate Initial Comment: it should be possible to activate a survey, deactivate it, eventually edit it, and reactivate it again. now it's only possible to actrivate it, end it, no way to reactivate it. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2007-05-07 06:37 Message: Logged In: NO Wih some little modification, thats possible. ---------------------------------------------------------------------- Comment By: Kon Angelopoulos (angek) Date: 2005-07-12 17:12 Message: Logged In: YES user_id=198398 Cool I'll code it. ---------------------------------------------------------------------- Comment By: Matthew Gregg (greggmc) Date: 2005-07-12 16:11 Message: Logged In: YES user_id=14116 Sounds resonable. ---------------------------------------------------------------------- Comment By: Kon Angelopoulos (angek) Date: 2005-07-12 15:58 Message: Logged In: YES user_id=198398 What if we offered the ability to re-edit an active survey as long as there are NO responses for the survey? This should ensure db and results integrity as well as solve pbworks dilema. Your thoughts please. ---------------------------------------------------------------------- Comment By: Paolo Brocco (pbworks) Date: 2005-05-25 10:43 Message: Logged In: YES user_id=892227 Well at least it should be possible to edit the question text. I don't mean to you add new answers. It should be possible to correct typos that you did in writing the question... In example you write "What is your fist name". ...you activate the survey and then you realize that "fist" should be "first". Yes with phpmyadmin you can enter and manually edit it, but it's not user friendly at all... you see what i mean... ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2005-05-25 10:23 Message: Logged In: NO I agree with the deactivating and reactivating, but once surveys are deployed they should not ever be editable again. Changes to the survey structure at the least give you inaccurate, untrackable results, and at the worst create database ambiguities that are numerous and difficult to handle in a general fashion. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=358956&aid=1164757&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-04-24 20:41:28
|
Bugs item #1706923, was opened at 2007-04-24 13: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=1706923&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 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: not returning reference in adodb.inc.php Initial Comment: Version 1.8.2 When returning to a saved survey I get about seven lines of the following "Notice" at the top of the page... Everything else works fine and when I go forward a page and back a page the message is no longer present. Notice: Only variable references should be returned by reference in /hsphere/local/home/login/domain.com/phpESP/admin/include/lib/adodb/adodb.inc.php on line 858 I tried replacing: return false; with: $x = false; return $x; But that didn't work... (too simple...) ti...@ho... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1706923&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-04-17 10:13:06
|
Bugs item #1702039, was opened at 2007-04-17 01:40 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1702039&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 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Add an additional answer lne / css Initial Comment: Hi all I'm a beginner with phpesp and have some problems to create a survey. First I cannot add a new answer line for example in a dropdown box. No em. Only error on site from IE Second when I test the survey I made the layout is evertime the same so the css does not function either What I'm doing wrong?Are there some things I have to ckeck? Hope I got help or a solution asap cause it's urgent. Many thanks Alex ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2007-04-17 03:13 Message: Logged In: NO You can closed the ticket...it's working now :) grEEz Alex ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1702039&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-04-17 08:40:37
|
Bugs item #1702039, was opened at 2007-04-17 01: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=1702039&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 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Add an additional answer lne / css Initial Comment: Hi all I'm a beginner with phpesp and have some problems to create a survey. First I cannot add a new answer line for example in a dropdown box. No em. Only error on site from IE Second when I test the survey I made the layout is evertime the same so the css does not function either What I'm doing wrong?Are there some things I have to ckeck? Hope I got help or a solution asap cause it's urgent. Many thanks Alex ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1702039&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-03-23 15:34:58
|
Bugs item #1686626, was opened at 2007-03-23 05:40 Message generated for change (Comment added) made by greggmc You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1686626&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: Closed >Resolution: Invalid Priority: 5 Private: No Submitted By: David Liontooth (liontooth) Assigned to: Nobody/Anonymous (nobody) Summary: Next/Previous page in Preview fails Initial Comment: In preview mode, if you have a multi-page survey, you can use the numbered buttons at the top of the page to access the different pages. The Next page and Previous page buttons don't work. v. 1.8.2 running on Debian sid. ---------------------------------------------------------------------- >Comment By: Matthew Gregg (greggmc) Date: 2007-03-23 10:34 Message: Logged In: YES user_id=14116 Originator: NO The are not supposed to work in the preview. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1686626&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-03-23 10:40:41
|
Bugs item #1686626, was opened at 2007-03-23 03:40 Message generated for change (Settings changed) made by liontooth You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1686626&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 Private: No Submitted By: David Liontooth (liontooth) Assigned to: Nobody/Anonymous (nobody) >Summary: Next/Previous page in Preview fails Initial Comment: In preview mode, if you have a multi-page survey, you can use the numbered buttons at the top of the page to access the different pages. The Next page and Previous page buttons don't work. v. 1.8.2 running on Debian sid. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1686626&group_id=8956 |
From: SourceForge.net <no...@so...> - 2007-03-23 10:40:17
|
Bugs item #1686626, was opened at 2007-03-23 03: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=1686626&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 Private: No Submitted By: David Liontooth (liontooth) Assigned to: Nobody/Anonymous (nobody) Summary: Next/Previsous page in Preview fails Initial Comment: In preview mode, if you have a multi-page survey, you can use the numbered buttons at the top of the page to access the different pages. The Next page and Previous page buttons don't work. v. 1.8.2 running on Debian sid. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1686626&group_id=8956 |