We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 36613
    • 328 Posts
    I install modx and work, but i don't see the filesystem file.
    So i create in assets/test/ with some image but i don't see the content i can upload but in mod don't see the file.
    The modx log don't help me.
    My modxversion is:
    MODX Revolution 2.4.2-pl
    My phpVersion is:
    PHP Version 5.4.45
    Why ? [ed. note: cristianb88 last edited this post 8 years, 1 month ago.]
      • 36613
      • 328 Posts
      I found and resolve the problem. In this file:
      /public_html/core/model/modx/sources/modaccessmediasource.class.php
      there is this line:
      $ext = $useMultibyte ? mb_strtolower($ext, $encoding) : strtolower($ext);
      i found this error on php:
      PHP Fatal error:  Call to undefined function mb_strtolower() in /home/xxxxx/public_html/core/model/modx/sources/modfilemediasource.class.php 

      and then i replace the line with:
      $ext = $useMultibyte ? strtolower($ext, $encoding) : strtolower($ext);
        • 51195
        • 3 Posts
        Or, you could install multibyte string extension: http://php.net/manual/en/mbstring.installation.php