here is the process that i went through recently to break my image:
my image was not responding, so i stopped and restarted my server with
the seaside control panel a few times, no luck..
then, i accidentally shut down window for the seaside control panel..
when i opened it back up, the three buttons for start, stop, and one
other one.. were missing..
it says the following:
Type: WAComancheAdaptor
Encoding: utf-8
seaside-8080 [running] port: 8080
but i cannot access the server..
i tried to fire up another server, and now i have two servers in the
list.. both on 8080, only one of them running..
but i still can't access my image..
how can i:
delete the adaptor that is running..
troubleshoot why i can't access my image..
ideas?
thanks!
--
----
peace,
sergio
photographer, journalist, visionary
http://www.CodingForHire.comhttp://www.coffee-black.comhttp://www.painlessfrugality.comhttp://www.twitter.com/sergio_101http://www.facebook.com/sergio101
i am ALMOST there..
i am reading the tutorial for deployment, and i have a few issues..
from the document:
-- Edit the configuration of the Pier application located in the
/seaside/config:
Set the Server Hostname to: http://www.YOURDOMAIN.com
this seems to be missing from my config
-- Set the Deployment Mode to true - this, too... where would i find this?
also, my /config is totally available to anyone who visits the site..
i changed it to authconfiguration, thinking that it would ask for
authentication before letting anyone in..
unfortunately, it does, but the u/p i set up as a login don't work...
where does this get handled?
thanks!
--
----
peace,
sergio
photographer, journalist, visionary
http://www.CodingForHire.comhttp://www.coffee-black.comhttp://www.painlessfrugality.comhttp://www.twitter.com/sergio_101http://www.facebook.com/sergio101
according to the documentation here:
http://book.seaside.st/book/advanced/deployment/deployment-preparing?_s=g_M…
i set selected config, then added WAAuthConfiguration
this made my site ask for a mystery username and password every time i
tried to view anything on it..
so reverted back to the previous image, and did this:
| application |
application := WADispatcher default handlerAt: 'config'.
application configuration
addParent: WAAuthConfiguration instance.
application
preferenceAt: #login put: 'admin';
preferenceAt: #passwordHash put: (GRPlatform current
secureHashFor: 'seaside').
application
addFilter: WAAuthenticationFilter new.
which chokes here:
application := WADispatcher default handlerAt: 'config'.
with:
upon viewing the point, i get:
mesageNotUnderstood: receiver of new is nil
ideas?
--
----
peace,
sergio
photographer, journalist, visionary
http://www.CodingForHire.comhttp://www.coffee-black.comhttp://www.painlessfrugality.comhttp://www.twitter.com/sergio_101http://www.facebook.com/sergio101