Givan

Results 364 comments of Givan

Click on the plugin name or plugin settings in the plugins list https://demo.vvveb.com/admin/index.php?module=plugins/captcha/settings ![Image](https://github.com/user-attachments/assets/8e240d84-d98e-4363-b297-c967a7b25b2f) Delete the plugin and reinstall to get the latest update that fixes a recently discovered bug....

Do you get an error message? Can you please check if there are errors in the developer console (F12 key in Chrome browser) and paste them here? To work on...

> admin dashboard Do you use Vvveb CMS or VvvebJs page builder? Only the CMS has an admin, VvvebJs has only one page, the page builder it comes without an...

@INTERC3PTI0N Thanks for info on subdirectory issues with XAMPP. For subdirectory installation `V_SUBDIR_INSTALL` must be set in `env.php` to subdirectory name ```php defined('V_SUBDIR_INSTALL') || define('V_SUBDIR_INSTALL', '/subdir'); ``` https://github.com/givanz/Vvveb/blob/master/env.php#L46-L47 But is...

JSON_ARRAYAGG was added in MySQL version 5.7.22 and in MariaDB version 10.5.0 The latest Xampp version has MariaDB 10.4.32 You can stop Mysql/MariadBD from Xampp and install the latest version...

Your php is missing dom extension, you can enable it from your server cpanel or install it with something like ```bash sudo apt-get install php-dom ```

You need to change mysql user and password to match the ones from your mysql server ```bash php cli.php install module=index host=127.0.0.1 user=root password=your_mysql_password database=your_vvveb_database_name admin[email][email protected] admin[password]=admin engine=mysqli ``` Or...

Check your php.ini, probably the sqlite3 extension is not enabled. https://www.php.net/manual/en/sqlite3.installation.php > Windows users must enable php_sqlite3.dll in order to use this extension. This DLL is included with Windows distributions...

If you are on linux then you can try to install the extension ```bash sudo apt-get install php-sqlite3 ``` The included php.ini has some recommended defaults and is used to...

Thanks for the bug report, the latest build was missing `vendor/autoload.php` it's now fixed, please try again.