Database connect has wrong path in PHP

Hi thanks Teodor. But i have downloaded 3.5.2 and now another problem came up. thanks for all the updates and work

i have tried again.. deleted the folder again dmxConnectLib... let it be recreated...

the problem came in my LOGIN file....

somehow it created the FULL path to the Connection folder

eg.

<?php require('../../../dmxConnectLib/dmxConnect.php'); $app = new \lib\App(); $app->define(<<<'JSON' [ "file:///C:/wamp/www/mackie2020/dmxConnect/modules/Connections/mackconnection", { "name": "AdminLogin", "module": "auth", "action": "provider",

i then manually changed it to

<?php require('../../../dmxConnectLib/dmxConnect.php'); > $app = new \lib\App(); > > $app->define(< [ > "Connections/mackconnection", > { > "name": "AdminLogin", > "module": "auth", > "action": "provider",

and its working.. even if I resave the server action.. then at least it remains only "Connections/mackconnection",

How did you create this database connection?

Did you use the new experimental globals in server connect to manage it all?

Hi George.

The connection for the database was already setup prior to 3.5.0 release.
Basically the complete site was setup and working prior to 3.5.0 release.
So the connection was the same. I did not use the experimental global at all.

It was only in the login action file when i resaved that changed the path.
All the other files were fine…
I have changed the path manually as above. And all working again… even if I resave it now retains the correct path to the connection… weird,… but its working…

Thank you