We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 53072
    • 1 Posts
    I had the same issue. The fix for me was switching the 2 places I found calling mysql_* built in functions but a mysqli object was being returned.

    *********
    File:
    class/yams.class.inc.php:2891

    Change this:
    return mysql_num_rows( $info );

    To this
    return mysqli_num_rows( $info );
    *********


    *********
    File:
    yams.module.inc.php:2565

    Change this:
    $row = mysql_fetch_assoc( $info );

    To this
    $row = mysqli_fetch_assoc( $info );
    *********

    This fixed all the errors
      • 13226
      • 953 Posts
      @demaestro

      Are you actually using the latest version ? Found Here
        • 9359
        • 128 Posts
        i have same problem with Modx Evo 1.2 and the last version of yams 1.2.0 RC5.
        tabify not work's and i'don't see the tv when i go in modify resource :-(

        Versione MODX. 1.2
        Data di rilascio: Dec 01, 2016
        PHP Version: 5.4.12
        Versione Database: 5.5.52-cll


          "Destiny is not a matter of chance, it's a matter of choice"
          • 9359
          • 128 Posts
          Any help appreciated...
            "Destiny is not a matter of chance, it's a matter of choice"
            • 9995
            • 1,613 Posts
            Any way to look into your site?
            I should work. I have had no issues with it on all newer versions.

            This one should work;
            https://github.com/Deesen/YAMS

            Just rename your module yams folder and upload this one. (if you didn't do already) and add the config file from the old folder.

            Check if the pages are still using yams. Module tab Multilangual Templates to YES.
              Evolution user, I like the back-end speed and simplicity smiley