From: <no...@so...> - 2002-10-17 12:52:40
|
Bugs item #624630, was opened at 2002-10-17 12:52 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 Category: SQL Group: cvs Status: Open Resolution: None Priority: 5 Submitted By: Martin Laarz (mlaarz) Assigned to: Nobody/Anonymous (nobody) Summary: Bug within survey_export_csv.inc (1.8) Initial Comment: Hi, in the Release 1.5RC2 from the CVS (16.10.2002) i found bug within the export function. The File survey_export_csv.inc (1.8) has been fixed for the new-line problem and something else. Exporting the Data of unfilled Fileds to CSV will duplicate the last valid entry with in a line until the next field entry will be exported. The CSV looks like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin","Berlin","Berlin",, "Nachname2","Vorname2","Karlsruhe","Ja","Ja",, "Nachname3","Vorname3","Kassel","Kassel","2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken","Saarbrücken", "Saarbrücken",,"Niemanden" But it should look like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin",,,, "Nachname2","Vorname2","Karlsruhe","Ja",,, "Nachname3","Vorname3","Kassel",,"2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken",,,,"Niemanden" It looks like that a var won't be deleted within a loop and copies the value until the loop will find the next entry within da dataset of a response id. Regards Martin ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 |
From: <no...@so...> - 2002-10-18 00:08:17
|
Bugs item #624630, was opened at 2002-10-17 07:52 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 Category: SQL Group: cvs Status: Open Resolution: None Priority: 5 Submitted By: Martin Laarz (mlaarz) Assigned to: Nobody/Anonymous (nobody) Summary: Bug within survey_export_csv.inc (1.8) Initial Comment: Hi, in the Release 1.5RC2 from the CVS (16.10.2002) i found bug within the export function. The File survey_export_csv.inc (1.8) has been fixed for the new-line problem and something else. Exporting the Data of unfilled Fileds to CSV will duplicate the last valid entry with in a line until the next field entry will be exported. The CSV looks like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin","Berlin","Berlin",, "Nachname2","Vorname2","Karlsruhe","Ja","Ja",, "Nachname3","Vorname3","Kassel","Kassel","2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken","Saarbrücken", "Saarbrücken",,"Niemanden" But it should look like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin",,,, "Nachname2","Vorname2","Karlsruhe","Ja",,, "Nachname3","Vorname3","Kassel",,"2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken",,,,"Niemanden" It looks like that a var won't be deleted within a loop and copies the value until the loop will find the next entry within da dataset of a response id. Regards Martin ---------------------------------------------------------------------- >Comment By: James Flemer (jimmerman) Date: 2002-10-17 19:08 Message: Logged In: YES user_id=39444 I cannot seem to reproduce this problem. Try to reproduce it on the demo site[1]. Post the survey ID of the survey you created so I can see what field types you are using. Also grab this[2] script, put it on your web server (as a .php), and post it's output. [1] http://phpesp.sf.net/demo/ [2] http://phpesp.sf.net/files/status.php.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 |
From: <no...@so...> - 2002-10-18 07:57:32
|
Bugs item #624630, was opened at 2002-10-17 12:52 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 Category: SQL Group: cvs Status: Open Resolution: None Priority: 5 Submitted By: Martin Laarz (mlaarz) >Assigned to: James Flemer (jimmerman) Summary: Bug within survey_export_csv.inc (1.8) Initial Comment: Hi, in the Release 1.5RC2 from the CVS (16.10.2002) i found bug within the export function. The File survey_export_csv.inc (1.8) has been fixed for the new-line problem and something else. Exporting the Data of unfilled Fileds to CSV will duplicate the last valid entry with in a line until the next field entry will be exported. The CSV looks like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin","Berlin","Berlin",, "Nachname2","Vorname2","Karlsruhe","Ja","Ja",, "Nachname3","Vorname3","Kassel","Kassel","2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken","Saarbrücken", "Saarbrücken",,"Niemanden" But it should look like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin",,,, "Nachname2","Vorname2","Karlsruhe","Ja",,, "Nachname3","Vorname3","Kassel",,"2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken",,,,"Niemanden" It looks like that a var won't be deleted within a loop and copies the value until the loop will find the next entry within da dataset of a response id. Regards Martin ---------------------------------------------------------------------- >Comment By: Martin Laarz (mlaarz) Date: 2002-10-18 07:57 Message: Logged In: YES user_id=630920 Hmmm, it did not happen within the Demo environment. The status.php reports: php version: 4.1.2 cwd: /home/WM_HOME register_globals: on magic_quotes_gpc: off magic_quotes_runtime: off safe_mode: off open_basedir: mysql: loaded gettext: loaded browser languages: de I'll now compare again the current running Versions on Disk against the fresh checked out CVS-Files. Thanks Martin ---------------------------------------------------------------------- Comment By: James Flemer (jimmerman) Date: 2002-10-18 00:08 Message: Logged In: YES user_id=39444 I cannot seem to reproduce this problem. Try to reproduce it on the demo site[1]. Post the survey ID of the survey you created so I can see what field types you are using. Also grab this[2] script, put it on your web server (as a .php), and post it's output. [1] http://phpesp.sf.net/demo/ [2] http://phpesp.sf.net/files/status.php.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 |
From: <no...@so...> - 2002-10-27 14:21:14
|
Bugs item #624630, was opened at 2002-10-17 07:52 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 Category: SQL Group: cvs >Status: Closed >Resolution: Works For Me Priority: 5 Submitted By: Martin Laarz (mlaarz) Assigned to: James Flemer (jimmerman) Summary: Bug within survey_export_csv.inc (1.8) Initial Comment: Hi, in the Release 1.5RC2 from the CVS (16.10.2002) i found bug within the export function. The File survey_export_csv.inc (1.8) has been fixed for the new-line problem and something else. Exporting the Data of unfilled Fileds to CSV will duplicate the last valid entry with in a line until the next field entry will be exported. The CSV looks like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin","Berlin","Berlin",, "Nachname2","Vorname2","Karlsruhe","Ja","Ja",, "Nachname3","Vorname3","Kassel","Kassel","2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken","Saarbrücken", "Saarbrücken",,"Niemanden" But it should look like: NACHNAME,VORNAME,STANDORT,BUS,UHRZEIT,UN TERKUNFT,ZIMMMERGEN "Nachname","Vorname","Berlin",,,, "Nachname2","Vorname2","Karlsruhe","Ja",,, "Nachname3","Vorname3","Kassel",,"2.00 Uhr","Doppelzimmer", "Nachname4","Vorname4","Saarbrücken",,,,"Niemanden" It looks like that a var won't be deleted within a loop and copies the value until the loop will find the next entry within da dataset of a response id. Regards Martin ---------------------------------------------------------------------- >Comment By: James Flemer (jimmerman) Date: 2002-10-27 09:21 Message: Logged In: YES user_id=39444 I am closing this for the moment, since it cannot be reproduced. If this bug continues to occur in the upcoming 1.5 release I will reopen it. ---------------------------------------------------------------------- Comment By: Martin Laarz (mlaarz) Date: 2002-10-18 02:57 Message: Logged In: YES user_id=630920 Hmmm, it did not happen within the Demo environment. The status.php reports: php version: 4.1.2 cwd: /home/WM_HOME register_globals: on magic_quotes_gpc: off magic_quotes_runtime: off safe_mode: off open_basedir: mysql: loaded gettext: loaded browser languages: de I'll now compare again the current running Versions on Disk against the fresh checked out CVS-Files. Thanks Martin ---------------------------------------------------------------------- Comment By: James Flemer (jimmerman) Date: 2002-10-17 19:08 Message: Logged In: YES user_id=39444 I cannot seem to reproduce this problem. Try to reproduce it on the demo site[1]. Post the survey ID of the survey you created so I can see what field types you are using. Also grab this[2] script, put it on your web server (as a .php), and post it's output. [1] http://phpesp.sf.net/demo/ [2] http://phpesp.sf.net/files/status.php.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=624630&group_id=8956 |