Re: [AOLSERVER] Problem with in a web page

2008-11-29 Thread Thibault Fouache
Thank all for your answers. No we've got two problems : first one is how to enable the singlescript proccesing and the second is aolserver can't find the package sqlite3 when using package require but yesterday it was working and not today. We've changed nothing... Thanks in advance, Thibault

Re: [AOLSERVER] Problem with in a web page

2008-11-28 Thread Thibault Fouache
Thanks a lot Russell for your quick answer :) It seems like the server can't understand that the close brace is located at the end of the loop! As I would like the entire loop to be interpreted I would like to now if somebody has encounter this problem? This is a school project and this

Re: [AOLSERVER] Problem with in a web page

2008-11-28 Thread Dossy Shiobara
Thibault Fouache wrote: Hello, I've currently encouter a problem in one of my web pages (fire_blacklist.adp). You can find in this package the page, its backend, its api and the error. That says that ther is a close brace bu this close brace is not missing. Can somebody help me? I would

Re: [AOLSERVER] Problem with in a web page

2008-11-28 Thread Eric Lee
Something to be aware of is that the parser does not ignore braces that are in comments, so if you have: # if { $foo == abc } { change it to: # if { $foo == abc } {} to avoid complaints about unclosed braces. Eric At 06:49 AM 11/28/2008, you wrote: Thanks a lot Russell for your quick answer

Re: [AOLSERVER] Problem with in a web page

2008-11-27 Thread russell muetzelfeldt
On 28/11/2008, at 4:26 AM, Thibault Fouache wrote: That says that ther is a close brace bu this close brace is not missing. Can somebody help me? you are actually missing a close brace, though not necessarily at line 27 - follow through the entire script, and you'll see that there's one

Re: [AOLSERVER] Problem with in a web page

2008-11-27 Thread russell muetzelfeldt
On 28/11/2008, at 9:14 AM, russell muetzelfeldt wrote: On 28/11/2008, at 4:26 AM, Thibault Fouache wrote: That says that ther is a close brace bu this close brace is not missing. Can somebody help me? you are actually missing a close brace, though not necessarily at line 27 - follow