Menu

MySQL Table Editor error

Help
2019-03-13
2019-03-15
  • maryem ghobber

    maryem ghobber - 2019-03-13

    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
  • Martin

    Martin - 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

     
  • maryem ghobber

    maryem ghobber - 2019-03-13
    Post awaiting moderation.
  • maryem ghobber

    maryem ghobber - 2019-03-13

    Hi, Martin
    i'm using WYSIWYG Web Builder 14.0.2
    and you will find my mte file in attachment

    Thanks Martin.

     
  • Martin

    Martin - 2019-03-14

    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

     
  • maryem ghobber

    maryem ghobber - 2019-03-14
    Post awaiting moderation.
  • Martin

    Martin - 2019-03-14

    Hi Maryem,

    Add

    error_reporting(0);

    or

    ini_set('display_errors', 0);

    in the beginning of your script

    Martin

     
  • maryem ghobber

    maryem ghobber - 2019-03-15

    Thanks Martin

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.