Module Builder Broken with fresh install Suitecrm 7.6

Hello Everyone,

I install a fresh instance of Suitecrm 7.6 release and found out that the Module Builder is broken (attached image).

When click on create new module, the popup windows shows with these message and disarranged characters:

Strict Standards: Non-static method MBModule::getTypes() should not be called statically, assuming $this from incompatible context in /home1/enjoyint/public_html/asuntos/modules/ModuleBuilder/views/view.module.php on line 74
{“center”:{“title”:“Module”,“crumb”:"""</a> “”</a> | Module Builder</a> > Personas_Morales</a> > New Module</span>

“,“content”:”\n
\n\n\n\n\n\n\n\n\t\n\t\t\n\t\n\t\n\t \n\t\n
</td> Save \n\t\t</td></tr>\n\t
</td> </td>\n\t</tr>\n\t
Package:</b></td> Personas_Morales</td></tr>\n\t

  • </font>Module Name:</b></td>
    Test_Module
    </td></tr>\n\t
  • </font>Label:</b></td>
    Test Module
    </td></tr>\n\t
    Importing:</td>\n </td>\n </tr>\n\t\n\t\t</tr>
    Navigation Tab:</td>\n\t </td>\n\t\t\n\t\t</tr>\n\t
  • </font>Type:</b></td>\n \n \n \n \n \t\t\t\t\t
    \n \n \n\t\t\t\t\t\t \n\t\t\t\t\t\t
    “”</td>\n\t\t\t\t\t\t </tr>\n\t\t\t\t\t </table>\n\t\t\t\t\t basic</a>\n

Chome console shows these error logs:

/%22themes//SuiteR//images//icon_home.png?v=vVJx9XJn1694ufT3cFPRBg%22:1 GET http://asuntos.efectolegal.org/"themes//SuiteR//images//icon_home.png?v=vVJx9XJn1694ufT3cFPRBg" 404 (Not Found)

/%22themes//SuiteR//images//icon_basic.png?v=vVJx9XJn1694ufT3cFPRBg%22:1 GET http://asuntos.efectolegal.org/"themes//SuiteR//images//icon_basic.png?v=vVJx9XJn1694ufT3cFPRBg" 404 (Not Found)

icon_back.gif:1 GET http://asuntos.efectolegal.org/"themes//SuiteR//images//icon_back.gif?v=vVJx9XJn1694ufT3cFPRBg" 404 (Not Found)
14VM1313 index.php?module=ModuleBuilder&action=index&type=mb:1 Uncaught SyntaxError: Unexpected token ILLEGAL

The URL’s have a double // , so they do not exists.

Does somebody is experiencing the same issue or it is an isolated problem? Any guidelines about how to solve this?

Thanks and best wishes for all!

This article helped a lot http://stackoverflow.com/questions/9983286/disabling-strict-standards-in-php-5-4
I didn’t have access to php.ini so I made this:

  • put following at the top of the PHP section of any script that gets loaded from a browser call:
    error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE);
    So I put it on the bottom of index.php

Maybe it’ll help to someone.