seaside and apache

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

seaside and apache

redblue last
Hi.

I'm having trouble with using seaside with apache 2.2 on win32. I'm running seaside in squeak and starting the web server with:

WAKom starton:9090

On apache in my httpd.conf I've got:

<VirtualHost *:80>
   ProxyPass /seaside/ http://localhost:9090/seaside/
   ProxyPassReverse /seaside/ http://localhost:9090/seaside/   
</VirtualHost>

Apache is listening on port 80.

When I enter http://localhost/seaside/alltests in the browser and then click on the "html" tab I get the html test component with no problem. However if I click on any of the submit buttons i get returned to the http://localhost/seaside/alltests page without seeing the result of my action. This happens with every button that does a POST request, ie any form.

If I go directly to the comanche server with http://localhost:9090/seaside/alltests and go to the html tab every button works ok.

Any ideas on what might be wrong ?

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside and apache

Ramon Leon-4
>
> WAKom starton:9090
>
> On apache in my httpd.conf I've got:
>
> <VirtualHost *:80>
>    ProxyPass /seaside/ http://localhost:9090/seaside/
>    ProxyPassReverse /seaside/ http://localhost:9090/seaside/   
> </VirtualHost>
>
> Apache is listening on port 80.
>
>
> Any ideas on what might be wrong ?
>

Here's my local development setup, works great...

<VirtualHost *:80>
     ServerAdmin [hidden email]
     ServerName localhost
     RewriteEngine On
     ProxyVia Block
     ProxyPreserveHost On
     RewriteCond C:/Inetpub/websites/%{REQUEST_FILENAME} !-f
     RewriteRule ^/(.*)$ http://localhost:90/seaside/pier/$1 [P,L]
</VirtualHost>

Apache serves static files if they exist, else forwards the request to a
seaside app.

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside and apache

redblue last
>
>
> Here's my local development setup, works great...
>
> <VirtualHost *:80>
>      ServerAdmin [hidden email]
>      ServerName localhost
>      RewriteEngine On
>      ProxyVia Block
>      ProxyPreserveHost On
>      RewriteCond C:/Inetpub/websites/%{REQUEST_FILENAME} !-f
>      RewriteRule ^/(.*)$ http://localhost:90/seaside/pier/$1 [P,L]
> </VirtualHost>
>
> Apache serves static files if they exist, else forwards the request to a
> seaside app.

When you click "Toggle Halos" and then go to "System Browser" does it
work properly ? With your setup if I click on any of the classes I get
a 502 Proxy Error "Error reading from remote server"
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside and apache

redblue last
Seems everything works fine on apache 1.3 (win32) but not my original
apache 2.2 (win32).
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: seaside and apache

Ramon Leon-5
> From: [hidden email]
> [mailto:[hidden email]] On Behalf
> Of redblue last
> Sent: Wednesday, July 05, 2006 11:33 PM
> To: The Squeak Enterprise Aubergines Server - general discussion.
> Subject: Re: [Seaside] seaside and apache
>
> Seems everything works fine on apache 1.3 (win32) but not my
> original apache 2.2 (win32).

I'm running 2.0.54 and everything works fine here.

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: seaside and apache

redblue last
After uninstalling nod32 antivirus everything is back to normal and
apache 2.2 works.
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside