GemTools Seaside Gems menu command

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

GemTools Seaside Gems menu command

dario trussardi
My note about GemTools workspace configuration 
and GemTools / Admin / Seaside gems start - stop - restart .


I do the next workspace configuration  ( how found in the GemTols workspace)   for setup the ports of WAFastCGIAdaptor

"Specify FastCGI for runSeasideGems30"
WAGemStoneRunSeasideGems default
name: 'FastCGI';
adaptorClass: WAFastCGIAdaptor;
ports: #(9020 9021 9022).


With this configurations the Seaside gems  menu option don't work because the system work  on  FastCGI-server-9020.pid   file/s ( based on name: parameter )


For work correctly i need to change the workspace configuration in:

"Specify FastCGI for runSeasideGems30" WAGemStoneRunSeasideGems default name: 'WAFastCGIAdaptor'; adaptorClass: WAFastCGIAdaptor; ports: #(9020 9021 9022).


Now all works fine.

I hope these notes may serve.
Dario