Hi Martin . I think i have the same problem ,I am trying to create a website using the MySQL Table Editor WYSIWYG Web Builder 14.
i m filling the blanks with my database information like this :
server: localhost
database: plan
table: users
username:root
passeword:
primary key: id
When I run my site on my localhost, I am getting many errors :
( ! ) Fatal error: Uncaught Error: Call to undefined function mysql_connect() in C:\wamp64\www\test\mte.php on line 93
( ! ) Error: Call to undefined function mysql_connect() in C:\wamp64\www\test\mte.php on line 93
Call Stack
Time Memory Function Location
1 0.0179 403560 {main}( ) ...\page1.php:0
2 0.0500 407728 MySQLtabledit->database_connect( ) ...\page1.php:35
Don't know which version "WYSIWYG Web Builder 14" uses, but mysql_connect is an old funtion. MySQL Edit Table switched to msqli
Can you post your mte-file here?
Martin
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This mte.php is a very old version. The function mysql_connect is deprecated in PHP 5.5.0, and removed in PHP 7.0.0. Your local machine is using > PHP 7.
Please use the new version. I hope it is compatible wth Web Builder.
Succes! Martin
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi Martin . I think i have the same problem ,I am trying to create a website using the MySQL Table Editor WYSIWYG Web Builder 14.
i m filling the blanks with my database information like this :
server: localhost
database: plan
table: users
username:root
passeword:
primary key: id
When I run my site on my localhost, I am getting many errors :
( ! ) Fatal error: Uncaught Error: Call to undefined function mysql_connect() in C:\wamp64\www\test\mte.php on line 93
( ! ) Error: Call to undefined function mysql_connect() in C:\wamp64\www\test\mte.php on line 93
Call Stack
Time Memory Function Location
1 0.0179 403560 {main}( ) ...\page1.php:0
2 0.0500 407728 MySQLtabledit->database_connect( ) ...\page1.php:35
Can you help me please?
Thanks
Maryem
Last edit: maryem ghobber 2019-03-13
Hi Maryem,
Don't know which version "WYSIWYG Web Builder 14" uses, but mysql_connect is an old funtion. MySQL Edit Table switched to msqli
Can you post your mte-file here?
Martin
Hi, Martin
i'm using WYSIWYG Web Builder 14.0.2
and you will find my mte file in attachment
Thanks Martin.
Hi Maryem,
This mte.php is a very old version. The function mysql_connect is deprecated in PHP 5.5.0, and removed in PHP 7.0.0. Your local machine is using > PHP 7.
Please use the new version. I hope it is compatible wth Web Builder.
Succes! Martin
Hi Maryem,
Add
error_reporting(0);
or
ini_set('display_errors', 0);
in the beginning of your script
Martin
Thanks Martin