Re: [Gambas-user] gb.web

2013-02-27 Thread Christer Johansson
You can't get this working with Apache 2 standard out of the box installs. You must configure Apache to recognise Gambas webpages as CGI scripts to call the gbw3 interpreter. I could send you an archive with a test project an a German PDF explaining the Apache2 configuration for

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Ron
Do you run a gambas version with this patch in it, or without it? https://code.google.com/p/gambas/issues/detail?id=402 Regards, Ron. What kind of syntax are you using to communicate with the database? Give us some example, please. Csaba 2013/2/26 Jorge Carrión sho...@gmail.com I have a

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Fabien Bodard
It look like a quote problem Le 26 févr. 2013 22:09, M. Cs. mohar...@gmail.com a écrit : What kind of syntax are you using to communicate with the database? Give us some example, please. Csaba 2013/2/26 Jorge Carrión sho...@gmail.com I have a serious problem with mysql server. I'm

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Jorge Carrión
Well... with Gambas2 I have the problem that my Mysql server, cut by time-out the conexions after a few minutes of no activities. The users complains that, so, y develop this module that re-open the connection if there is an error. Usually I call the functions inside passing a sql string like

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Ron
If you have access to mysql conf you can also extend the timeout value of the server Change wait_timeout parameter value to prevent database connection lost. Add this to the [mysqld] section of the config file $ sudo vi /etc/mysql/my.conf wait_timeout= 2147483 $ sudo

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Christer Johansson
Well... with Gambas2 I have the problem that my Mysql server, cut by time-out the conexions after a few minutes of no activities. The users complains that, so, y develop this module that re-open the connection if there is an error. Usually I call the functions inside passing a sql string

Re: [Gambas-user] gb.web

2013-02-27 Thread Tobias Boege
On Wed, 27 Feb 2013, Christer Johansson wrote: You can't get this working with Apache 2 standard out of the box installs. You must configure Apache to recognise Gambas webpages as CGI scripts to call the gbw3 interpreter. I could send you an archive with a test project an a German

Re: [Gambas-user] A few questions

2013-02-27 Thread Tobias Boege
On Mon, 25 Feb 2013, Astrostream wrote: Hello Everyone, I am new to gambas but not to programming, and I just have a few questions that I cannot find the answers to. Any ideas or help that can lead to some answer would be great. 1) a) Am i able to call a function from bash of a running

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Jorge Carrión
I think that my version is without the patch. I'm using 3.4.0 version wich is in the launchpad.nemh repository (I need a repository for my client's actualization) Do you think that is the issue described in your link?... sounds familiar, indeed. Regards 2013/2/27 Ron r...@cyberjunky.nl Do you

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Alexie
The pre-released 3.4.0 does NOT contain the patch, but it is in the official 3.4.0 release. If you install from launchpad, i am not sure what the source is ... 2013/2/27 Jorge Carrión sho...@gmail.com I think that my version is without the patch. I'm using 3.4.0 version wich is in the

Re: [Gambas-user] gb.web

2013-02-27 Thread Fabien Bodard
lighttpd is quite simple to configure 2013/2/27 Tobias Boege tabo...@gmail.com On Wed, 27 Feb 2013, Christer Johansson wrote: You can't get this working with Apache 2 standard out of the box installs. You must configure Apache to recognise Gambas webpages as CGI scripts to call

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Jorge Carrión
Ok. I've changed the my.cnf but... the original value was 30... Isn't too big the 2147483 value? That value in seconds means more than 24 days. I've set it to 10800, what means 3 hours. Time enough to inactivitie of any user... I guess. Don't know if it's effective. I will try and tell you. Thank

Re: [Gambas-user] MySQL language problems

2013-02-27 Thread Jorge Carrión
At the moment I've followed de Ron suggestion. If it's work, I wait for Kendec (nemh maintainer) to actualize the repository Regards 2013/2/27 Alexie uale...@gmail.com The pre-released 3.4.0 does NOT contain the patch, but it is in the official 3.4.0 release. If you install from

[Gambas-user] Fwd: [Full-disclosure] Gambas 3.3.4 Directory hijack vulnerability

2013-02-27 Thread Ron
Fyi... Regards, Ron -- Doorgestuurd bericht -- Van: Larry W. Cashdollar lar...@me.com Datum: 27 feb. 2013 19:31 Onderwerp: [Full-disclosure] Gambas 3.3.4 Directory hijack vulnerability Aan: Full Disclosure full-disclos...@lists.grok.org.uk Cc: Gambas 3.3.4 Directory hijack

Re: [Gambas-user] How capture exit from FtpClient?

2013-02-27 Thread Tobias Boege
On Mon, 25 Feb 2013, Jorge Carri?n wrote: Tobi, If your code is on Gambas, I can try manage with it. I'm not a C programmer... by the way: Is ftpClient written in Gambas? Regards The project I used to test my class is attached. Note that a) it is highly experimental and possibly buggy code

Re: [Gambas-user] How capture exit from FtpClient?

2013-02-27 Thread Jorge Carrión
Thank you Tobi. Working on it... 2013/2/27 Tobias Boege tabo...@gmail.com On Mon, 25 Feb 2013, Jorge Carri?n wrote: Tobi, If your code is on Gambas, I can try manage with it. I'm not a C programmer... by the way: Is ftpClient written in Gambas? Regards The project I used to test