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


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


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 problem is quite misunderstandable for me
 ...

 Thanks a lot in advance :)
 Thibault




--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


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 like to say that this page was working well on an other httpd
 (tcl) that I cannot use now :).

I see:

%foreach {bChoice bValueChoice bAdress bValueAdress
bProtocol bValueProtocol bPort bValuePort} $queryBlacklist {%

Did you turn singlescript processing on?  If not, this is an ADP script
block that has an unclosed brace, the at the end.


-- 
Dossy Shiobara  | [EMAIL PROTECTED] | http://dossy.org/
Panoptic Computer Network   | http://panoptic.com/
  He realized the fastest way to change is to laugh at your own
folly -- then you can let go and quickly move on. (p. 70)


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


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 :)
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 problem is quite misunderstandable 
for me ...



Thanks a lot in advance :)
Thibault





--
AOLserver - http://www.aolserver.com/


To Remove yourself from this list, simply send an email to 
[EMAIL PROTECTED] with the
body of SIGNOFF AOLSERVER in the email message. You can leave the 
Subject: field of your email blank.



--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


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  
more open brace than close brace. perhaps you missed something in a  
copy/paste from the working version?


cheers

Russell


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.


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 through the entire script, and you'll see that  
there's one more open brace than close brace. perhaps you missed  
something in a copy/paste from the working version?


sorry, please ignore me... my syntax highlighter was just confused by  
the lack of indent on line 32...


:(

R.


--
AOLserver - http://www.aolserver.com/

To Remove yourself from this list, simply send an email to [EMAIL PROTECTED] 
with the
body of SIGNOFF AOLSERVER in the email message. You can leave the Subject: 
field of your email blank.