Hi all,
I am learning to program and I am currently trying SBCL 1.0.6. via Cusp v0.8.174 on Windows Vista. The first time I started the server on port 4242 to sample the test page everything seemed to work just fine. Any later try to access the test page, however, gives me the following message in both IE7 and Chrome:
 

"Hunchentoot Default Page

This the Hunchentoot default page. You're most likely seeing it because the server administrator hasn't set up a custom default page yet.

Hunchentoot is a web server written in Common Lisp. More info about Hunchentoot can be found at http://weitz.de/hunchentoot/.


Hunchentoot 0.11.1 (SBCL 1.0.6) at localhost:4242"

and it ends there. But before trying to access the page, I get the following error messages when loading hunchentoot of which messages I have no idea what they mean:

 

Unable to load foreign library (LIBSSL).

Error opening shared object "libssl32.dll":

126.

[Condition of type CFFI:LOAD-FOREIGN-LIBRARY-ERROR]

0: [RETRY] Try loading the foreign library again.

1: [USE-VALUE] Use another library instead.

2: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "reload" {A70BD89}>.

3: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "reload" {A70BD89}> as having been successful.

4: [ABORT] Return to SLIME's top level.

5: [CLOSE-CONNECTION] Close SLIME connection

6: [ABORT] Exit debugger, returning to top level.

]> 3

Undefined alien: "SSL_get_version"

[Condition of type UNDEFINED-ALIEN-ERROR]

0: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "ffi" {A70BDA9}>.

1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "ffi" {A70BDA9}> as having been successful.

2: [ABORT] Return to SLIME's top level.

3: [CLOSE-CONNECTION] Close SLIME connection

4: [ABORT] Exit debugger, returning to top level.

]> 1

Undefined alien: "SSL_read"

[Condition of type UNDEFINED-ALIEN-ERROR]

0: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "streams" {A70BDD9}>.

1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {A70BD69}> on #<ASDF:CL-SOURCE-FILE "streams" {A70BDD9}> as having been successful.

2: [ABORT] Return to SLIME's top level.

3: [CLOSE-CONNECTION] Close SLIME connection

4: [ABORT] Exit debugger, returning to top level.

 
 
Then when I do
 
(asdf:oos 'asdf:load-op :hunchentoot-test)
 
I get the following:
 
; loading system definition from
; C:\Program Files\eclipse\plugins\jasko.tim.lisp.libs_1.0.0\libs\hunchentoot-0.11.1\hunchentoot-test.asd
; into #<PACKAGE "ASDF0">
; registering #<SYSTEM :HUNCHENTOOT-TEST {B6AD791}> as HUNCHENTOOT-TEST
 
error opening #P"C:\\Users\\hmaseko\\Desktop\\eclipse\\plugins\\jasko.tim.lisp.libs_1.0.0\\libs\\hunchentoot-0.11.1\\test\\fz.jpg":
No such file or directory
[Condition of type SB-INT:SIMPLE-FILE-ERROR]
0: [RETRY] Retry performing #<ASDF:LOAD-OP NIL {B535AF1}> on #<ASDF:CL-SOURCE-FILE "test" {B6F3DE1}>.
1: [ACCEPT] Continue, treating #<ASDF:LOAD-OP NIL {B535AF1}> on #<ASDF:CL-SOURCE-FILE "test" {B6F3DE1}> as having been successful.
2: [ABORT] Return to SLIME's top level.
3: [CLOSE-CONNECTION] Close SLIME connection
4: [ABORT] Exit debugger, returning to top level.
]> 1
 
I am wondering why at some point the path is pointing to my desktop. True, I kept my Eclipse SDK there for a while before moving it to it's permanent location in c:/program files/ but why is the error occuring? There is something I am doing wrong. What is it?
 
Regards,
Harrison.