Subject Re: ADOdatabase not working in signup.prg
From Akshat Kapoor <akshat.kapoor@kapoorsons.in>
Date Mon, 24 Aug 2020 16:06:55 +0530
Newsgroups dbase.getting-started

On 24.08.2020 15:41, Gaetano wrote:
>
> Good Morning Akshat,
>
> I have tried both the brackets and the option=512, no change.
>
>
> I tried it on my local MySQL instance and the code worked, just once,
> then no more...
>
> I checked the Apache logs and this may provide some info for experts:
>
> [Mon Aug 24 19:55:49.316087 2020] [win32:error] [pid 12440:tid 1884]
> [client 127.0.0.1:50497] AH02102: C:/xampp/cgi-bin/css/normalize.css is
> not executable; ensure interpreted scripts have "#!" or "'!" first line,
> referer: http://127.0.0.1/cgi-bin/SO2.exe
> [Mon Aug 24 19:55:49.316087 2020] [cgi:error] [pid 12440:tid 1884]
> (9)Bad file descriptor: [client 127.0.0.1:50497] AH01222: don't know how
> to spawn child process: C:/xampp/cgi-bin/css/normalize.css, referer:
> http://127.0.0.1/cgi-bin/SO2.exe

Good Afternoon Gaetano,
I have never used web apps. You may get a better response on the web
apps group.

Leave the web app,
Try a normal prg with the following code.

adodb = new adodatabase()
adodb.connectionstring = your connection string
adodb.active = true

If it executes successfully then there is error in web code else there
is error in connection string.

Try logging into mysql using phpmyadmin or whatever database
administrator you are using.

Success will tell you the status of userid and or password.

Another question are you sure there is error in login and not in some
code after that.
To check this write a simple web app that just displays a message
"Successful connection" without using any css. Just a simple code with
bare minimum lines (like 3 lines only written above)

Regards
Akshat