[Ajuda] RomplezCMS / UBER / PHOENIX /

+2
Primeiro
Minatos™
6 participantes

Minatos™ Minatos™  • 28.04.12 0:35

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty [Ajuda] RomplezCMS / UBER / PHOENIX / 28.04.12 0:35

Olá Ppf, Eu queria uma Ajuda com a CMS Romplez, Pós achei ela Bem Legal. E Ruim que esta Espanhol, Mais Deu um Erro ao Estala ela, Eu Não sei Como Resover :/ Erro abaixo na Imagem.

Imagem:
[Ajuda] RomplezCMS / UBER / PHOENIX / Imagem3ux
https://2img.net/r/ihimizer/img220/6136/imagem3ux.png

Obrigado Dés de Já.

Primeiro Primeiro  • 28.04.12 1:27

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty Re: [Ajuda] RomplezCMS / UBER / PHOENIX / 28.04.12 1:27

oi, recomendo você usar a OnlyCMS, é a mesma, está mais traduzida, tem mais coisas, e no pack da OnlyCMS vem a DB compativel pra evitar esse tipo de erro.

Clique AQUI para ir no tópico da OnlyCMS.

Luan Martins Luan Martins  • 28.04.12 1:32

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty Re: [Ajuda] RomplezCMS / UBER / PHOENIX / 28.04.12 1:32

Pelo que eu sei, e testei, a only CMS não pega no vertrigo, pelo-menos no meu não pegou, recomendo que compre uma vps na meuhabbo.net e coloque a cms Only no painel de la, para ver como fica entre em www.habbolux.com.br

Minatos™ Minatos™  • 28.04.12 2:16

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty Re: [Ajuda] RomplezCMS / UBER / PHOENIX / 28.04.12 2:16

primeiro, a OnlyCMS Não Pego no VetrigoServ Aqui em Casa Deu Vários Erros. :/

Megalodonte, Não Quero Compra um Vps agora, Porq Tenho que Aprofunda Meus Conhecimentos Em HP, Em Breve Comprarei Um :D

Alguem Então Pode Me Aruma Uma CMS Igual a RomplezCMS que Funcione com VetrigoServ e Emu 3.6.4

avatar -Fαntαsy  • 28.04.12 10:01

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty Re: [Ajuda] RomplezCMS / UBER / PHOENIX / 28.04.12 10:01

Bom dia estimado usuário,

Você já testou essa mesma cms com o xampp?


Melhores Cumprimentos,
Equipe Power Pixel.
[Ajuda] RomplezCMS / UBER / PHOENIX / Tubmaster_1

Gabrieldlm Gabrieldlm  • 28.04.12 16:23

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty Re: [Ajuda] RomplezCMS / UBER / PHOENIX / 28.04.12 16:23

Reputação da mensagem: 100% (1 votos)
Olá caro usuário, este erro é referente ao global.php da CMS abaixo deixarei o código para que você substitua:

Procure o arquivo global.php apague oque estiver lá e cole o código abaixo:


Código:
<?php
function returnGallery()
{
        // Datos de los primeros valores
   $buffer = explode('var habboStaticFilePath = "' , file_get_contents('http://www.habbo.es'));
   
   foreach($buffer as $var)
   {
           // Datos de los segundos valores
           $temp = explode('";', $var);
   }
   
   return $temp[0]; // devolvemos el resultado
}

?>
<?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.
\======================================================================*/


// ############################################################################
// Prepare the local environment

define('UBER', true);
define('DS', DIRECTORY_SEPARATOR);
define('LB', chr(13));
define('CWD', str_replace('manage' . DS, '', dirname(__FILE__) . DS));
define('INCLUDES', CWD . 'nucleo' . DS);
define('USER_IP', $_SERVER['REMOTE_ADDR']);


error_reporting(E_ALL);

session_start();

// ############################################################################
// Initialize core classes

require_once INCLUDES . "class.core.php";
require_once INCLUDES . "class.db.mysql.php";
require_once INCLUDES . "class.cron.php";
require_once INCLUDES . "class.users.php";
require_once INCLUDES . "class.tpl.php";
require_once INCLUDES . "class.grupos.php";

$core = new uberCore();
$cron = new uberCron();
$users = new uberUsers();
$tpl = new uberTpl();


// ############################################################################
// Execute some required core functionality

$core->ParseConfig();

$db = new MySQL($core->config['MySQL']['hostname'], $core->config['MySQL']['username'],
   $core->config['MySQL']['password'], $core->config['MySQL']['database']);
$db->Connect();

$cron->Execute();

// ############################################################################
// Session handling

if (isset($_SESSION['UBER_USER_N']) && isset($_SESSION['UBER_USER_H']))
{
   $userN = $_SESSION['UBER_USER_N'];
   $userH = $_SESSION['UBER_USER_H'];
   
   if ($users->ValidateUser($userN, $userH))
   {
      define('LOGGED_IN', true);
      define('USER_NAME', $userN);
      define('USER_ID', $users->name2id($userN));
      define('USER_HASH', $userH);
      
      $users->CacheUser(USER_ID);
   }
   else
   {
      @session_destroy();
      header('Location: ./index.html');
      exit;
   }   
}
else
{
   define('LOGGED_IN', false);
   define('USER_NAME', 'Guest');
   define('USER_ID', -1);
   define('USER_HASH', null);
}

define('FORCE_MAINTENANCE', ((uberCore::GetMaintenanceStatus() == "1") ? true : false));

if (FORCE_MAINTENANCE && !defined('IN_MAINTENANCE'))
{
   if (!LOGGED_IN || !$users->HasFuse(USER_ID, 'fuse_ignore_maintenance'))
   {
      header("Location: " . WWW . "/maintenance.html");
      exit;
   }
}

if ((!defined('BAN_PAGE') || !BAN_PAGE) && ($users->IsIpBanned(USER_IP) || (LOGGED_IN && $users->IsUserBanned(USER_NAME))))
{
   header("Location: " . WWW . "/banned.php");
   exit;
}

$core->CheckCookies();

// ############################################################################
// Some commonly used functions for easy access

function dbquery($strQuery = '')
{
   global $db;
   
   if($db->IsConnected())
   {
      return $db->DoQuery($strQuery);
   }
   
   return $db->Error('Could not process query, no active db connection detected..');
}

function filter($strInput = '')
{
   global $core;
   
   return $core->FilterInputString($strInput);
}

function clean($strInput = '', $ignoreHtml = false, $nl2br = false)
{
   global $core;
   
   return $core->CleanStringForOutput($strInput, $ignoreHtml, $nl2br);
}

function shuffle_assoc(&$array)
{
   $keys = array_keys($array);

   shuffle($keys);

   foreach($keys as $key)
   {
      $new[$key] = $array[$key];
   }

   $array = $new;

   return true;
}

include INCLUDES . "class.gtfo.php";
$gtfo  = new GtfoClean();
$gtfo->cleanSystem();

if (defined('MUST_LOG') && !LOGGED_IN) {
    header('Location: ' . WWW . '/');
}

function fixText($str, $quotes = true, $clean = false, $ltgt = false, $transform = false, $guestbook = false)
{
    global $core;
   
    return $core->fixText($str, $quotes, $clean, $ltgt, $transform, $guestbook);
}

function GenRandom()
{
    global $core;
   
    return $core->GenRandom();
}

function BBCode($str)
{
    global $core;
   
    return $core->BBCode($str);
}

function unicodeText($str, $clean = false)
{
    $str = str_replace("¡", "\u00a1", $str);
    $str = str_replace("¿", "\u00bf", $str);
    $str = str_replace("Ñ", "\u00d1", $str);
    $str = str_replace("ñ", "\u00f1", $str);
    $str = str_replace("Á", "\u00c1", $str);
    $str = str_replace("á", "\u00e1", $str);
    $str = str_replace("É", "\u00c9", $str);
    $str = str_replace("é", "\u00e9", $str);
    $str = str_replace("Ó", "\u00d3", $str);
    $str = str_replace("ó", "\u00f3", $str);
    $str = str_replace("Ú", "\u00da", $str);
    $str = str_replace("ú", "\u00fa", $str);
    $str = str_replace("͍", "\u00cd", $str);
    $str = str_replace("í", "\u00ed", $str);
   
    $str = str_replace('"', '\"', $str);
   
    return $str;
}

function Contains($str, $words, $filter = false)
{
    $return = false;
   
    if ($filter) {
        $str  = strtolower($str);
        $words = strtolower($words);
    }
   
    if (@strpos($str, $words) === false) {
        $return = false;
    } else {
        $return = true;
    }
   
    $getWords = explode(",", str_replace(" ", "", $words));
   
    foreach ($getWords as $Word) {
        if (!$return) {
            if (@strpos($str, $Word) === false) {
                $return = false;
            } else {
                $return = true;
            }
        }
    }
   
    return $return;
}

function write($str, $quotes = true, $clean = false, $ltgt = true, $transform = false, $guestbook = false)
{
    echo fixText($str, $quotes, $clean, $ltgt, $transform, $guestbook);
}


function IsEven($intNumber)
{
    if ($intNumber % 2 == 0) {
        return true;
    } else {
        return false;
    }
}

Até mais!

Minatos™ Minatos™  • 29.04.12 0:31

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty Re: [Ajuda] RomplezCMS / UBER / PHOENIX / 29.04.12 0:31

Gabrieldlm, Obrigado Deu Certo :D

Print:
[Ajuda] RomplezCMS / UBER / PHOENIX / Imagem5ux
Pode Feiixar o Tópico. Obrigado. Ganho Meu '+'

~Necr0 ~Necr0  • 29.04.12 0:40

[Ajuda] RomplezCMS / UBER / PHOENIX / Empty Re: [Ajuda] RomplezCMS / UBER / PHOENIX / 29.04.12 0:40

Tópico fechado, questão resolvida.
Permissões neste sub-fórum
Não podes responder a tópicos

BH Servers

Recomendamos a BH Servers com proteção DDOS gratuita em Cloud Server de alta performance. Entrega imediata.