- josemdrMembro I
- Idade : 44
Posts : 193
Créditos : 0
Respeito : 3
Habboz !
Error Twet Cms
Seg 14 Fev 2011, 21:53
Bom aparece asim eu aceito as Normas do Tweet Hotel Bom eu acceito mas nao vai
Eu uso a Indeluxe Swf sera q e da swf se for me ajudem a tirar D:
Eu uso a Indeluxe Swf sera q e da swf se for me ajudem a tirar D:
- lukinhas.22Membro IV
- Idade : 27
Posts : 400
Créditos : 0
Respeito : 4
Script
Re: Error Twet Cms
Seg 14 Fev 2011, 21:57
Para tirar a pagina de verificaçao veja abaixo:
1° va em sua cms e de dois cliques sobre o arquivo client.
2° apos o arquivo aberto aperte ctrl+h e procure por isso Abra o Spoiler:
Gostou do Topico de um +
1° va em sua cms e de dois cliques sobre o arquivo client.
2° apos o arquivo aberto aperte ctrl+h e procure por isso Abra o Spoiler:
- Spoiler:
- header("Location: " . WWW . "/client?createRoom=" . rand(0, 5));
exit;
Gostou do Topico de um +
- josemdrMembro I
- Idade : 44
Posts : 193
Créditos : 0
Respeito : 3
Habboz !
Re: Error Twet Cms
Seg 14 Fev 2011, 22:06
Fiz isso e ainda ta sera q e a indeluxe swf Me ajuda Por favor vou passar meu Client voce edita e Me passa Please
Meu Client.php
Edita PLEASE
Meu Client.php
- Spoiler:
- <?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' and updates by Matthew 'MDK'
| http://www.meth0d.org & http://www.sulake.biz
| #######################################################################
| 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.
\======================================================================*/
define('HIDE_FEEDBACK', true);
require_once "global.php";
require_once "inc/class.rooms.php";
if (!LOGGED_IN)
{
header("Location: " . WWW. "/login_popup");
exit;
}
$forwardType = 0;
$forwardId = 0;
if ($users->getUserVar(USER_ID, 'newbie_status') == "0")
{
if (isset($_GET['createRoom']) && is_numeric($_GET['createRoom']))
{
$roomId = RoomManager::CreateRoom(USER_NAME . "'s room", USER_NAME, 'model_s');
switch (intval($_GET['createRoom']))
{
default:
case 0:
RoomManager::PaintRoom($roomId, '1701', '601');
break;
case 1:
RoomManager::PaintRoom($roomId, '607', '111');
break;
case 2:
RoomManager::PaintRoom($roomId, '1901', '301');
break;
case 3:
RoomManager::PaintRoom($roomId, '1801', '110');
break;
case 4:
RoomManager::PaintRoom($roomId, '503', '104');
break;
case 5:
RoomManager::PaintRoom($roomId, '804', '107');
break;
}
//die('createRoom Result: ' . $roomId);
dbquery("UPDATE users SET home_room = '" . $roomId . "', newbie_status = '1' WHERE id = '" . USER_ID . "' LIMIT 1");
//$forwardType = 2;
//$forwardId = $roomId;
}
else
{
header("Location: " . WWW . "/client?createRoom=" . rand(0, 5));
exit;
}
}
else if (isset($_GET['forwardType']) && isset($_GET['forwardId']) && is_numeric($_GET['forwardType']) && is_numeric($_GET['forwardId']))
{
$forwardType = intval($_GET['forwardType']);
$forwardId = intval($_GET['forwardId']);
if ($forwardType >= 3 || $forwardType <= 0)
{
return;
}
}
if ($users->GetUserVar(USER_ID, "newbie_status", false) == "1")
{
header("Location: " . WWW . "/account/policy-verify");
exit;
}
$users->CheckSSO(USER_ID);
$tpl->Init();
$tpl->AddGeneric('head-init');
$tpl->AddIncludeSet('default');
$tpl->AddIncludeFile(new IncludeFile('text/css', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/styles/habboclient.css', 'stylesheet'));
$tpl->AddIncludeFile(new IncludeFile('text/css', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/styles/habboflashclient.css', 'stylesheet'));
$tpl->AddIncludeFile(new IncludeFile('text/javascript', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/static/js/habboflashclient.js'));
$tpl->WriteIncludeFiles();
$tpl->AddGeneric('head-bottom');
$client = new Template('page-client');
$client->SetParam('page_title', 'Client');
$client->SetParam('sso_ticket', $users->GetUserVar(USER_ID, 'auth_ticket', false));
$client->SetParam('flash_base', 'http://havvito.malware-site.www:3535/gordon/RELEASE63-31264-31216-201101271703_0f871860996bbd86cda8bb5f82ddf25e/');
$client->SetParam('flash_client_url', 'http://havvito.malware-site.www:3535/dcr/r63_none_1dc60c6d6ea6e089c6893ab4e0541ee0/');
$client->SetParam('hotel_status', $core->GetUsersOnline() . ' Usuarios online!');
$client->SetParam('forwardType', $forwardType);
$client->SetParam('forwardId', $forwardId);
if (isset($_GET['forceTicket']) && $users->HasFuse(USER_ID, 'fuse_admin'))
{
$client->SetParam('sso_ticket', $_GET['forceTicket']);
}
$tpl->AddTemplate($client);
// Footer
$tpl->AddGeneric('footer');
$tpl->Output();
?>
Edita PLEASE
- lukinhas.22Membro IV
- Idade : 27
Posts : 400
Créditos : 0
Respeito : 4
Script
Re: Error Twet Cms
Seg 14 Fev 2011, 22:15
Client editado veja abaixo:
- Spoiler:
- /*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' and updates by Matthew 'MDK'
| http://www.meth0d.org & http://www.sulake.biz
| #######################################################################
| 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.
\======================================================================*/
define('HIDE_FEEDBACK', true);
require_once "global.php";
require_once "inc/class.rooms.php";
if (!LOGGED_IN)
{
header("Location: " . WWW. "/login_popup");
exit;
}
$forwardType = 0;
$forwardId = 0;
if ($users->getUserVar(USER_ID, 'newbie_status') == "0")
{
if (isset($_GET['createRoom']) && is_numeric($_GET['createRoom']))
{
$roomId = RoomManager::CreateRoom(USER_NAME . "'s room", USER_NAME, 'model_s');
switch (intval($_GET['createRoom']))
{
default:
case 0:
RoomManager::PaintRoom($roomId, '1701', '601');
break;
case 1:
RoomManager::PaintRoom($roomId, '607', '111');
break;
case 2:
RoomManager::PaintRoom($roomId, '1901', '301');
break;
case 3:
RoomManager::PaintRoom($roomId, '1801', '110');
break;
case 4:
RoomManager::PaintRoom($roomId, '503', '104');
break;
case 5:
RoomManager::PaintRoom($roomId, '804', '107');
break;
}
//die('createRoom Result: ' . $roomId);
dbquery("UPDATE users SET home_room = '" . $roomId . "', newbie_status = '1' WHERE id = '" . USER_ID . "' LIMIT 1");
//$forwardType = 2;
//$forwardId = $roomId;
}
else
{
}
}
else if (isset($_GET['forwardType']) && isset($_GET['forwardId']) && is_numeric($_GET['forwardType']) && is_numeric($_GET['forwardId']))
{
$forwardType = intval($_GET['forwardType']);
$forwardId = intval($_GET['forwardId']);
if ($forwardType >= 3 || $forwardType <= 0)
{
return;
}
}
if ($users->GetUserVar(USER_ID, "newbie_status", false) == "1")
{
header("Location: " . WWW . "/account/policy-verify");
exit;
}
$users->CheckSSO(USER_ID);
$tpl->Init();
$tpl->AddGeneric('head-init');
$tpl->AddIncludeSet('default');
$tpl->AddIncludeFile(new IncludeFile('text/css', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/styles/habboclient.css', 'stylesheet'));
$tpl->AddIncludeFile(new IncludeFile('text/css', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/styles/habboflashclient.css', 'stylesheet'));
$tpl->AddIncludeFile(new IncludeFile('text/javascript', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/static/js/habboflashclient.js'));
$tpl->WriteIncludeFiles();
$tpl->AddGeneric('head-bottom');
$client = new Template('page-client');
$client->SetParam('page_title', 'Client');
$client->SetParam('sso_ticket', $users->GetUserVar(USER_ID, 'auth_ticket', false));
$client->SetParam('flash_base', 'http://havvito.malware-site.www:3535/gordon/RELEASE63-31264-31216-201101271703_0f871860996bbd86cda8bb5f82ddf25e/');
$client->SetParam('flash_client_url', 'http://havvito.malware-site.www:3535/dcr/r63_none_1dc60c6d6ea6e089c6893ab4e0541ee0/');
$client->SetParam('hotel_status', $core->GetUsersOnline() . ' Usuarios online!');
$client->SetParam('forwardType', $forwardType);
$client->SetParam('forwardId', $forwardId);
if (isset($_GET['forceTicket']) && $users->HasFuse(USER_ID, 'fuse_admin'))
{
$client->SetParam('sso_ticket', $_GET['forceTicket']);
}
$tpl->AddTemplate($client);
// Footer
$tpl->AddGeneric('footer');
$tpl->Output();
?>
- josemdrMembro I
- Idade : 44
Posts : 193
Créditos : 0
Respeito : 3
Habboz !
Re: Error Twet Cms
Seg 14 Fev 2011, 22:20
Obg Vou testar ;D
edit: Nao FOI APARECEU EM VEZ DO CLIENT TODAS AS LETRAS DO CLIENT ME AJUDA
add no Msn: crfjvm2000@hotmail.com te dou vaga no meu Hotel Pf Please
edit: Nao FOI APARECEU EM VEZ DO CLIENT TODAS AS LETRAS DO CLIENT ME AJUDA
add no Msn: crfjvm2000@hotmail.com te dou vaga no meu Hotel Pf Please
- xNeewMembro X
- Idade : 28
Posts : 1145
Créditos : 230
Respeito : 21
Re: Error Twet Cms
Seg 14 Fev 2011, 22:20
Topico Movido
- josemdrMembro I
- Idade : 44
Posts : 193
Créditos : 0
Respeito : 3
Habboz !
Re: Error Twet Cms
Seg 14 Fev 2011, 22:30
Pelo amor de Deus algum Suporte me ajuda
- dragonforceNovato
- Idade : 28
Posts : 7
Créditos : 0
Respeito : 0
Habboz !
Re: Error Twet Cms
Ter 22 Fev 2011, 14:46
josemdr escreveu:Obg Vou testar ;D
edit: Nao FOI APARECEU EM VEZ DO CLIENT TODAS AS LETRAS DO CLIENT ME AJUDA
add no Msn: crfjvm2000@hotmail.com te dou vaga no meu Hotel Pf Please
Ei! Caps? eh vc? eu conheço seu email... eu sou o Draco
E se vc guardasse o client com php... vc podera ter guardado como bloco de notas
- avatar123Membro II
- Idade : 28
Posts : 229
Créditos : 0
Respeito : 2
Curioso u.u
Re: Error Twet Cms
Ter 22 Fev 2011, 15:10
aki nao deol nem um error pois ja testei essa cms man tu feis alguma coisa q naun preste ai !
- gustaviiimMembro II
- Idade : 33
Posts : 202
Créditos : 0
Respeito : 0
habbo
Re: Error Twet Cms
Ter 22 Fev 2011, 19:03
Troca a CMS
- josemdrMembro I
- Idade : 44
Posts : 193
Créditos : 0
Respeito : 3
Habboz !
Re: Error Twet Cms
Ter 22 Fev 2011, 19:05
RESOLVIDO PODEM FECHAR OBG ;D
- xNeewMembro X
- Idade : 28
Posts : 1145
Créditos : 230
Respeito : 21
Re: Error Twet Cms
Ter 22 Fev 2011, 20:52
Topico Fechado ;*
- Conteúdo patrocinado
Re: Error Twet Cms
Permissões neste sub-fórum
Não podes responder a tópicos