MyBB Community Forums

Full Version: Discord Webhooks for MyBB - Not Working Anymore
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I did everything right but still i cant see anything new from our forum. Its like plugin not works. Tried socket / curl too but no way. PHP 7.4 with all needed modules is active and im sure about my discord webhook url is correct

https://github.com/ryczypior/discord-web.../issues/38
Hi,

In inc/plugins/discord_webhooks/Discordwebhook.php change:

if (preg_match('/^\s*https?:\/\/(ptb\.)?discordapp\.com\/api\/webhooks\//i', $webhookurl) == 0) {

to
if (preg_match('/^\s*https?:\/\/(ptb\.)?discord\.com\/api\/webhooks\//i', $webhookurl) == 0) {

That worked for me. Hopefully it works for you, too Smile
(2021-02-18, 11:38 AM)ThistleProse Wrote: [ -> ]Hi,

In inc/plugins/discord_webhooks/Discordwebhook.php change:

if (preg_match('/^\s*https?:\/\/(ptb\.)?discordapp\.com\/api\/webhooks\//i', $webhookurl) == 0) {

to
if (preg_match('/^\s*https?:\/\/(ptb\.)?discord\.com\/api\/webhooks\//i', $webhookurl) == 0) {

That worked for me. Hopefully it works for you, too Smile


Hey,

Solved. Thnx!
This solved my issue as well.

Thank you so much!