-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLite: Both PDO and vendor specific driver needed according to installation wizard and running instance #481
Comments
cc @icewind1991 |
I can't find any part in the setup code that uses the sqlite extension |
still an issue with nextcloud 10 @pmattern ? |
@icewind1991, @nickvergessen |
@LukasReschke maybe we should adjust the tests? |
* we only require the PDO driver * fixes #481 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* we only require the PDO driver * fixes #481 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Confirming the problem is fixed in latest master under the same conditions as depicted in the first posting (except the various components were of course updated in the meantime). |
* PHP: Both PostgreSQL (nextcloud/server#367) and SQLite (nextcloud/server#481) are handled by PDO in recent Nextcloud versions * Apache: Distributed configuration files (".htaccess") need to be readable only
…he configuration * PHP: Both PostgreSQL (nextcloud/server#367) and SQLite (nextcloud/server#481) are handled by PDO in recent Nextcloud versions * Apache: Distributed configuration files (".htaccess") need to be readable only
…he configuration * PHP: Both PostgreSQL (nextcloud/server#367) and SQLite (nextcloud/server#481) are handled by PDO in recent Nextcloud versions * Apache: Distributed configuration files (".htaccess") need to be readable only
Both PostgreSQL (nextcloud/server#367) and SQLite (nextcloud/server#481) are handled by PDO in recent Nextcloud versions.
Both the installation wizard and running Nextcloud instances are claiming that both the PDO ("pdo_sqlite") and vendor specific ("sqlite3") driver are needed.
If the vendor specific driver ("sqlite3") is missing there's a warning
right when the wizard should come up or the URL of a running instance (which had been setup with both drivers available before) is opened.
If the PDO driver is missing there's a warning
upon completing the wizard while a running instance (set up as depicted in previous paragraph) simply turns into a blank page.
To my knowledge it isn't common practice to use the two drivers in parallel suggesting this is a bug.
It looks somewhat similar to the problem of PostgreSQL addressed in #367.
Seen running 09e1218 or release 10.0.0 on Arch Linux x86_64, SQLite 3.14.2, Apache 2.4.23, PHP 7.0.11 via mod_php.
The text was updated successfully, but these errors were encountered: