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
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
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
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
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
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
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
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
---