Cheers Stephen,
Looking at that server.lisp file you mentioned I noticed that Weblocks
pushes it's dispatcher on the end of the list.
That gave me the idea of setting up my dispatchers first and then
loading Weblocks, still no luck though.
I'm trying to use "/" as a normal Hunchentoot welcome page and stuff
in "/weblocks" used by Weblocks.
; Start the webserver
(defparameter *myserver* (hunchentoot:start-server :port 4242 :mod-
lisp-p t))
; Setup some of the general URL's
(setf *dispatch-table*
(list (create-regex-dispatcher "^/$" 'main-page)))
; Start Weblocks
(weblocks:start-weblocks)
(weblocks:defwebapp our-application :prefix "/weblocks/")
Am I going about this the wrong way?
Thanks for the help, Dave.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"weblocks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/weblocks?hl=en
-~----------~----~----~----~------~----~------~--~---