Groups Error?

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
I'm not sure what the problem is... here's what it says in my variables, htaccess and web.config:

1. External Variables
Code:
group_logo_url_template=https://zebbo.us/swf/habbo-imaging/badge/%imagerdata%.gif
group.badge.url=https://zebbo.us/swf/habbo-imaging/badge/%imagerdata%.gif

2. Override Variables
Code:
group.badge.url=https://zebbo.us/swf/habbo-imaging/badge/%imagerdata%.gif

3. HTACCESS
Code:
RewriteRule ^swf/habbo-imaging/badge/([a-zA-Z0-9_-]+)(|/)$ swf/habbo-imaging/badge.php?badge=$1

4. Web Config
Code:
                <rule name="Rule 112">
                    <match url="^swf/habbo-imaging/badge/([^/]+)" ignoreCase="false" />
                    <action type="Rewrite" url="/swf/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
                </rule>

Here's what displays in the console
JaAT4EJ.png

I've tried changing the links from swf/habbo-imaging to just habbo-imaging but it still didn't work.
 

JayC

Always Learning
Aug 8, 2013
5,493
1,398
3. HTACCESS

This is Web.Config - You are missing the / in front of habbo-imaging tho
Code:
<rule name="Habbo Imaging Badges">
                <match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
                <action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
                </rule>
 

Users who are viewing this thread

Top