10-02-2019, 08:22 AM
(This post was last modified: 10-02-2019, 08:30 AM by Bignoise.
Edit Reason: typo
)
@Benjamin , if I can help you a little....
I was not able to reproduce 4Kingdoms's problem, trying to subscribe Shannon's journal.
However, I still get the same error when I try to subscribe a whole forum:
![[Image: subliminal-problem.jpg]](https://i.ibb.co/QvR6Hhn/subliminal-problem.jpg)
This is a known problem with MyBB as usercp2.php file was deprecated but some plugins still reference it.
To solve it you should create the file usercp2.php yourself with this content:
as pointed in this post at mybb support forum.
I was not able to reproduce 4Kingdoms's problem, trying to subscribe Shannon's journal.
However, I still get the same error when I try to subscribe a whole forum:
![[Image: subliminal-problem.jpg]](https://i.ibb.co/QvR6Hhn/subliminal-problem.jpg)
This is a known problem with MyBB as usercp2.php file was deprecated but some plugins still reference it.
To solve it you should create the file usercp2.php yourself with this content:
PHP Code:
<?php
define("IN_MYBB", 1);
$redirecturl = str_replace('usercp2', 'usercp', $_SERVER['REQUEST_URI']);
header('Location: '.$redirecturl);
as pointed in this post at mybb support forum.