Under Pharo 3 how to see the Seaside Control Panel ?

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

Under Pharo 3 how to see the Seaside Control Panel ?

Rene Paul Mages (ramix)
Hello seasiders,

Under Ubuntu 13.04 my apache2 is perfectly responding (port 8080) but
nothing visible has happened when I have evaluated in a  workspace :
       ZnZincServerAdaptor startOn: 8080
I have checked that Zinc package is present in my pharo image ( I am
running Pharo 3 ) :
     http://www.ffii.fr/ramix/pharo/ZnZincServerAdaptor.png

When I follow step by step the directives of this page :
       http://www.seaside.st/download/pharo
in particular :
  Starting the Zinc Web Server
      Open the ’Seaside Control Panel’ in the ’Tools’ submenu of the
’World’ menu
I can't see the Seaside Control Panel in the submenu 'Tools' :
      http://www.ffii.fr/ramix/pharo/SeasideControlPanel.png

Thx for your help
--
All the best
Rene Mages ( GnuPG_key 1024D/2CC455D9 )
http://renemages.wordpress.com/smalltalk/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Under Pharo 3 how to see the Seaside Control Panel ?

Sven Van Caekenberghe-2
Rene,

On 06 Feb 2014, at 17:08, Rene Mages (ramix) <[hidden email]> wrote:

> Hello seasiders,
>
> Under Ubuntu 13.04 my apache2 is perfectly responding (port 8080) but
> nothing visible has happened when I have evaluated in a  workspace :
>       ZnZincServerAdaptor startOn: 8080

If apache is running (serving content) on port 8080, nobody else can use the same port.

What happens when you do

  curl http://localhost:8080

on your machine ?

Sven

> I have checked that Zinc package is present in my pharo image ( I am
> running Pharo 3 ) :
>     http://www.ffii.fr/ramix/pharo/ZnZincServerAdaptor.png
>
> When I follow step by step the directives of this page :
>       http://www.seaside.st/download/pharo
> in particular :
>  Starting the Zinc Web Server
>      Open the ’Seaside Control Panel’ in the ’Tools’ submenu of the
> ’World’ menu
> I can't see the Seaside Control Panel in the submenu 'Tools' :
>      http://www.ffii.fr/ramix/pharo/SeasideControlPanel.png
>
> Thx for your help
> --
> All the best
> Rene Mages ( GnuPG_key 1024D/2CC455D9 )
> http://renemages.wordpress.com/smalltalk/seaside
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

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

Re: Under Pharo 3 how to see the Seaside Control Panel ?

Rene Paul Mages (ramix)
2014-02-06 Sven Van Caekenberghe <[hidden email]>:

> Rene,
>
> On 06 Feb 2014, at 17:08, Rene Mages (ramix) <[hidden email]> wrote:
>
>> Hello seasiders,
>>
>> Under Ubuntu 13.04 my apache2 is perfectly responding (port 8080) but
>> nothing visible has happened when I have evaluated in a  workspace :
>>       ZnZincServerAdaptor startOn: 8080
>
> If apache is running (serving content) on port 8080, nobody else can use the same port.
>
> What happens when you do
>
>   curl http://localhost:8080
>
> on your machine ?

rmages@hp2013:~$ curl http://localhost:8080
<html><body><h1>It works!</h1>
<p>This is the default web page for this server.</p>
<p>The web server software is running but no content has been added, yet.</p>
</body></html>


Thanks a lot Sven for your help.
--
All the best.
Rene Mages ( GnuPG_key 1024D/2CC455D9 )
http://renemages.wordpress.com/smalltalk/pharo
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Under Pharo 3 how to see the Seaside Control Panel ?

Sven Van Caekenberghe-2

On 06 Feb 2014, at 18:14, Rene Mages (ramix) <[hidden email]> wrote:

> 2014-02-06 Sven Van Caekenberghe <[hidden email]>:
>> Rene,
>>
>> On 06 Feb 2014, at 17:08, Rene Mages (ramix) <[hidden email]> wrote:
>>
>>> Hello seasiders,
>>>
>>> Under Ubuntu 13.04 my apache2 is perfectly responding (port 8080) but
>>> nothing visible has happened when I have evaluated in a  workspace :
>>>      ZnZincServerAdaptor startOn: 8080
>>
>> If apache is running (serving content) on port 8080, nobody else can use the same port.
>>
>> What happens when you do
>>
>>  curl http://localhost:8080
>>
>> on your machine ?
>
> rmages@hp2013:~$ curl http://localhost:8080
> <html><body><h1>It works!</h1>
> <p>This is the default web page for this server.</p>
> <p>The web server software is running but no content has been added, yet.</p>
> </body></html>

That means apache is answering.
Try starting Seaside on another port, like 9090.

  ZnZincServerAdaptor startOn: 9090.

And then try

  $ curl http://localhost:9090

> Thanks a lot Sven for your help.
> --
> All the best.
> Rene Mages ( GnuPG_key 1024D/2CC455D9 )
> http://renemages.wordpress.com/smalltalk/pharo
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

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

Re: Under Pharo 3 how to see the Seaside Control Panel ?

Rene Paul Mages (ramix)
2014-02-06 Sven Van Caekenberghe <[hidden email]>:

>
> On 06 Feb 2014, at 18:14, Rene Mages (ramix) <[hidden email]> wrote:
>
>> 2014-02-06 Sven Van Caekenberghe <[hidden email]>:
>>> Rene,
>>>
>>> On 06 Feb 2014, at 17:08, Rene Mages (ramix) <[hidden email]> wrote:
>>>
>>>> Hello seasiders,
>>>>
>>>> Under Ubuntu 13.04 my apache2 is perfectly responding (port 8080) but
>>>> nothing visible has happened when I have evaluated in a  workspace :
>>>>      ZnZincServerAdaptor startOn: 8080
>>>
>>> If apache is running (serving content) on port 8080, nobody else can use the same port.
>>>
>>> What happens when you do
>>>
>>>  curl http://localhost:8080
>>>
>>> on your machine ?
>>
>> rmages@hp2013:~$ curl http://localhost:8080
>> <html><body><h1>It works!</h1>
>> <p>This is the default web page for this server.</p>
>> <p>The web server software is running but no content has been added, yet.</p>
>> </body></html>
>
> That means apache is answering.
> Try starting Seaside on another port, like 9090.
>
>   ZnZincServerAdaptor startOn: 9090.
>
> And then try
>
>   $ curl http://localhost:9090

Now Seaside 3.1 is running perfectly on my laptop.

Thanks a lot Sven for your great help.
--
All the best.
Rene Mages ( GnuPG_key 1024D/2CC455D9 )
http://renemages.wordpress.com/smalltalk/pharo
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside