Conversation
Oxwall use php pdo, not mysql. This module is not available in php 7 and the installer stucks in requeriments page, but the program is installable once this requeriment is gone.
|
This is working! thank you! |
|
However until php <7 is removed completely, users will still run those old versions. So removing that extension from the text file is not the right way to do this. I have also done a pull request and submitted it. Mine checks if the php version is > 6, and if true then it removes the mysql extension from the array before processing the array.. This allows < php 6 to still be used. |
|
Oxwall don't uses the deprecated mysql extension (can't fin a single call to mysql using github search), but the PDO extension, so, the module being required is a bug. |
|
ok c-cesar fair enough, yep thats a bug then. I think there are error messages that refer to mysql 5.0 minimum, so maybe we should remove those as well. I will cancel my pull request.. :) |
Oxwall use php pdo, not mysql. This module is not available in php 7 and the installer stucks in requeriments page, but the program is installable once this requeriment is gone.