A simple fix for the “version.php” file
-
Please change the code in the "version.php" file
There are closed topics where other users have already reported this same problem with PHP warnings.
"Warning: Constant SQLITE_DRIVER_VERSION already defined in /home/.../public_html/free/wp-content/plugins/sqlite-database-integration/version.php on line 9"
BEFORE:
<?php
/**
* The version of the SQLite driver.
*
* This constant needs to be updated on plugin release!
*/
define( 'SQLITE_DRIVER_VERSION', '2.2.16' );
AFTER
<?php
/**
* The version of the SQLite driver.
*
* This constant needs to be updated on plugin release!
*/
if ( !defined('SQLITE_DRIVER_VERSION')) {
define( 'SQLITE_DRIVER_VERSION', '2.2.16' );
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.