Phpdeps is a folder I used to compile all the dependencies. It should not be needed since PHP is compiled statically. Well, at least that was the plan. What does the php log file say?
I’m not on my PC right now, but I think you need to enable it first on php.ini. Which reminds me that you have to explictly add the xml extension to the /mnt/DroboFS/Shares/DroboApps/php/etc/php.ini file. Something like this:
error_log and extension vars were already in the php.ini file, however I had to change the value for extension to xml.so (was json.so) and i added date.timezone=“Europe/Oslo”.
Now everything works as expected, no errors for xml_parser_create() !
Ah, OK, I get it now. I was so focused on getting a log file, I thought for a moment that I the extension line was controlling the logging. Added json.so back, and put in session.so, and now my app works.