Re: [Gambas-user] run gambas bash scripts

2012-06-28 Thread Demosthenes Koptsis
Thanks Benoit! On 06/29/2012 12:28 AM, Benoît Minisini wrote: > Le 28/06/2012 22:41, Demosthenes Koptsis a écrit : >> ok, >> >> now something else. >> >> i test a server page created with gambas on apache. >> >> i configured apache to run gambas server page as cgi and it run it very >> good. >> s

Re: [Gambas-user] run gambas bash scripts

2012-06-28 Thread Benoît Minisini
Le 28/06/2012 22:41, Demosthenes Koptsis a écrit : > ok, > > now something else. > > i test a server page created with gambas on apache. > > i configured apache to run gambas server page as cgi and it run it very > good. > so far there is no mod_gambas3 for apache as i know and i had to run the > s

Re: [Gambas-user] run gambas bash scripts

2012-06-28 Thread Demosthenes Koptsis
ok, now something else. i test a server page created with gambas on apache. i configured apache to run gambas server page as cgi and it run it very good. so far there is no mod_gambas3 for apache as i know and i had to run the server page as cgi. is there any other way to config apache to run

Re: [Gambas-user] run gambas bash scripts

2012-06-28 Thread Benoît Minisini
Le 28/06/2012 21:43, Demosthenes Koptsis a écrit : > i want to write a cgi script like php for apache but with gambas language > > which is better approach. > > to write it as cgi with > > #!/usr/local/bin/gbs3 > > or with > #!/usr/bin/env gbw3 > as server page > > thanks !!! > None of them. The f

Re: [Gambas-user] run gambas bash scripts

2012-06-28 Thread Demosthenes Koptsis
ok i found it at Server Pages Thanks !! Στις 28/6/2012 22:39, ο/η Benoît Minisini έγραψε: > Le 28/06/2012 21:22, Demosthenes Koptsis a écrit : >> I think somewhere i saw it in the past >> >> can anyone know if we can write scripts running from bash like that: >> i think gbr3 is not the right

Re: [Gambas-user] run gambas bash scripts

2012-06-28 Thread Demosthenes Koptsis
i want to write a cgi script like php for apache but with gambas language which is better approach. to write it as cgi with #!/usr/local/bin/gbs3 or with #!/usr/bin/env gbw3 as server page thanks !!! Στις 28/6/2012 22:39, ο/η Benoît Minisini έγραψε: > Le 28/06/2012 21:22, Demosthenes Koptsis

Re: [Gambas-user] run gambas bash scripts

2012-06-28 Thread Benoît Minisini
Le 28/06/2012 21:22, Demosthenes Koptsis a écrit : > I think somewhere i saw it in the past > > can anyone know if we can write scripts running from bash like that: > i think gbr3 is not the right bin to do this > > #!/usr/local/bin/gbr3 > > ' Gambas module file > > Public Sub Main() > Pri

[Gambas-user] run gambas bash scripts

2012-06-28 Thread Demosthenes Koptsis
I think somewhere i saw it in the past can anyone know if we can write scripts running from bash like that: i think gbr3 is not the right bin to do this #!/usr/local/bin/gbr3 ' Gambas module file Public Sub Main() Print "Hello World" End ---