Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Custom RevCMS Theme

Status
Not open for further replies.
Newbie Spellweaver
Joined
Dec 23, 2012
Messages
23
Reaction score
5
Hi mate, I love the theme but I have one error;

Everytime I try going to a news article, it goes to this
(protected URL)
Then it says object not found,
Please help,
Regards
 
Last edited:
Junior Spellweaver
Joined
Feb 27, 2011
Messages
158
Reaction score
78
Hi mate, I love the theme but I have one error;

Everytime I try going to a news article, it goes to this
(protected URL)
Then it says object not found,
Please help,
Regards

Hi.
You'll need to use my web.config

Code:
 <rule name="Imported Rule 1">
                    <match url="^(|/)$" ignoreCase="false" />
                    <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
                </rule>
                <rule name="Imported Rule 2">
                    <match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
                    <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
                </rule>
<rule name="Imported Rule zz">
                    <match url="^ase/(.*)/?$" ignoreCase="false" />
                    <action type="Rewrite" url="/ase/index.php?url={R:1}" appendQueryString="true" />
 
Junior Spellweaver
Joined
Apr 3, 2013
Messages
127
Reaction score
2
Whats Wrong wit Layout?

 
Last edited:
Junior Spellweaver
Joined
Feb 27, 2011
Messages
158
Reaction score
78
Whats Wrong wit Layout?


If you read back a page there's a resolution for it.

Replace index.php in wwwroot/htdocs with

Code:
<?php 
define('IN_INDEX', 1);

require_once 'global.php';
$core->handleCall($engine->secure($_GET['url']));
	$template->html->get($engine->secure($_GET['url']));
$template->outputTPL();
?>
 
Divine Celestial
Loyal Member
Joined
Jun 26, 2011
Messages
819
Reaction score
338
- The download link!
 
Status
Not open for further replies.
Back
Top