MyBB Community Forums

Full Version: can't activate plugins on MyBB 1.8.22
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I try to activate 5x plugins and i have 5x HTTP ERROR 500.
can you check if require exists in such plugins' code ..
require MYBB_ROOT . "inc/adminfunctions_templates.php";
require_once should be used instead of require

actually plugins with "require" code should be not existing at Extend Section
(2020-06-06, 02:32 PM).m. Wrote: [ -> ]can you check if require exists in such plugins' code ..
require MYBB_ROOT . "inc/adminfunctions_templates.php";
require_once should be used instead of require

actually plugins with "require" code should be not existing at Extend Section

in ratio system plugin i have this yes : 
require MYBB_ROOT.'/inc/adminfunctions_templates.php';



In Username Change Approval, Limit and History (1.4) plugin, i dont have this and the I can't activate this plugin


In Multiple Usergroup Images on Postbit/Profile (1.2) plugins i have this too : 


[Image: 7e063b05af3278585e578eabf5b8380d.png]

In Profile Views Plugin i don't have - require MYBB_ROOT . "inc/adminfunctions_templates.php"; - 
but i have this : 

[Image: b6be51a295d3f640286bda5a4357f31d.png]
^ can you replace require & include with require_once and check
(2020-06-06, 03:01 PM).m. Wrote: [ -> ]^ can you replace require & include with require_once and check
Oh thanks you it works perfectly Big Grin
Pages: 1 2