Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
Help on R63 server
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="shawn565" data-source="post: 21114" data-attributes="member: 2304"><p><strong>Error on R63</strong></p><p></p><p><span style="font-family: 'Georgia'"><span style="font-size: 12px"><span style="color: navy">NVM FIXED IT XD But i got a new problem</span></span></span></p><p><span style="font-family: 'Georgia'"><span style="font-size: 12px"><span style="color: navy"></span></span></span></p><p><span style="font-family: 'Georgia'"><span style="font-size: 12px"><span style="color: navy">everytime i log in it goes to newstylehotel.no-ip.org/security</span></span></span></p><p><span style="font-family: 'Georgia'"><span style="font-size: 12px"><span style="color: navy"></span></span></span></p><p><span style="font-family: 'Georgia'"><span style="font-size: 12px"><span style="color: navy">how do u just make it go to /me not /security</span></span></span></p><p></p><p>[CODE]<?php</p><p>/*=======================================================================</p><p>| UberCMS - Advanced Website and Content Management System for uberEmu</p><p>| #######################################################################</p><p>| Copyright (c) 2010, Roy 'Meth0d'</p><p>| http://www.meth0d.org</p><p>| #######################################################################</p><p>| This program is free software: you can redistribute it and/or modify</p><p>| it under the terms of the GNU General Public License as published by</p><p>| the Free Software Foundation, either version 3 of the License, or</p><p>| (at your option) any later version.</p><p>| #######################################################################</p><p>| This program is distributed in the hope that it will be useful,</p><p>| but WITHOUT ANY WARRANTY; without even the implied warranty of</p><p>| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</p><p>| GNU General Public License for more details.</p><p>\======================================================================*/</p><p></p><p>require_once "global.php";</p><p></p><p>if (!LOGGED_IN)</p><p>{</p><p> header("Location: " . WWW . "/");</p><p> exit;</p><p>}</p><p></p><p>if (isset($_SESSION['set_cookies']) && $_SESSION['set_cookies'] === true)</p><p>{</p><p> setcookie('rememberme', 'true', time() + 2592000, '/');</p><p> setcookie('rememberme_token', USER_HASH, time() + 2592000, '/');</p><p> setcookie('rememberme_name', USER_NAME, time() + 2592000, '/');</p><p></p><p> unset($_SESSION['set_cookies']);</p><p>}</p><p></p><p>$redirMode = WWW . '/me';</p><p></p><p>if (isset($_SESSION['page-redirect']))</p><p>{</p><p> $redirMode = $_SESSION['page-redirect'];</p><p> unset($_SESSION['page-redirect']);</p><p>}</p><p></p><p>?></p><p><html></p><p><head></p><p> <title>Redireccionando...</title></p><p> <meta http-equiv="content-type" content="text/html; charset=utf-8"></p><p> <style type="text/css">body { background-color: #e3e3db; text-align: center; font: 11px Verdana, Arial, Helvetica, sans-serif; } a { color: #fc6204; }</style></p><p></head></p><p><body></p><p></p><p><script type="text/javascript">window.location.replace('<?php echo $redirMode; ?>');</script><noscript><meta http-equiv="Refresh" content="0;URL=<?php echo $redirMode; ?>"></noscript></p><p></p><p><p class="btn">Si usted no es redirigido automáticamente, por favor <a href="<?php echo $redirMode; ?>" id="manual_redirect_link">Click aqui</a></p></p><p></p><p></body></p><p></html>[/CODE]</p></blockquote><p></p>
[QUOTE="shawn565, post: 21114, member: 2304"] [b]Error on R63[/b] [FONT="Georgia"][SIZE="3"][COLOR="navy"]NVM FIXED IT XD But i got a new problem everytime i log in it goes to newstylehotel.no-ip.org/security how do u just make it go to /me not /security[/COLOR][/SIZE][/FONT] [CODE]<?php /*======================================================================= | UberCMS - Advanced Website and Content Management System for uberEmu | ####################################################################### | Copyright (c) 2010, Roy 'Meth0d' | http://www.meth0d.org | ####################################################################### | This program is free software: you can redistribute it and/or modify | it under the terms of the GNU General Public License as published by | the Free Software Foundation, either version 3 of the License, or | (at your option) any later version. | ####################################################################### | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | GNU General Public License for more details. \======================================================================*/ require_once "global.php"; if (!LOGGED_IN) { header("Location: " . WWW . "/"); exit; } if (isset($_SESSION['set_cookies']) && $_SESSION['set_cookies'] === true) { setcookie('rememberme', 'true', time() + 2592000, '/'); setcookie('rememberme_token', USER_HASH, time() + 2592000, '/'); setcookie('rememberme_name', USER_NAME, time() + 2592000, '/'); unset($_SESSION['set_cookies']); } $redirMode = WWW . '/me'; if (isset($_SESSION['page-redirect'])) { $redirMode = $_SESSION['page-redirect']; unset($_SESSION['page-redirect']); } ?> <html> <head> <title>Redireccionando...</title> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <style type="text/css">body { background-color: #e3e3db; text-align: center; font: 11px Verdana, Arial, Helvetica, sans-serif; } a { color: #fc6204; }</style> </head> <body> <script type="text/javascript">window.location.replace('<?php echo $redirMode; ?>');</script><noscript><meta http-equiv="Refresh" content="0;URL=<?php echo $redirMode; ?>"></noscript> <p class="btn">Si usted no es redirigido automáticamente, por favor <a href="<?php echo $redirMode; ?>" id="manual_redirect_link">Click aqui</a></p> </body> </html>[/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Help on R63 server
Top