Hi,
I installed the MiniForm WebsiteBaker Module v 0.15.1 but it will not work in my site. Trying to add it on the page will result this error message:
QuoteThere was an uncatched exception
Undefined constant "MYSQL_ASSOC"
in line (239) of (/modules/miniform/functions.php):
About my Website Baker and web server
Quote
Webserver
Webserver Software: Linux cpanel08.whcweb.fi 3.10.0-962.3.2.lve1.5.61.el7.x86_64 #1 SMP Wed Aug 18 07:50:15 UTC 2021 x86_64
PHP-Erweiterung: mysqli Dokumentation curl Dokumentation mbstring Dokumentation
PHP-Version: 8.1.1
WebsiteBaker-Version: 2.13.0 -r63
I have been using the same module in an other site of mine, and it works the quite ok.
Here it works ok:
https://sironta.fi/pages/govfi-fi.php (https://sironta.fi/pages/govfi-fi.php)
QuoteWebserver Software: Linux panel02.planeettaweb.fi 3.10.0-962.3.2.lve1.5.61.el7.x86_64 #1 SMP Wed Aug 18 07:50:15 UTC 2021 x86_64
PHP-Erweiterung: mysqli curl mbstring
PHP-Version: 7.4.27
WebsiteBaker-Version: 2.13.0 RC1-r1
Any ideas where the fault might be? And how to fix it, please?
Hi, you can fix it for yourself with the attached file functions.txt (rename it to functions.php) and upload it to the miniform module folder.
I think the author of the module will provide a newer version in next time.
Changes: 2 places with MYSQLI_ASSOC and the commenting of the get_magic_quotes_gpc part.
Quote from: dbs on December 26, 2021, 03:16:36 PM
Hi, you can fix it for yourself with the attached file functions.txt (rename it to functions.php) and upload it to the miniform module folder.
I think the author of the module will provide a newer version in next time.
Changes: 2 places with MYSQLI_ASSOC and the commenting of the get_magic_quotes_gpc part.
Thanks dbs, this really helped, partly.
Now an other error message appears:
QuoteThere was an uncatched exception
Call to undefined function get_magic_quotes_gpc()
in line (46) of (/modules/miniform/modify_template.php):
How to solve this, please!
Go to the file /modules/miniform/modify_template.php
Replace line 46 and follows
if (get_magic_quotes_gpc()) {
$data = stripslashes($_POST['template_data']);
}
else {
$data = $_POST['template_data'];
}
with this one $data = $_POST['template_data'];
Thanks dbs! I will try this! :)