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: Franky V. L. <lie...@te...> - 2010-03-31 10:56:23
|
On Wed, Mar 31, 2010 at 12:13 PM, Tom Haynes <to...@th...> wrote: > Greetings... > > <snip> > > <?php > > // use http or https? > $ESPCONFIG['proto'] = 'http://'; > > // Base URL for phpESP > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . $server['HTTP_HOST'] . > '/phpesp/' > ; > > // Enable debugging code (BOOLEAN) > $ESPCONFIG['DEBUG'] = true; > > // Database connection information > // for the database type, change $ESPCONFIG['adodb_database_type'] (further > down > ) > $ESPCONFIG['db_host'] = 'localhost'; > $ESPCONFIG['db_user'] = 'phpesp'; > $ESPCONFIG['db_pass'] = '********'; > $ESPCONFIG['db_name'] = 'phpesp'; > $DB_PREFIX = ""; // If you want your database tables to use a prefix, s > et it here. > $OLD_DB_PREFIX = ""; // When switching prefixes, give here the current > existin > g prefix in the db > > ?> > > Tom, if you get a blank page, you should check your apache logs. But in this case: if you just copied over the phpesp.ini.example, you should take care that all lines are correct. In the example file there are a bit too much carriage returns, so it must be: <?php // use http or https? $ESPCONFIG['proto'] = 'http://'; // Base URL for phpESP $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . $server['HTTP_HOST'] . '/phpesp/'; // Enable debugging code (BOOLEAN) $ESPCONFIG['DEBUG'] = true; // Database connection information // for the database type, change $ESPCONFIG['adodb_database_type'] (further down) $ESPCONFIG['db_host'] = 'localhost'; $ESPCONFIG['db_user'] = 'phpesp'; $ESPCONFIG['db_pass'] = '********'; $ESPCONFIG['db_name'] = 'phpesp'; $DB_PREFIX = ""; // If you want your database tables to use a prefix, set it here. $OLD_DB_PREFIX = ""; // When switching prefixes, give here the current existing prefix in the db ?> Agreed, the example file provided in the distributed version is wrong there (will be corrected by the next version), but this should be very obvious and also the apache logfiles should've helped you here. Franky |
From: Tom H. <to...@th...> - 2010-03-31 10:39:54
|
Greetings... I am trying to install 2.1.4 on a Redhat based server. I created the database in phpmyadmin and assigned a user with rights. I editied the phpESP.ini.php.example and renamed it phpESP.ini.php. I get a blank page when I try to use the program. Thinking the database was not being created, I poputaed it with the mysql_populate.sql file. I am doing something wrong and hope maybe you folks can help. I turned on the error reporting and did not get anything that helped. I'll include my test.php and phpESP.ini.php (w/o the password). Thanks... Tom PHP Information * Version: 4.3.9 * OS: Linux * SAPI: apache2handler * register_globals: No * magic_quotes_gpc: Yes * magic_quotes_runtime: No * safe_mode: No * open_basedir: /home/e-smith/files/ibays/thaynes/ PHP Extensions * dBase: Yes * GD: Yes -- bundled (2.0.28 compatible) * GNU Gettext: Yes * LDAP: Yes * MySQL: Yes * PostgreSQL: No * PHP Extension Dir (compiled): /usr/lib/php4 * PHP Extension Dir (run time): /usr/lib/php4 phpESP Settings * Loading phpESP.ini.php ... ___________________________________________ <?php // use http or https? $ESPCONFIG['proto'] = 'http://'; // Base URL for phpESP $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . $server['HTTP_HOST'] . '/phpesp/' ; // Enable debugging code (BOOLEAN) $ESPCONFIG['DEBUG'] = true; // Database connection information // for the database type, change $ESPCONFIG['adodb_database_type'] (further down ) $ESPCONFIG['db_host'] = 'localhost'; $ESPCONFIG['db_user'] = 'phpesp'; $ESPCONFIG['db_pass'] = '********'; $ESPCONFIG['db_name'] = 'phpesp'; $DB_PREFIX = ""; // If you want your database tables to use a prefix, s et it here. $OLD_DB_PREFIX = ""; // When switching prefixes, give here the current existin g prefix in the db ?> -- "Never try to find a place to speak, try to have something to say." -- Dallas Willard |
From: Franky V. L. <lie...@te...> - 2010-03-26 23:53:56
|
On Fri, 26 Mar 2010 21:00:14 -0000 "Nick Coleman" <ni...@ni...> wrote: > Hi, I appear to have created some bugs: > > I have updated phpESP to the latest version but, > > 1.Survey form has two error notices at top: there are undefined > variables in /public/handler, lines 465,466. > <input type="hidden" name="referer" value="" /> > <input type="hidden" name="direct" value="" /> > > 2. I have filled in box on General page for email notification, but > am not getting any. > > 3. on submitting, get Thanks page of errors, all on line 386 > Notice: Undefined offset: 3 in > /home/bridlew1/public_html/survey/public/handler.php on line 386 > Notice: Undefined offset: 4 in > /home/bridlew1/public_html/survey/public/handler.php on line 386 > And these two lines repeat themselves all the way down the page. > Return > > Thanks for helping > Nick Hi, it seems you have your error level in php.ini way too high. Remember that showing php notices to the public is a security risk, showing eg. the path to the script (as in your case). The recommended settings in php.ini are: display_errors = Off log_errors = On I added a check in admin/test.php for the display_errors variable. But anyway, these php notices (which are NOT errors btw) should not occur. I've uploaded a new version of public/handler.php to svn. For the differences: http://phpesp.svn.sourceforge.net/viewvc/phpesp/trunk/phpESP/public/handler.php?r1=1147&r2=1144 About the mail: check your maillogs for errors, maybe they get blocked. Make sure the php mail() function works. Maybe I'll add the option to directly contact a smtp server via php mail(), but for now you'll need to check/correct your php.ini file for that (on unix it works via sendmail, on windows it uses a specified smtp server). And also check the values of: $ESPCONFIG['email_from_address'] $ESPCONFIG['email_return_path'] it might be they are incorrect and your mailserver blocks the mails because of this. Franky |
From: Nick C. <ni...@ni...> - 2010-03-26 21:00:23
|
Hi, I appear to have created some bugs: I have updated phpESP to the latest version but, 1.Survey form has two error notices at top: there are undefined variables in /public/handler, lines 465,466. <input type="hidden" name="referer" value="" /> <input type="hidden" name="direct" value="" /> 2. I have filled in box on General page for email notification, but am not getting any. 3. on submitting, get Thanks page of errors, all on line 386 Notice: Undefined offset: 3 in /home/bridlew1/public_html/survey/public/handler.php on line 386 Notice: Undefined offset: 4 in /home/bridlew1/public_html/survey/public/handler.php on line 386 And these two lines repeat themselves all the way down the page. Return Thanks for helping Nick No virus found in this outgoing message. Checked by AVG - www.avg.com Version: 9.0.791 / Virus Database: 271.1.1/2768 - Release Date: 03/24/10 19:33:00 |
From: Franky V. L. <lie...@te...> - 2010-03-25 22:04:06
|
On Thu, 25 Mar 2010 19:31:06 -0000 "Nick Coleman" <ni...@ni...> wrote: > How can I allow multiple submissions to a public survey from same > computer? Is there a way I can alter a cookie to allow say 5 > submissions?, or maybe to expire when browser closes. > > How can I get a captcha to work on submit? > > In words of one syllable please, I am ignoramus when it comes to this > sort of thing > > Thanks > > Nick You want to copy the following settings from phpESP.ini.php.default to phpESP.ini and change the value as indicated here: // to limit double postings // set this to the number of days people are restricted from resubmitting // this is in fact the expire time for a cookie // Set this to 0 to disable $ESPCONFIG['limit_double_postings'] = 0; // to use captcha confirmation, set this to 1 // Be sure to install the GD extension for PHP first, before using this $ESPCONFIG['use_captcha'] = 1; Hope this helps, Franky |
From: Nick C. <ni...@ni...> - 2010-03-25 19:31:08
|
How can I allow multiple submissions to a public survey from same computer? Is there a way I can alter a cookie to allow say 5 submissions?, or maybe to expire when browser closes. How can I get a captcha to work on submit? In words of one syllable please, I am ignoramus when it comes to this sort of thing Thanks Nick www.bridlewayaction.com <http://www.bridlewayaction.com/> www.no-landraise.org <http://www.no-landraise.org/> No virus found in this outgoing message. Checked by AVG - www.avg.com Version: 9.0.791 / Virus Database: 271.1.1/2766 - Release Date: 03/23/10 19:33:00 |
From: Franky V. L. <lie...@te...> - 2010-01-17 15:57:05
|
On Fri, 15 Jan 2010 17:13:47 -0800 Gurdeep Singh <gur...@gm...> wrote: > Hi > > I am integrating survey tool into my MS thesis project. The issue I am > facing is that multiple surveys cannot be created with a single name. > Now My website will have multiple users and they will create surveys > and it will be hard to create a new survey everything with a unique > name. > > Is there any solution to that? > I am thinking to append their username with the survey name they > create so as to keep them unique. will it work? and if i does than in > which file i need to make changes so that username can be appended to > survey name. Please reply. > Well, I thought about that myself. The best solution would be to add the survey ID to the name automatically, solving it for everybody. I need to check the code as to where to change this though. Please do file a feature request for this on sourceforge, so we can track it. Franky |
From: Gurdeep S. <gur...@gm...> - 2010-01-16 01:14:13
|
Hi I am integrating survey tool into my MS thesis project. The issue I am facing is that multiple surveys cannot be created with a single name. Now My website will have multiple users and they will create surveys and it will be hard to create a new survey everything with a unique name. Is there any solution to that? I am thinking to append their username with the survey name they create so as to keep them unique. will it work? and if i does than in which file i need to make changes so that username can be appended to survey name. Please reply. -- Thanks & Regards Gurdeep Singh MS Computer Science SF State University (510) 921-8802 |
From: Franky V. L. <lie...@te...> - 2010-01-12 22:42:51
|
For all of you to enjoy: 2.1.4 has been released, long overdue if you ask me :-) Enjoy and please do post bug reports and such! Franky |
From: Franky V. L. <lie...@te...> - 2010-01-12 08:56:05
|
Well ... just what it says: the survey is not active. Way too little info to help you more here. Franky On Tue, Jan 12, 2010 at 1:49 AM, 99-series Webmaster < web...@99...> wrote: > web...@99... > > *Ginger Marks* > > Webmaster/Copy Editor/Designer > > web...@99... > > > > PS I have an active survey that returns an inactive survey warning. See: > http://99-series.com/oprah_survey.html > > What’s up with that? > > > > > ------------------------------------------------------------------------------ > This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast and > easy > Join now and get one step closer to millions of Verizon customers > http://p.sf.net/sfu/verizon-dev2dev > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > > |
From: Franky V. L. <lie...@te...> - 2010-01-02 18:16:17
|
Please check the examples subdir. Sessions are started by sending cookies to the client and these cookies need to be send before any html output begins, even before the first <html> tag, that's why I said you need to include this before any html output begins. Franky On Sat, 2 Jan 2010 08:26:36 -0500 "Josh Guttman" <jgu...@ma...> wrote: > Franky, > > Thanks for the response. > I placed include ("public/phpESP.first.php"); at the top of my head > section, it won't allow me to save it any nearer the top of the page. > The warnings are gone, however; "function.session-start" is still > appearing on the top left of the web page. > > I would love to see examples -- could you please tell me where to > find them? > > Thanks again. > > Best Regards, > Josh Guttman > Mark-A-Hydrant, LLC > 2863 Edgemont Drive > Allentown, PA 18103 > Direct (908) 902-9595 > Ph/Fax (888) 399-5532 > -----Original Message----- > From: Franky Van Liedekerke [mailto:lie...@te...] > Sent: Friday, January 01, 2010 3:51 PM > To: php...@li... > Subject: Re: [phpesp-general] session_start warnings > > Read the examples: > > # this must be included before any output happens > include("public/phpESP.first.php"); > > So include this before any html output even starts, don't try to start > the session yourself already. > > Franky > > On Fri, 1 Jan 2010 09:01:22 -0500 > "Josh Guttman" <jgu...@ma...> wrote: > > > Dear phpESP folks, > > > > > > > > I have used your software to build a client survey, and am happy > > with the way it looks. However; I have had some issues with > > "session_start" warnings, and would really appreciate some > > assistance in rectifying these problems. I have done extensive > > searches, and made some progress, but still need help. > > > > > > > > Initially the embedded survey needed php.first included - I did > > that, then the session_start warnings began, after reading online > > posts, I added: > > > > > > > > <?php session_start();?> at the end of my <head> section, on the > > html page. I tried to put it on line 1, but it wouldn't save it > > there. > > > > > > > > That got rid of the Warning when linking to my embedded survey: MAH > > Survey <http://www.mark-a-hydrant.com/MAH_Survey.php> > > > > However; I still get "function.session-start" appearing on the top > > left of the web page. > > > > > > > > The following messages appear when the survey is submitted: > > > > > > > > Warning: session_start() [function.session-start]: Cannot send > > session cookie - headers already sent > > > > > > > > by (output started at /home/XXXXXX/public_html/MAH_Survey.php:12) > > in > > > > > > > > /home/XXXXXX/public_html/MAH_Survey.php on line 33 > > > > > > > > Warning: session_start() [function.session-start]: Cannot send > > session cache limiter - headers > > > > > > > > already sent (output started > > at /home/XXXXXXX/public_html/MAH_Survey.php:12) in > > > > > > > > /home/XXXXXXX/public_html/MAH_Survey.php on line 33 > > > > > > > > > > > > > > > > Notice: Undefined index: rid in > > /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 41 > > > > > > > > Notice: Undefined index: sec in > > /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 41 > > > > > > > > Warning: Cannot modify header information - headers already sent by > > (output started at > > > > > > > > /home/XXXXXXX/public_html/MAH_Survey.php:12) in > > > > > > > > /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 72 > > > > > > > > > > > > I would really appreciate any help you can provide. > > > > Happy New Year! > > > > > > > > > > > > Best Regards, > > > > Josh Guttman > > > > Mark-A-Hydrant, LLC > > > > > > > > > > > > ---------------------------------------------------------------------------- > -- > This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast > and easy Join now and get one step closer to millions of Verizon > customers http://p.sf.net/sfu/verizon-dev2dev > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > > |
From: Franky V. L. <lie...@te...> - 2010-01-01 20:50:50
|
Read the examples: # this must be included before any output happens include("public/phpESP.first.php"); So include this before any html output even starts, don't try to start the session yourself already. Franky On Fri, 1 Jan 2010 09:01:22 -0500 "Josh Guttman" <jgu...@ma...> wrote: > Dear phpESP folks, > > > > I have used your software to build a client survey, and am happy with > the way it looks. However; I have had some issues with > "session_start" warnings, and would really appreciate some assistance > in rectifying these problems. I have done extensive searches, and > made some progress, but still need help. > > > > Initially the embedded survey needed php.first included - I did that, > then the session_start warnings began, after reading online posts, I > added: > > > > <?php session_start();?> at the end of my <head> section, on the > html page. I tried to put it on line 1, but it wouldn't save it there. > > > > That got rid of the Warning when linking to my embedded survey: MAH > Survey <http://www.mark-a-hydrant.com/MAH_Survey.php> > > However; I still get "function.session-start" appearing on the top > left of the web page. > > > > The following messages appear when the survey is submitted: > > > > Warning: session_start() [function.session-start]: Cannot send session > cookie - headers already sent > > > > by (output started at /home/XXXXXX/public_html/MAH_Survey.php:12) in > > > > /home/XXXXXX/public_html/MAH_Survey.php on line 33 > > > > Warning: session_start() [function.session-start]: Cannot send > session cache limiter - headers > > > > already sent (output started > at /home/XXXXXXX/public_html/MAH_Survey.php:12) in > > > > /home/XXXXXXX/public_html/MAH_Survey.php on line 33 > > > > > > > > Notice: Undefined index: rid in > /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 41 > > > > Notice: Undefined index: sec in > /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 41 > > > > Warning: Cannot modify header information - headers already sent by > (output started at > > > > /home/XXXXXXX/public_html/MAH_Survey.php:12) in > > > > /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 72 > > > > > > I would really appreciate any help you can provide. > > Happy New Year! > > > > > > Best Regards, > > Josh Guttman > > Mark-A-Hydrant, LLC > > > > > |
From: Josh G. <jgu...@ma...> - 2010-01-01 20:16:20
|
Dear phpESP folks, I have used your software to build a client survey, and am happy with the way it looks. However; I have had some issues with "session_start" warnings, and would really appreciate some assistance in rectifying these problems. I have done extensive searches, and made some progress, but still need help. Initially the embedded survey needed php.first included - I did that, then the session_start warnings began, after reading online posts, I added: <?php session_start();?> at the end of my <head> section, on the html page. I tried to put it on line 1, but it wouldn't save it there. That got rid of the Warning when linking to my embedded survey: MAH Survey <http://www.mark-a-hydrant.com/MAH_Survey.php> However; I still get "function.session-start" appearing on the top left of the web page. The following messages appear when the survey is submitted: Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/XXXXXX/public_html/MAH_Survey.php:12) in /home/XXXXXX/public_html/MAH_Survey.php on line 33 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/XXXXXXX/public_html/MAH_Survey.php:12) in /home/XXXXXXX/public_html/MAH_Survey.php on line 33 Notice: Undefined index: rid in /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 41 Notice: Undefined index: sec in /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 41 Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXXXX/public_html/MAH_Survey.php:12) in /home/XXXXXXX/public_html/phpesp/public/phpESP.first.php on line 72 I would really appreciate any help you can provide. Happy New Year! Best Regards, Josh Guttman Mark-A-Hydrant, LLC |
From: Steve B. <sb...@co...> - 2009-12-07 14:21:21
|
From: Franky V. L. <lie...@te...> - 2009-12-07 14:07:27
|
Aha, simple thingie: the test.php only will be "ok" for English (it tests a translated string against a fixed value), but it should work just fine with different languages (if that's the only real error you're getting). Maybe I should think of something else to test this .. Franky On Mon, Dec 7, 2009 at 2:24 PM, Søren Voigt <sv...@sq...> wrote: > Sorry – should have mentioned: 2.1.3 > > Php is 5.2.6, > > OS: FREEBSD Release 7.0 > > Gettext Support: Enabled > > > > /Soren > > > > > > > > *Fra:* fra...@gm... [mailto: > fra...@gm...] *På vegne af *Franky Van Liedekerke > *Sendt:* 7. december 2009 14:07 > *Til:* Søren Voigt > *Cc:* php...@li... > *Emne:* Re: [phpesp-general] Gettext Test Failed in phpESP test.php > > > > Which version of phpESP are you using? > > Franky > > On Mon, Dec 7, 2009 at 1:57 PM, Søren Voigt <sv...@sq...> wrote: > > My problem is that I will only get phpESP to play with me in English ( > en_US) language... > > > > Output from test.php > > - *dBase: No* > - *GD: Yes -- bundled (2.0.34 compatible)* > - *GNU Gettext: Yes* > - *LDAP: No* > - *MySQL: Yes* > - *PostgreSQL: Yes* > - *PHP Extension Dir (compiled): > /usr/syno/php/lib/php/extensions/no-debug-non-zts-20060613* > - *PHP Extension Dir (run time): /lib/php/extensions* > > > > ........... > > - *GNU Gettext: Real* > - *default_lang: nb_NO* > - *current lang: da_DK* > - *available langs: el_GR, da_DK, sv_SE, nb_NO, pt_BR, nl_NL, pt_PT, > ru_RU, it_IT, fi, en_US, fi_FI, ja_JP, es_ES, de_DE, hu_HU, fr_FR > (da, de, el, en, es, fi, fr, it, ja, nl, no, pt, sv, ru)* > - *GNU Gettext test: %%%% Gettext Test Failed* > - *Catalog Open Test: Yes* > > Why do I get Gettext Test Failed when the Gettext library is loaded? > > > > Can anyone help me?????? > > > > Thanks in advance > > Soren > > > > ------------------------------------------------------------------------------ > Join us December 9, 2009 for the Red Hat Virtual Experience, > a free event focused on virtualization and cloud computing. > Attend in-depth sessions from your desk. Your couch. Anywhere. > http://p.sf.net/sfu/redhat-sfdev2dev > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > > > |
From: Franky V. L. <lie...@te...> - 2009-12-07 13:07:33
|
Which version of phpESP are you using? Franky On Mon, Dec 7, 2009 at 1:57 PM, Søren Voigt <sv...@sq...> wrote: > My problem is that I will only get phpESP to play with me in English ( > en_US) language... > > > > Output from test.php > > - *dBase: No* > - *GD: Yes -- bundled (2.0.34 compatible)* > - *GNU Gettext: Yes* > - *LDAP: No* > - *MySQL: Yes* > - *PostgreSQL: Yes* > - *PHP Extension Dir (compiled): > /usr/syno/php/lib/php/extensions/no-debug-non-zts-20060613* > - *PHP Extension Dir (run time): /lib/php/extensions* > > > > ........... > > - *GNU Gettext: Real* > - *default_lang: nb_NO* > - *current lang: da_DK* > - *available langs: el_GR, da_DK, sv_SE, nb_NO, pt_BR, nl_NL, pt_PT, > ru_RU, it_IT, fi, en_US, fi_FI, ja_JP, es_ES, de_DE, hu_HU, fr_FR > (da, de, el, en, es, fi, fr, it, ja, nl, no, pt, sv, ru)* > - *GNU Gettext test: %%%% Gettext Test Failed* > - *Catalog Open Test: Yes* > > Why do I get Gettext Test Failed when the Gettext library is loaded? > > > > Can anyone help me?????? > > > > Thanks in advance > > Soren > > > ------------------------------------------------------------------------------ > Join us December 9, 2009 for the Red Hat Virtual Experience, > a free event focused on virtualization and cloud computing. > Attend in-depth sessions from your desk. Your couch. Anywhere. > http://p.sf.net/sfu/redhat-sfdev2dev > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general > > |
From: Søren V. <sv...@sq...> - 2009-12-07 12:50:31
|
My problem is that I will only get phpESP to play with me in English (en_US) language... Output from test.php * dBase: No * GD: Yes -- bundled (2.0.34 compatible) * GNU Gettext: Yes * LDAP: No * MySQL: Yes * PostgreSQL: Yes * PHP Extension Dir (compiled): /usr/syno/php/lib/php/extensions/no-debug-non-zts-20060613 * PHP Extension Dir (run time): /lib/php/extensions ........... * GNU Gettext: Real * default_lang: nb_NO * current lang: da_DK * available langs: el_GR, da_DK, sv_SE, nb_NO, pt_BR, nl_NL, pt_PT, ru_RU, it_IT, fi, en_US, fi_FI, ja_JP, es_ES, de_DE, hu_HU, fr_FR (da, de, el, en, es, fi, fr, it, ja, nl, no, pt, sv, ru) * GNU Gettext test: %%%% Gettext Test Failed * Catalog Open Test: Yes Why do I get Gettext Test Failed when the Gettext library is loaded? Can anyone help me?????? Thanks in advance Soren |
From: Franky V. L. <lie...@te...> - 2009-12-04 21:48:59
|
On Fri, 4 Dec 2009 10:42:12 -0800 Gurdeep Singh <gur...@gm...> wrote: > Hi > > I am working on a web based application for my research project which > is intended for instructors of academic institution to measure the > teamwork within the teams. I have to integrate a survey tool into > this application and I selected PHPESP for that. > > My question is if different instructors (logged into my application as > different users) create a survey with same name then will PHPESP be > able to recognize or understand which instructor it belongs to. I > mean How is the link generated for a newly created survey. For > example my application folder is etat. Then link created is like > this: > > http://etat/phpesp/public/survey.php?name=something<http://etat.phpesp/public/survey.php?name=something> > > Then if different users (instructors) create a survey with the same > survey name then same link will be generated. How is it going to > distinguish between these survey. > > Please reply soon. Your help is greatly appreciated. > it's not possible to generate 2 surveys with the same short name. If it already exists, "_1" (or "_2" etc) will be added Btw: survey creation (not management thereof) should only be done by 1 account Franky |
From: Gurdeep S. <gur...@gm...> - 2009-12-04 18:42:42
|
Hi I am working on a web based application for my research project which is intended for instructors of academic institution to measure the teamwork within the teams. I have to integrate a survey tool into this application and I selected PHPESP for that. My question is if different instructors (logged into my application as different users) create a survey with same name then will PHPESP be able to recognize or understand which instructor it belongs to. I mean How is the link generated for a newly created survey. For example my application folder is etat. Then link created is like this: http://etat/phpesp/public/survey.php?name=something<http://etat.phpesp/public/survey.php?name=something> Then if different users (instructors) create a survey with the same survey name then same link will be generated. How is it going to distinguish between these survey. Please reply soon. Your help is greatly appreciated. Thanks and Regards Gurdeep Singh MS Computer Science SF State University 510-921-8802 |
From: Tony S. <to...@sc...> - 2009-11-27 10:07:42
|
Hi Folks, If the answer to this is obvious... please be kind to me! J I'm a volunteer webmaster for a small music festival (www.francesfolkgathering.com.au) and we want to set up a feedback page for people who attended the festival (in February next year). I have successfully installed phpesp on my home (testing only) server as well as my live server and it works just fine. Here's the part that works... I have presented the proposed feedback form for the festival management committee to preview on the live site, and it allows them to fill in the answers to the questions I have created. In order to do this I have put the survey form in a protected folder on the live site (it's not yet ready for public release). This part works really well. Here's the problem... I also want my management committee to see the results of the survey responses to date, but I don't want to have them access the Management Interface in any way. I just want them to be able to see the results of the current active survey. Can someone please point me toward the way to do this? Thanks Tonez |
From: Jensen N. <jen...@pi...> - 2009-11-19 06:19:48
|
Unfortunately, it doesn't work for me :( well i guess i just have to wait for the domain transfer to complete. Regards, Jensen Franky Van Liedekerke wrote: > Tried it here, and got it to work in a funny way :-) > > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > $ESPCONFIG['HTTP_HOST'] . > '/$'.'sitepreview/sst.edu.sg/modules/phpESP/; > > This is: seperate the "$" from the rest of the string, so it doesn't > get interpreted. Works ok here. > > Franky > > > On Thu, 19 Nov 2009 02:34:37 +0800 > Jensen Neo <jen...@pi...> wrote: > > >> sure man, thanks a lot. >> >> Will update you again if I get more clues. >> >> Franky Van Liedekerke wrote: >> >>> well ... I'll try to reproduce this myself, we'll see what >>> happens :-) >>> >>> On Thu, 19 Nov 2009 01:35:56 +0800 >>> Jensen Neo <jen...@pi...> wrote: >>> >>> >>> >>>> Hi Franky, >>>> >>>> Well i updated it to 2.1.3 as well as tried both configuration >>>> changes but doesn't seem to solve the issue. >>>> However, i noticed another configuration which may be the cause >>>> '$ESPCONFIG['ME'] which is pointing to $SERVER['PHP_SELF']. >>>> >>>> anyway its locked in .fixed. I can't seem to override it using >>>> the configuration file. >>>> >>>> Regards, >>>> Jensen >>>> >>>> >>>> Franky Van Liedekerke wrote: >>>> >>>> >>>>> Hi, >>>>> >>>>> 2 things: >>>>> - upgrade to 2.1.3 already (or the SVN version, which contains >>>>> all fixes so far). >>>>> - the issue is indeed with the $-sign. What you can do is escape >>>>> the sign in the base_url: >>>>> >>>>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . >>>>> $ESPCONFIG['HTTP_HOST'] . >>>>> '/\$sitepreview/sst.edu.sg/modules/phpESP/ >>>>> <http://sst.edu.sg/modules/phpESP/>'; >>>>> >>>>> or use the HTML-equivalent for it: >>>>> >>>>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . >>>>> $ESPCONFIG['HTTP_HOST'] . >>>>> '/$sitepreview/sst.edu.sg/modules/phpESP/ >>>>> <http://sst.edu.sg/modules/phpESP/>'; >>>>> >>>>> I would try one of these to start... >>>>> >>>>> Franky >>>>> >>>>> On Wed, Nov 18, 2009 at 11:20 AM, Jensen Neo >>>>> <jen...@pi... >>>>> <mailto:jen...@pi...>> wrote: >>>>> >>>>> Hi Franky, >>>>> >>>>> My apologies. I wasn't too sure what sort of information would >>>>> be require. >>>>> Well, my site is at >>>>> http://116.12.48.137/$sitepreview/sst.edu.sg/modules/phpESP/admin/manage.php. >>>>> You can try it out over there. >>>>> For the config files, basically i have added the following in >>>>> additional to the common db login. >>>>> >>>>> // use http or https? >>>>> $ESPCONFIG['proto'] = 'http://'; >>>>> $ESPCONFIG['HTTP_HOST'] = '116.12.48.137'; >>>>> >>>>> // Base URL for phpESP >>>>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . >>>>> $ESPCONFIG['HTTP_HOST'] . >>>>> '/$sitepreview/sst.edu.sg/modules/phpESP/ >>>>> <http://sst.edu.sg/modules/phpESP/>'; >>>>> >>>>> I have added the above as I realise the css is not being >>>>> loaded using the default values. I have suspected that issue >>>>> could be because of my current URL '$sitepreview' which >>>>> unfortunately I don't have a way to resolve it as the domain >>>>> transfer could only be complete in another few days time. >>>>> >>>>> >>>>> Regards, >>>>> Jensen >>>>> >>>>> Franky Van Liedekerke wrote: >>>>> >>>>> >>>>>> On Wed, Nov 18, 2009 at 10:17 AM, Jensen Neo >>>>>> <jen...@pi... >>>>>> <mailto:jen...@pi...>> wrote: >>>>>> >>>>>> Hi, >>>>>> >>>>>> I am having some problems with my phpesp. Everything well >>>>>> and fine on my >>>>>> development machine. >>>>>> However, after migration to the test server, I can't seem >>>>>> to get past >>>>>> the create survey 'general' tab. >>>>>> It simple re-route me by to the manage page and no >>>>>> records are created >>>>>> in the db. >>>>>> >>>>>> somebody help please... >>>>>> >>>>>> >>>>>> I'm very sorry, but you don't give us much to go on. I would >>>>>> recommend you check your config files and your webserver >>>>>> logs. >>>>>> >>>>>> Franky >>>>>> >>>>>> ------------------------------------------------------------------------ >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> Let Crystal Reports handle the reporting - Free Crystal >>>>>> Reports 2008 30-Day trial. Simplify your report design, >>>>>> integration and deployment - and focus on what you do best, core >>>>>> application coding. Discover what's new with Crystal Reports now. >>>>>> http://p.sf.net/sfu/bobj-july >>>>>> ------------------------------------------------------------------------ >>>>>> >>>>>> _______________________________________________ >>>>>> phpESP-general mailing list >>>>>> php...@li... >>>>>> <mailto:php...@li...> >>>>>> https://lists.sourceforge.net/lists/listinfo/phpesp-general >>>>>> >>>>>> >>>>> >>>>> >>> >>> > > |
From: Franky V. L. <lie...@te...> - 2009-11-18 21:59:06
|
Tried it here, and got it to work in a funny way :-) $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . $ESPCONFIG['HTTP_HOST'] . '/$'.'sitepreview/sst.edu.sg/modules/phpESP/; This is: seperate the "$" from the rest of the string, so it doesn't get interpreted. Works ok here. Franky On Thu, 19 Nov 2009 02:34:37 +0800 Jensen Neo <jen...@pi...> wrote: > sure man, thanks a lot. > > Will update you again if I get more clues. > > Franky Van Liedekerke wrote: > > well ... I'll try to reproduce this myself, we'll see what > > happens :-) > > > > On Thu, 19 Nov 2009 01:35:56 +0800 > > Jensen Neo <jen...@pi...> wrote: > > > > > >> Hi Franky, > >> > >> Well i updated it to 2.1.3 as well as tried both configuration > >> changes but doesn't seem to solve the issue. > >> However, i noticed another configuration which may be the cause > >> '$ESPCONFIG['ME'] which is pointing to $SERVER['PHP_SELF']. > >> > >> anyway its locked in .fixed. I can't seem to override it using > >> the configuration file. > >> > >> Regards, > >> Jensen > >> > >> > >> Franky Van Liedekerke wrote: > >> > >>> Hi, > >>> > >>> 2 things: > >>> - upgrade to 2.1.3 already (or the SVN version, which contains > >>> all fixes so far). > >>> - the issue is indeed with the $-sign. What you can do is escape > >>> the sign in the base_url: > >>> > >>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > >>> $ESPCONFIG['HTTP_HOST'] . > >>> '/\$sitepreview/sst.edu.sg/modules/phpESP/ > >>> <http://sst.edu.sg/modules/phpESP/>'; > >>> > >>> or use the HTML-equivalent for it: > >>> > >>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > >>> $ESPCONFIG['HTTP_HOST'] . > >>> '/$sitepreview/sst.edu.sg/modules/phpESP/ > >>> <http://sst.edu.sg/modules/phpESP/>'; > >>> > >>> I would try one of these to start... > >>> > >>> Franky > >>> > >>> On Wed, Nov 18, 2009 at 11:20 AM, Jensen Neo > >>> <jen...@pi... > >>> <mailto:jen...@pi...>> wrote: > >>> > >>> Hi Franky, > >>> > >>> My apologies. I wasn't too sure what sort of information would > >>> be require. > >>> Well, my site is at > >>> http://116.12.48.137/$sitepreview/sst.edu.sg/modules/phpESP/admin/manage.php. > >>> You can try it out over there. > >>> For the config files, basically i have added the following in > >>> additional to the common db login. > >>> > >>> // use http or https? > >>> $ESPCONFIG['proto'] = 'http://'; > >>> $ESPCONFIG['HTTP_HOST'] = '116.12.48.137'; > >>> > >>> // Base URL for phpESP > >>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > >>> $ESPCONFIG['HTTP_HOST'] . > >>> '/$sitepreview/sst.edu.sg/modules/phpESP/ > >>> <http://sst.edu.sg/modules/phpESP/>'; > >>> > >>> I have added the above as I realise the css is not being > >>> loaded using the default values. I have suspected that issue > >>> could be because of my current URL '$sitepreview' which > >>> unfortunately I don't have a way to resolve it as the domain > >>> transfer could only be complete in another few days time. > >>> > >>> > >>> Regards, > >>> Jensen > >>> > >>> Franky Van Liedekerke wrote: > >>> > >>>> On Wed, Nov 18, 2009 at 10:17 AM, Jensen Neo > >>>> <jen...@pi... > >>>> <mailto:jen...@pi...>> wrote: > >>>> > >>>> Hi, > >>>> > >>>> I am having some problems with my phpesp. Everything well > >>>> and fine on my > >>>> development machine. > >>>> However, after migration to the test server, I can't seem > >>>> to get past > >>>> the create survey 'general' tab. > >>>> It simple re-route me by to the manage page and no > >>>> records are created > >>>> in the db. > >>>> > >>>> somebody help please... > >>>> > >>>> > >>>> I'm very sorry, but you don't give us much to go on. I would > >>>> recommend you check your config files and your webserver > >>>> logs. > >>>> > >>>> Franky > >>>> > >>>> ------------------------------------------------------------------------ > >>>> > >>>> ------------------------------------------------------------------------------ > >>>> Let Crystal Reports handle the reporting - Free Crystal > >>>> Reports 2008 30-Day trial. Simplify your report design, > >>>> integration and deployment - and focus on what you do best, core > >>>> application coding. Discover what's new with Crystal Reports now. > >>>> http://p.sf.net/sfu/bobj-july > >>>> ------------------------------------------------------------------------ > >>>> > >>>> _______________________________________________ > >>>> phpESP-general mailing list > >>>> php...@li... > >>>> <mailto:php...@li...> > >>>> https://lists.sourceforge.net/lists/listinfo/phpesp-general > >>>> > >>> > > > > |
From: Jensen N. <jen...@pi...> - 2009-11-18 18:34:53
|
sure man, thanks a lot. Will update you again if I get more clues. Franky Van Liedekerke wrote: > well ... I'll try to reproduce this myself, we'll see what happens :-) > > On Thu, 19 Nov 2009 01:35:56 +0800 > Jensen Neo <jen...@pi...> wrote: > > >> Hi Franky, >> >> Well i updated it to 2.1.3 as well as tried both configuration >> changes but doesn't seem to solve the issue. >> However, i noticed another configuration which may be the cause >> '$ESPCONFIG['ME'] which is pointing to $SERVER['PHP_SELF']. >> >> anyway its locked in .fixed. I can't seem to override it using >> the configuration file. >> >> Regards, >> Jensen >> >> >> Franky Van Liedekerke wrote: >> >>> Hi, >>> >>> 2 things: >>> - upgrade to 2.1.3 already (or the SVN version, which contains all >>> fixes so far). >>> - the issue is indeed with the $-sign. What you can do is escape >>> the sign in the base_url: >>> >>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . >>> $ESPCONFIG['HTTP_HOST'] . >>> '/\$sitepreview/sst.edu.sg/modules/phpESP/ >>> <http://sst.edu.sg/modules/phpESP/>'; >>> >>> or use the HTML-equivalent for it: >>> >>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . >>> $ESPCONFIG['HTTP_HOST'] . >>> '/$sitepreview/sst.edu.sg/modules/phpESP/ >>> <http://sst.edu.sg/modules/phpESP/>'; >>> >>> I would try one of these to start... >>> >>> Franky >>> >>> On Wed, Nov 18, 2009 at 11:20 AM, Jensen Neo >>> <jen...@pi... >>> <mailto:jen...@pi...>> wrote: >>> >>> Hi Franky, >>> >>> My apologies. I wasn't too sure what sort of information would >>> be require. >>> Well, my site is at >>> http://116.12.48.137/$sitepreview/sst.edu.sg/modules/phpESP/admin/manage.php. >>> You can try it out over there. >>> For the config files, basically i have added the following in >>> additional to the common db login. >>> >>> // use http or https? >>> $ESPCONFIG['proto'] = 'http://'; >>> $ESPCONFIG['HTTP_HOST'] = '116.12.48.137'; >>> >>> // Base URL for phpESP >>> $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . >>> $ESPCONFIG['HTTP_HOST'] . >>> '/$sitepreview/sst.edu.sg/modules/phpESP/ >>> <http://sst.edu.sg/modules/phpESP/>'; >>> >>> I have added the above as I realise the css is not being loaded >>> using the default values. I have suspected that issue could be >>> because of my current URL '$sitepreview' which unfortunately I >>> don't have a way to resolve it as the domain transfer could only >>> be complete in another few days time. >>> >>> >>> Regards, >>> Jensen >>> >>> Franky Van Liedekerke wrote: >>> >>>> On Wed, Nov 18, 2009 at 10:17 AM, Jensen Neo >>>> <jen...@pi... >>>> <mailto:jen...@pi...>> wrote: >>>> >>>> Hi, >>>> >>>> I am having some problems with my phpesp. Everything well >>>> and fine on my >>>> development machine. >>>> However, after migration to the test server, I can't seem >>>> to get past >>>> the create survey 'general' tab. >>>> It simple re-route me by to the manage page and no records >>>> are created >>>> in the db. >>>> >>>> somebody help please... >>>> >>>> >>>> I'm very sorry, but you don't give us much to go on. I would >>>> recommend you check your config files and your webserver logs. >>>> >>>> Franky >>>> >>>> ------------------------------------------------------------------------ >>>> >>>> ------------------------------------------------------------------------------ >>>> Let Crystal Reports handle the reporting - Free Crystal >>>> Reports 2008 30-Day trial. Simplify your report design, >>>> integration and deployment - and focus on what you do best, core >>>> application coding. Discover what's new with Crystal Reports now. >>>> http://p.sf.net/sfu/bobj-july >>>> ------------------------------------------------------------------------ >>>> >>>> _______________________________________________ >>>> phpESP-general mailing list >>>> php...@li... >>>> <mailto:php...@li...> >>>> https://lists.sourceforge.net/lists/listinfo/phpesp-general >>>> >>> > > |
From: Franky V. L. <lie...@te...> - 2009-11-18 18:28:06
|
well ... I'll try to reproduce this myself, we'll see what happens :-) On Thu, 19 Nov 2009 01:35:56 +0800 Jensen Neo <jen...@pi...> wrote: > Hi Franky, > > Well i updated it to 2.1.3 as well as tried both configuration > changes but doesn't seem to solve the issue. > However, i noticed another configuration which may be the cause > '$ESPCONFIG['ME'] which is pointing to $SERVER['PHP_SELF']. > > anyway its locked in .fixed. I can't seem to override it using > the configuration file. > > Regards, > Jensen > > > Franky Van Liedekerke wrote: > > Hi, > > > > 2 things: > > - upgrade to 2.1.3 already (or the SVN version, which contains all > > fixes so far). > > - the issue is indeed with the $-sign. What you can do is escape > > the sign in the base_url: > > > > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > > $ESPCONFIG['HTTP_HOST'] . > > '/\$sitepreview/sst.edu.sg/modules/phpESP/ > > <http://sst.edu.sg/modules/phpESP/>'; > > > > or use the HTML-equivalent for it: > > > > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > > $ESPCONFIG['HTTP_HOST'] . > > '/$sitepreview/sst.edu.sg/modules/phpESP/ > > <http://sst.edu.sg/modules/phpESP/>'; > > > > I would try one of these to start... > > > > Franky > > > > On Wed, Nov 18, 2009 at 11:20 AM, Jensen Neo > > <jen...@pi... > > <mailto:jen...@pi...>> wrote: > > > > Hi Franky, > > > > My apologies. I wasn't too sure what sort of information would > > be require. > > Well, my site is at > > http://116.12.48.137/$sitepreview/sst.edu.sg/modules/phpESP/admin/manage.php. > > You can try it out over there. > > For the config files, basically i have added the following in > > additional to the common db login. > > > > // use http or https? > > $ESPCONFIG['proto'] = 'http://'; > > $ESPCONFIG['HTTP_HOST'] = '116.12.48.137'; > > > > // Base URL for phpESP > > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > > $ESPCONFIG['HTTP_HOST'] . > > '/$sitepreview/sst.edu.sg/modules/phpESP/ > > <http://sst.edu.sg/modules/phpESP/>'; > > > > I have added the above as I realise the css is not being loaded > > using the default values. I have suspected that issue could be > > because of my current URL '$sitepreview' which unfortunately I > > don't have a way to resolve it as the domain transfer could only > > be complete in another few days time. > > > > > > Regards, > > Jensen > > > > Franky Van Liedekerke wrote: > >> On Wed, Nov 18, 2009 at 10:17 AM, Jensen Neo > >> <jen...@pi... > >> <mailto:jen...@pi...>> wrote: > >> > >> Hi, > >> > >> I am having some problems with my phpesp. Everything well > >> and fine on my > >> development machine. > >> However, after migration to the test server, I can't seem > >> to get past > >> the create survey 'general' tab. > >> It simple re-route me by to the manage page and no records > >> are created > >> in the db. > >> > >> somebody help please... > >> > >> > >> I'm very sorry, but you don't give us much to go on. I would > >> recommend you check your config files and your webserver logs. > >> > >> Franky > >> > >> ------------------------------------------------------------------------ > >> > >> ------------------------------------------------------------------------------ > >> Let Crystal Reports handle the reporting - Free Crystal > >> Reports 2008 30-Day trial. Simplify your report design, > >> integration and deployment - and focus on what you do best, core > >> application coding. Discover what's new with Crystal Reports now. > >> http://p.sf.net/sfu/bobj-july > >> ------------------------------------------------------------------------ > >> > >> _______________________________________________ > >> phpESP-general mailing list > >> php...@li... > >> <mailto:php...@li...> > >> https://lists.sourceforge.net/lists/listinfo/phpesp-general > > > > |
From: Jensen N. <jen...@pi...> - 2009-11-18 17:36:08
|
Hi Franky, Well i updated it to 2.1.3 as well as tried both configuration changes but doesn't seem to solve the issue. However, i noticed another configuration which may be the cause '$ESPCONFIG['ME'] which is pointing to $SERVER['PHP_SELF']. anyway its locked in .fixed. I can't seem to override it using the configuration file. Regards, Jensen Franky Van Liedekerke wrote: > Hi, > > 2 things: > - upgrade to 2.1.3 already (or the SVN version, which contains all > fixes so far). > - the issue is indeed with the $-sign. What you can do is escape the > sign in the base_url: > > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . $ESPCONFIG['HTTP_HOST'] > . '/\$sitepreview/sst.edu.sg/modules/phpESP/ > <http://sst.edu.sg/modules/phpESP/>'; > > or use the HTML-equivalent for it: > > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . $ESPCONFIG['HTTP_HOST'] > . '/$sitepreview/sst.edu.sg/modules/phpESP/ > <http://sst.edu.sg/modules/phpESP/>'; > > I would try one of these to start... > > Franky > > On Wed, Nov 18, 2009 at 11:20 AM, Jensen Neo > <jen...@pi... > <mailto:jen...@pi...>> wrote: > > Hi Franky, > > My apologies. I wasn't too sure what sort of information would be > require. > Well, my site is at > http://116.12.48.137/$sitepreview/sst.edu.sg/modules/phpESP/admin/manage.php. > You can try it out over there. > For the config files, basically i have added the following in > additional to the common db login. > > // use http or https? > $ESPCONFIG['proto'] = 'http://'; > $ESPCONFIG['HTTP_HOST'] = '116.12.48.137'; > > // Base URL for phpESP > $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . > $ESPCONFIG['HTTP_HOST'] . > '/$sitepreview/sst.edu.sg/modules/phpESP/ > <http://sst.edu.sg/modules/phpESP/>'; > > I have added the above as I realise the css is not being loaded > using the default values. I have suspected that issue could be > because of my current URL '$sitepreview' which unfortunately I > don't have a way to resolve it as the domain transfer could only > be complete in another few days time. > > > Regards, > Jensen > > Franky Van Liedekerke wrote: >> On Wed, Nov 18, 2009 at 10:17 AM, Jensen Neo >> <jen...@pi... >> <mailto:jen...@pi...>> wrote: >> >> Hi, >> >> I am having some problems with my phpesp. Everything well and >> fine on my >> development machine. >> However, after migration to the test server, I can't seem to >> get past >> the create survey 'general' tab. >> It simple re-route me by to the manage page and no records >> are created >> in the db. >> >> somebody help please... >> >> >> I'm very sorry, but you don't give us much to go on. I would >> recommend you check your config files and your webserver logs. >> >> Franky >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day >> trial. Simplify your report design, integration and deployment - and focus on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> phpESP-general mailing list >> php...@li... <mailto:php...@li...> >> https://lists.sourceforge.net/lists/listinfo/phpesp-general >> > > |