You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(13) |
Dec
(16) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(46) |
Feb
(68) |
Mar
(90) |
Apr
(38) |
May
(35) |
Jun
(36) |
Jul
(32) |
Aug
(35) |
Sep
(36) |
Oct
(49) |
Nov
(64) |
Dec
(31) |
2003 |
Jan
(70) |
Feb
(35) |
Mar
(74) |
Apr
(50) |
May
(26) |
Jun
(24) |
Jul
(26) |
Aug
(45) |
Sep
(18) |
Oct
(21) |
Nov
(33) |
Dec
(13) |
2004 |
Jan
(40) |
Feb
(53) |
Mar
(48) |
Apr
(51) |
May
(39) |
Jun
(9) |
Jul
(11) |
Aug
(30) |
Sep
(30) |
Oct
(12) |
Nov
(8) |
Dec
(12) |
2005 |
Jan
(37) |
Feb
(43) |
Mar
(57) |
Apr
(33) |
May
(23) |
Jun
(26) |
Jul
(43) |
Aug
(27) |
Sep
(39) |
Oct
(17) |
Nov
(27) |
Dec
(5) |
2006 |
Jan
(7) |
Feb
(35) |
Mar
(32) |
Apr
(39) |
May
(5) |
Jun
(4) |
Jul
(3) |
Aug
(6) |
Sep
(3) |
Oct
(17) |
Nov
(9) |
Dec
(10) |
2007 |
Jan
(2) |
Feb
(8) |
Mar
(14) |
Apr
(5) |
May
(2) |
Jun
(17) |
Jul
(13) |
Aug
(8) |
Sep
(3) |
Oct
(1) |
Nov
(40) |
Dec
(25) |
2008 |
Jan
(15) |
Feb
(13) |
Mar
(21) |
Apr
(44) |
May
(17) |
Jun
(26) |
Jul
(3) |
Aug
(10) |
Sep
|
Oct
(2) |
Nov
(6) |
Dec
|
2009 |
Jan
(14) |
Feb
(21) |
Mar
(9) |
Apr
(11) |
May
(4) |
Jun
|
Jul
(3) |
Aug
(9) |
Sep
(1) |
Oct
(4) |
Nov
(11) |
Dec
(6) |
2010 |
Jan
(8) |
Feb
|
Mar
(8) |
Apr
(1) |
May
|
Jun
(8) |
Jul
|
Aug
(4) |
Sep
(5) |
Oct
(4) |
Nov
|
Dec
|
2011 |
Jan
(2) |
Feb
(1) |
Mar
(1) |
Apr
(2) |
May
|
Jun
(3) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
(2) |
Dec
(2) |
2013 |
Jan
(1) |
Feb
|
Mar
(15) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(13) |
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Unix N. <uni...@ea...> - 2002-04-19 16:25:51
|
I'll check that out. It sounds perfect! James, your awesome!!! Terry. On Fri, 2002-04-19 at 07:37, James E. Flemer wrote: > Well I assume by "manually put in the link to it" you mean > to simply include the css link in the <head> of the > template file (where you put the <?php $sid.... ?> code). > That is the recommended way to do it. phpESP cannot really > insert code for the style sheet itself because that needs > to go in the <head>... > > If you upgrade to the cvs version (development version) > there is a new feature called an "auto-template" > contributed by a user (greggmc) which would make it so that > your users wouldn't have to touch any HTML, and you could > specify the CSS file for them. That would only allow one > CSS file for all surveys though, unless you changed the > autotemplate to do something clever. > > Go to <http://sf.net/cvs/?group_id=8956> for instructions > on obtaining the cvs version. The module name is "phpESP". > > -James > > On 16 Apr 2002, Unix Newbie wrote: > > > Hello again, > > > > Another question! Is it possible to make it where the survey follows > > the rules of a particular css sheet (as it does in the preview payne > > once you define it) when in an html document, with out the users having > > to manually put in the link to it? > > > > My users are complaining that this is a bit too complicated for them, > > and as I have been playing around with it, I have not found a way to do > > it. Thank soo much for all the help! > > > > Terry.7 > > > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general |
From: James E. F. <jf...@ac...> - 2002-04-19 15:29:19
|
Nope not at all, authentication is not needed. If you take a look at the handler code, it checks the local variable "$results" and if it is set to true it show results rather than the survey. However, it makes sure that $HTTP_(GET|POST)_VARS['results'] are not set, so that arbitrary web users cannot see the information (by setting results in the URL). For private surveys, the handler requires authentication, so therefor the results of private surveys require authentication too. The 'test.php' script I have on the sf.net servers basically bypasses the check of GET vars, so that I can put "results=1" on the URL (as I did below) without getting "security violation" errors. So for example if you have this: <?php $sid=42; include('.../handler.php'); ?> try this in another page: <?php $sid=42; $results=1; include('.../handler.php'); ?> Hope that helps. Take it easy, -James On Thu, 18 Apr 2002, Cédric Levasseur wrote: > James E. Flemer wrote: > > I have posted a survey to get some feedback on the policy > > used for the "return" link on completed surveys. If you > > have an opinion please take 5 seconds to submit a response > > (only two questions). > > > > Vote: > > http://phpesp.sf.net/demo/test.php?sid=2944&userid=general > > Results: > > http://phpesp.sf.net/demo/test.php?sid=2944&results=1 > > Please let me know how do you make public results on a survey like this. > Shouldn't repondents need to authenticate into administration to show > these results? > > Thanks > Cédric |
From: James E. F. <jf...@ac...> - 2002-04-19 14:37:51
|
Well I assume by "manually put in the link to it" you mean to simply include the css link in the <head> of the template file (where you put the <?php $sid.... ?> code). That is the recommended way to do it. phpESP cannot really insert code for the style sheet itself because that needs to go in the <head>... If you upgrade to the cvs version (development version) there is a new feature called an "auto-template" contributed by a user (greggmc) which would make it so that your users wouldn't have to touch any HTML, and you could specify the CSS file for them. That would only allow one CSS file for all surveys though, unless you changed the autotemplate to do something clever. Go to <http://sf.net/cvs/?group_id=8956> for instructions on obtaining the cvs version. The module name is "phpESP". -James On 16 Apr 2002, Unix Newbie wrote: > Hello again, > > Another question! Is it possible to make it where the survey follows > the rules of a particular css sheet (as it does in the preview payne > once you define it) when in an html document, with out the users having > to manually put in the link to it? > > My users are complaining that this is a bit too complicated for them, > and as I have been playing around with it, I have not found a way to do > it. Thank soo much for all the help! > > Terry.7 |
From: Unix N. <uni...@ea...> - 2002-04-19 05:28:29
|
Hello again, Another question! Is it possible to make it where the survey follows the rules of a particular css sheet (as it does in the preview payne once you define it) when in an html document, with out the users having to manually put in the link to it? My users are complaining that this is a bit too complicated for them, and as I have been playing around with it, I have not found a way to do it. Thank soo much for all the help! Terry.7 |
From: <ce...@le...> - 2002-04-18 09:24:59
|
James E. Flemer wrote: > I have posted a survey to get some feedback on the policy > used for the "return" link on completed surveys. If you > have an opinion please take 5 seconds to submit a response > (only two questions). >=20 > Vote: > http://phpesp.sf.net/demo/test.php?sid=3D2944&userid=3Dgeneral > Results: > http://phpesp.sf.net/demo/test.php?sid=3D2944&results=3D1 Please let me know how do you make public results on a survey like this. Shouldn't repondents need to authenticate into administration to show=20 these results? Thanks C=E9dric |
From: James E. F. <jf...@ac...> - 2002-04-17 17:35:16
|
They are keyed on the response.id column. Each response_*.response_id corresponds to a single entry in the response table. -James On Wed, 17 Apr 2002, me@shaw wrote: > Hi > Is there an ID to identify the individual respondant so I can recreate the > surveys and print a hard copy of each completed survey. I can currently > display questions and their associated responses but can't seem to link them > to any individual respondant. > many thanx > > > > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > |
From: <me...@sh...> - 2002-04-17 16:38:01
|
Hi Is there an ID to identify the individual respondant so I can recreate the surveys and print a hard copy of each completed survey. I can currently display questions and their associated responses but can't seem to link them to any individual respondant. many thanx |
From: James E. F. <jf...@ac...> - 2002-04-16 16:59:30
|
I have posted a survey to get some feedback on the policy used for the "return" link on completed surveys. If you have an opinion please take 5 seconds to submit a response (only two questions). Vote: http://phpesp.sf.net/demo/test.php?sid=2944&userid=general Results: http://phpesp.sf.net/demo/test.php?sid=2944&results=1 -James |
From: James E. F. <jf...@ac...> - 2002-04-16 14:49:30
|
Well if you can assume that the people taking the survey have the language preferences set in their browser, and you have the PHP "gettext" extension loaded, then it shouldn't be a problem. The strings you mentioned are passed through gettext, so you will need to take a look at the internationalization page[1] to see how to translate the strings. If all you really need is those strings translated, you can skip translating all the rest -- though it would be nice to have as many full translations as possible. [1] http://phpesp.sf.net/internationalization.html If language prefereces are *not* set in browsers, or are set to english, you will still get english messages. -James On Tue, 16 Apr 2002, Heidi Anselstetter wrote: > Good Morning, > > I use english as default language. > But now I have some english surveys and want o add also some spanish > surveys. Questions and answers are not the problem, but what can I do to > have words like > > Questions marked with a * are required. > Submit Survey > You are missing the following required questions: > > translatet. Because next time I need to add german surveys. > > Any Ideas ? > > Thanks in advance > > Heidi |
From: Heidi A. <he...@im...> - 2002-04-16 07:50:36
|
Hi, I'm again I forgot to say, that I also need the yes/no question in diffrent languages. Thanks Heidi |
From: Heidi A. <he...@im...> - 2002-04-16 07:17:46
|
Good Morning, I use english as default language. But now I have some english surveys and want o add also some spanish surveys. Questions and answers are not the problem, but what can I do to have words like Questions marked with a * are required. Submit Survey You are missing the following required questions: translatet. Because next time I need to add german surveys. Any Ideas ? Thanks in advance Heidi |
From: James E. F. <jf...@ac...> - 2002-04-16 07:07:09
|
400 questions huh? I feel really sorry for the people who have to fill out that survey -- I get impatient after about 10. Well, probably the slowness is coming from the SQL queries. Is the mysql server the same box as the web server? Here are some tools you can use to check out performance on your box: iostat -w1 (show I/O stats) vmstat -w1 (show VM stats) netstat -w1 (show net stats) Try running each of those and see if anything spikes unreasonably high when someone is using phpESP. That should give you a place to start. Once you pin it down to disk or memory or cpu let me know which it is and we'll go from there. (I am guessing all those utils exist on OS X since they do on FreeBSD, consult your local man pages for details.) -James On 13 Apr 2002, Unix Newbie wrote: > > > Hello again, > > > I was hoping I could pick your brains yet again. I have a question > regarding this softwares performance. My users have set up these > wonderful surveys with about 400 questions each, complete with breaks, > etc. Making any edits or pretty much doing anything with survey takes > about 2-3 minutes. I'm getting a lot of complaints about this and I'm > not sure what to do about it. > > My system is a Mac OS 10.1.3 box, a 733 G4 with 700megs of RAM and an > 7200rpm ATA drive (I know, not the best). I have order 1.5 gigs of RAM > to put in there, and I am defraging the drive tonight. I am really at a > loss though to say if that is problem because CPU usages is always > really low. Any ideas, where to turn too? Do I maybe have something > configured wrong? > > > Thanks soo much again everyone! As aways, docs, urls, anything helps! > > Sincerly, > Terry. |
From: Unix N. <uni...@ea...> - 2002-04-16 05:37:48
|
Hello again, I was hoping I could pick your brains yet again. I have a question regarding this softwares performance. My users have set up these wonderful surveys with about 400 questions each, complete with breaks, etc. Making any edits or pretty much doing anything with survey takes about 2-3 minutes. I'm getting a lot of complaints about this and I'm not sure what to do about it. My system is a Mac OS 10.1.3 box, a 733 G4 with 700megs of RAM and an 7200rpm ATA drive (I know, not the best). I have order 1.5 gigs of RAM to put in there, and I am defraging the drive tonight. I am really at a loss though to say if that is problem because CPU usages is always really low. Any ideas, where to turn too? Do I maybe have something configured wrong? Thanks soo much again everyone! As aways, docs, urls, anything helps! Sincerly, Terry. |
From: James E. F. <jf...@ac...> - 2002-04-11 15:51:17
|
You could specify a stylesheet and any layout surrounding the survey in the template file (the file that you added the <?php ... ?> tags to). A very small example (hope your mail reader doesn't try to interpret the HTML below): <html> <head><title>custom title</title></head> <body> <center><p><img src="customheader.png"></p></center> <table width="90%"><tr><td> <?php $sid=1; include(...); ?> </td></tr></table> <hr> Some Copyright (c) or Something. </body></html> Does that help? You are free to do anything you want around the PHP tag, including specifying a stylesheet etc. -James On Thu, 11 Apr 2002, Heidi Anselstetter wrote: > Hi, > > I work with esp since today. I have setup a survey and everything is fine ! > I just want to change the look of the survey page with the user can see. Any > chance to work with style sheets ? Or in witch file I can change the table > structure ? > > Hope someone can help me. > > Thanks > Heidi > > > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > |
From: Heidi A. <he...@im...> - 2002-04-11 13:51:33
|
Hi, I work with esp since today. I have setup a survey and everything is fine ! I just want to change the look of the survey page with the user can see. Any chance to work with style sheets ? Or in witch file I can change the table structure ? Hope someone can help me. Thanks Heidi |
From: James E. F. <jf...@ac...> - 2002-04-05 15:01:06
|
On Thu, 4 Apr 2002, me@shaw wrote: > Hi > I've followed the thread about changing permissions of the exported csv file > to 0777. I still don't have permission to access the file. I don't have > root access so I'm stuck. Are there other actions I could take. (The owner > of the exported file appears to be HTTPD, if that makes sense or matters) > Thanx You should set the umask to 0, not to 0777, which is what I am guessing you did. You could also upgrade to the CVS version, which has a new download feature. -James |
From: Roman J. <cit...@ma...> - 2002-04-05 07:09:52
|
try changing it to 0000. this should create a readable for you file. -Roma On Thursday, April 4, 2002, at 07:13 PM, me@shaw wrote: > Hi > I've followed the thread about changing permissions of the exported csv > file > to 0777. I still don't have permission to access the file. I don't > have > root access so I'm stuck. Are there other actions I could take. (The > owner > of the exported file appears to be HTTPD, if that makes sense or > matters) > Thanx > > > > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > |
From: Unix N. <uni...@ea...> - 2002-04-05 05:49:19
|
Thanks, after reading those docs off the mysql website I was able to set it up. The whole problem I was running into is I somehow missed that you had to type in mysql from the <install root>/bin directory before you could do the other commands! Thanks for the help, the rest was pretty straightforeward and the site is running great! On Thu, 2002-04-04 at 06:36, Sean M Alderman wrote: > What do your apache logs say? As far as mysql administration, you can > have a look at http://www.mysql.com/doc/U/s/User_Account_Management.html > for help in general with mysql users (which don't need to have any > relation to operating system users). Also, since you've got PHP > running, you might want to look into using phpMyAdmin to manage your > MySQL database(s). It will provide you with a good interface for mysql > if you're not up on what can be the seemingly cryptic command line > operations inside mysql. You can find it at > http://phpwizard.net/projects/phpMyAdmin/index.html > > On Tue, 2002-04-02 at 01:17, Unix Newbie wrote: > > > > > > Hello all! > > > > I have a question that is probably pretty basic. I have a Mac OS X > > 10.1.3 G4 that I am trying to set up phpESP on. I have successfully > > installed mysql as well as the php modules into Apache. (I know this > > because I can load the test.php page and get the info from it, as well > > as start the safe_mysqld successfully) > > > > Now, I have run into some problems with the phpESP site when it comes > > to loading index.php. I have followed the directions as best I could > > (edited all the usr/local/ib... files to reflect the correct paths as it > > said in the readme) however when I go to load it I get an error HTTP: > > 503. > > > > I think my problem has to do with mysql permissions. I know I needed to > > set up a mysql user (beyond the Darwin OS one, that one I created and > > made the group, etc) and assign the database priveleges, but I haven't > > the foggiest clue how to do that! After searching on the net, I followed > > some site instructions that where made for mysql on a win32 platform and > > I have no clue if they worked or not. > > > > > > Any help, docs, or urls would be really appreciated! Thanks! > > > > > > Terence > -- > Sean M. Alderman > ITRACK Systems Analyst > PACE/NCI - NASA Glenn Research Center > (216) 433-2795 > > Calling a windowed operating system "Windows" is like naming an > automobile "Wheels." > > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general |
From: <me...@sh...> - 2002-04-04 16:46:03
|
Hi I've followed the thread about changing permissions of the exported csv file to 0777. I still don't have permission to access the file. I don't have root access so I'm stuck. Are there other actions I could take. (The owner of the exported file appears to be HTTPD, if that makes sense or matters) Thanx |
From: Sean M A. <sea...@gr...> - 2002-04-04 14:36:57
|
What do your apache logs say? As far as mysql administration, you can have a look at http://www.mysql.com/doc/U/s/User_Account_Management.html for help in general with mysql users (which don't need to have any relation to operating system users). Also, since you've got PHP running, you might want to look into using phpMyAdmin to manage your MySQL database(s). It will provide you with a good interface for mysql if you're not up on what can be the seemingly cryptic command line operations inside mysql. You can find it at http://phpwizard.net/projects/phpMyAdmin/index.html On Tue, 2002-04-02 at 01:17, Unix Newbie wrote: > > > Hello all! > > I have a question that is probably pretty basic. I have a Mac OS X > 10.1.3 G4 that I am trying to set up phpESP on. I have successfully > installed mysql as well as the php modules into Apache. (I know this > because I can load the test.php page and get the info from it, as well > as start the safe_mysqld successfully) > > Now, I have run into some problems with the phpESP site when it comes > to loading index.php. I have followed the directions as best I could > (edited all the usr/local/ib... files to reflect the correct paths as it > said in the readme) however when I go to load it I get an error HTTP: > 503. > > I think my problem has to do with mysql permissions. I know I needed to > set up a mysql user (beyond the Darwin OS one, that one I created and > made the group, etc) and assign the database priveleges, but I haven't > the foggiest clue how to do that! After searching on the net, I followed > some site instructions that where made for mysql on a win32 platform and > I have no clue if they worked or not. > > > Any help, docs, or urls would be really appreciated! Thanks! > > > Terence -- Sean M. Alderman ITRACK Systems Analyst PACE/NCI - NASA Glenn Research Center (216) 433-2795 Calling a windowed operating system "Windows" is like naming an automobile "Wheels." |
From: Unix N. <uni...@ea...> - 2002-04-04 06:16:24
|
Hello all! I have a question that is probably pretty basic. I have a Mac OS X 10.1.3 G4 that I am trying to set up phpESP on. I have successfully installed mysql as well as the php modules into Apache. (I know this because I can load the test.php page and get the info from it, as well as start the safe_mysqld successfully) Now, I have run into some problems with the phpESP site when it comes to loading index.php. I have followed the directions as best I could (edited all the usr/local/ib... files to reflect the correct paths as it said in the readme) however when I go to load it I get an error HTTP: 503. I think my problem has to do with mysql permissions. I know I needed to set up a mysql user (beyond the Darwin OS one, that one I created and made the group, etc) and assign the database priveleges, but I haven't the foggiest clue how to do that! After searching on the net, I followed some site instructions that where made for mysql on a win32 platform and I have no clue if they worked or not. Any help, docs, or urls would be really appreciated! Thanks! Terence |
From: janet f. <fo...@fo...> - 2002-03-29 20:59:46
|
DOH! absolutely correct. All better now. Thanks. Really. Janet At 9:09 AM +0200 3/29/02, Roman Jasins wrote: >Janet, > >sounds like you're trying to use root account which you don't have >password for. Why don't try doing the same with the account you said >you can build the DB with. >[$ mysql -ujanet -p phpesp < public_html/phpESP.sql] >I'm just guessing here. Trying to make your life easier. If you need >to build DB using some kind of web interface, than all the info you >need is in the phpESP.sql. It has all the tables you need, and also >some data to be populated in order for ESP to work. > >Take care, >-Roma > > > >On Friday, March 29, 2002, at 05:02 AM, janet fouts wrote: > >>Hi, >>phpesp looks awesome, but I'm not able to run phpESP.sql from the >>command line. >>I said $ mysql -uroot -p phpesp < public_html/phpESP.sql >>it requested a password >>I entered the password of the account and got back: >>ERROR 2000: Access denied for user: 'root@localhost' (Using password: YES) >> >> >>whussup? >> >>I can build the dbase if I know what the tables look like.. >>Is there somewhere I get get a description of the table >>configuration I need to set up? >> >>FYI, >>I'm on a shared server Linux running Apache, php4 installed. >>Thanks in advance for your help! >>Janet >> >> >> >> >>_______________________________________________ >>phpESP-general mailing list >>php...@li... >>https://lists.sourceforge.net/lists/listinfo/phpesp-general >> > > >_______________________________________________ >phpESP-general mailing list >php...@li... >https://lists.sourceforge.net/lists/listinfo/phpesp-general |
From: James E. F. <jf...@ac...> - 2002-03-29 14:59:10
|
Take a look at the comments at the top of "handler-prefix.php". For private surveys, you need to include the prefix file *at the very top* of the page you want to embed the survey in. This is because it has to send the Authentication headers, and the headers *must* be sent before any of the page content. Let me know if you have any further problems. -James On Fri, 29 Mar 2002, Cédric Levasseur wrote: > Hi! I need a help for deploying private survey, > As i can't see anything in README, neither in the phpesp-general mailing > list, i send you this question. > (please note that i use phpESP-1.4beta1) > (note too, that i'm using the french version - that we are finishing to > traduce; we will send it to you very soon [this afternoon]- So don't be > afraid when you will see Error messages in french) > > 1/ To put a link to the survey, i've try create a survey.php with this line: > <?php $sid=18; > include("/var/www/html/appll/phpESP-1.4beta1/public/handler.php");?> > > but it does not work with PRIVATE survey (only with a public one). > here is the error: > --- > Warning: Cannot add header information - headers already sent by (output > started at /var/www/html/appll/phpESP-1.4beta1/survey.php:1) in > /var/www/html/appll/phpESP-1.4beta1/admin/include/lib/espauth.inc on line 68 > > Warning: Cannot add header information - headers already sent by (output > started at /var/www/html/appll/phpESP-1.4beta1/survey.php:1) in > /var/www/html/appll/phpESP-1.4beta1/admin/include/lib/espauth.inc on line 69 > [ ID utilisateur ou mot de passe incorrect. Votre compte est > désactivé/expiré. ] > --- > (this error message tell me than User ID expired / the account expired ) > > So i decide to try another method: > > 2/ rather than a link, i make a submit button, > > <form action="http://myhost.mydomain.com/phpesp/public/handler.php" > method="post"><input type=hidden name="sid" value="13"><input > type=submit value="nameofsurvey"></form> > > > It works well with a public survey, but not with a private one. > A authentification pop-up appears, but never succeed ; > (it always ask to me authentificate me) > > 3/ I've finally decided to make a button opening a new window with this > code: > <form target="_new" > action="http://myhost.mydomain.com/phpesp/public/handler.php" > method="post"><input type=hidden name="sid" value="13"><input > type=submit value="nameofsurvey"></form> > > > AND THIS WORK! > > So i'm asking you this question, > > What is the method to deploy private survey ? > > Thanks. > > > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > |
From: <ce...@le...> - 2002-03-29 12:51:03
|
Hi! I need a help for deploying private survey, As i can't see anything in README, neither in the phpesp-general mailing=20 list, i send you this question. (please note that i use phpESP-1.4beta1) (note too, that i'm using the french version - that we are finishing to=20 traduce; we will send it to you very soon [this afternoon]- So don't be=20 afraid when you will see Error messages in french) 1/ To put a link to the survey, i've try create a survey.php with this li= ne: <?php $sid=3D18;=20 include("/var/www/html/appll/phpESP-1.4beta1/public/handler.php");?> but it does not work with PRIVATE survey (only with a public one). here is the error: --- Warning: Cannot add header information - headers already sent by (output=20 started at /var/www/html/appll/phpESP-1.4beta1/survey.php:1) in=20 /var/www/html/appll/phpESP-1.4beta1/admin/include/lib/espauth.inc on line= 68 Warning: Cannot add header information - headers already sent by (output=20 started at /var/www/html/appll/phpESP-1.4beta1/survey.php:1) in=20 /var/www/html/appll/phpESP-1.4beta1/admin/include/lib/espauth.inc on line= 69 [ ID utilisateur ou mot de passe incorrect. Votre compte est=20 d=E9sactiv=E9/expir=E9. ] --- (this error message tell me than User ID expired / the account expired ) So i decide to try another method: 2/ rather than a link, i make a submit button, <form action=3D"http://myhost.mydomain.com/phpesp/public/handler.php"=20 method=3D"post"><input type=3Dhidden name=3D"sid" value=3D"13"><input=20 type=3Dsubmit value=3D"nameofsurvey"></form> It works well with a public survey, but not with a private one. A authentification pop-up appears, but never succeed ; (it always ask to me authentificate me) 3/ I've finally decided to make a button opening a new window with this=20 code: <form target=3D"_new"=20 action=3D"http://myhost.mydomain.com/phpesp/public/handler.php"=20 method=3D"post"><input type=3Dhidden name=3D"sid" value=3D"13"><input=20 type=3Dsubmit value=3D"nameofsurvey"></form> AND THIS WORK! So i'm asking you this question, What is the method to deploy private survey ? Thanks. |
From: Roman J. <cit...@ma...> - 2002-03-29 07:09:38
|
Janet, sounds like you're trying to use root account which you don't have password for. Why don't try doing the same with the account you said you can build the DB with. [$ mysql -ujanet -p phpesp < public_html/phpESP.sql] I'm just guessing here. Trying to make your life easier. If you need to build DB using some kind of web interface, than all the info you need is in the phpESP.sql. It has all the tables you need, and also some data to be populated in order for ESP to work. Take care, -Roma On Friday, March 29, 2002, at 05:02 AM, janet fouts wrote: > Hi, > phpesp looks awesome, but I'm not able to run phpESP.sql from the > command line. > I said $ mysql -uroot -p phpesp < public_html/phpESP.sql > it requested a password > I entered the password of the account and got back: > ERROR 2000: Access denied for user: 'root@localhost' (Using password: > YES) > > > whussup? > > I can build the dbase if I know what the tables look like.. > Is there somewhere I get get a description of the table configuration I > need to set up? > > FYI, > I'm on a shared server Linux running Apache, php4 installed. > Thanks in advance for your help! > Janet > > > > > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > |