Group badges not showing up in client or on the me page, also my logout button doesnt work

Olliechu

New Member
Jun 13, 2020
2
0
Hey there, I have been working on my own retro for the last couple of days using BrainCMS and PlusEMU.

So my group badges don't show up on the /me page and also in-game, any help would be amazing

External variables:
You must be registered for see images attach

external override variables
You must be registered for see images attach

You must be registered for see images attach

You must be registered for see images attach

errors from 3 badges
You must be registered for see images attach

lgout.php
You must be registered for see images attach
 

Attachments

  • 1592437035752.png
    1592437035752.png
    11.7 KB · Views: 2
  • 1592437069738.png
    1592437069738.png
    2.5 KB · Views: 2

Zachariah

Active Member
Aug 26, 2017
177
78
PHP:
<?php
if(isset($_SESSION['user']['id']))
{
    session_destroy();
}

    header('Location: '.$_CONFIG['hotel']['url'].'/');
    exit;

?>
this is what I have for my logout, and it works.

Your Group badges has to be sorted in your web.config.
 

Olliechu

New Member
Jun 13, 2020
2
0
Thanks for the reply, I took that code and put it into my logout.php and still nothing, also not sure what I am looking for in my web.config other than this part here

<rule name="HBG-Xdr">
<match url="^habbo-imaging/badge/(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="habbo-imaging/badge.php?badge={R:1}" />
</rule>
 

Zachariah

Active Member
Aug 26, 2017
177
78
Thanks for the reply, I took that code and put it into my logout.php and still nothing, also not sure what I am looking for in my web.config other than this part here

<rule name="HBG-Xdr">
<match url="^habbo-imaging/badge/(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="habbo-imaging/badge.php?badge={R:1}" />
</rule>
You can try and refer to this article for help >
 

Users who are viewing this thread

Top