Ja Purity - Site fica ruim quando coloco este template

  • Rogério Oliveira
  • Avatar de Rogério Oliveira Autor do Tópico
  • Offline
  • JCB! Estagiário
  • JCB! Estagiário
Mais
14 anos 6 meses atrás #46435 por Rogério Oliveira
Rogério Oliveira created the topic: Ja Purity - Site fica ruim quando coloco este template
Fatal error: Call to a member function getItems() on a non-object riodejaneirodespachantes.com.br/httpdocs/templates/ja_purity/ja_menus/Base.class.php on line 30


Aguem pode me judar, nem sei o que é isto, o site fica so dando esta mensagem quando coloco o template ja purity

Srs. o template funciona tudo certinho no localhost mas quando mando para o webhost , da esta mensagem.

joomla 1.5.22 , xampp 1.7.3 no localhost
hospedado na LOCAWEB, revenda linux.

A grande contradição e que com outros templates ele funciona normal.


Socorro, Obrigado.

Please Entrar ou Registrar to join the conversation.


Mais
14 anos 6 meses atrás #46438 por rldesign
rldesign replied the topic: Re: Ja Purity - Site fica ruim quando coloco este template
Rogério, quando fui acessar o seu site ele apresentava a seguinte mensagem:
Database Error: Unable to connect to the database:Could not connect to MySQL

Vc alterou ou exclui a sua instalação?

Rafael Santana
Web Designer | R&L Design - Desenvolvimento Gráfico e Sites

Please Entrar ou Registrar to join the conversation.

  • Rogério Oliveira
  • Avatar de Rogério Oliveira Autor do Tópico
  • Offline
  • JCB! Estagiário
  • JCB! Estagiário
Mais
14 anos 6 meses atrás #46448 por Rogério Oliveira
Rogério Oliveira replied the topic: Re: Ja Purity - Site fica ruim quando coloco este template

rldesign escreveu: Rogério, quando fui acessar o seu site ele apresentava a seguinte mensagem:
Database Error: Unable to connect to the database:Could not connect to MySQL

Vc alterou ou exclui a sua instalação?


RAFAEL MUITO OBRIGADO, PELA TENTATIVA DE AJUDA.

EU REALMENTE REINSTALEI TUDO DE NOVO, E DEI UM REMENDO, TENHO O JA PURITY NO ADMINISTRATOR E ESTOU USANDO UM OUTRO TEMPLATE, MAS O QUE QUERO E DA FORMA QUE ESTRUTUREI O SITE ELE E TODO VOLTADO PARA O TEMPLATE JA PURITY.

QUANDO USO O JA PURITY ELE ESTA DANDO ESTE NOVO ERRO DEPOIS DE TER FUÇADO TANTO, SE PUDER DAR UMA OLHADA AGRADEÇO

Fatal error: Call to a member function getItems() on a non-object in /home/httpd/vhosts/riodejaneirodespachantes.com.br/httpdocs/templates/ja_purity/ja_menus/Base.class.php on line 30

LINHA 30 DO ARQUIVO BASE.CLASS.PHP
$rows = $menu->getItems('menutype', $this->getParam('menutype'));

Please Entrar ou Registrar to join the conversation.

  • Rogério Oliveira
  • Avatar de Rogério Oliveira Autor do Tópico
  • Offline
  • JCB! Estagiário
  • JCB! Estagiário
Mais
14 anos 6 meses atrás #46449 por Rogério Oliveira
Rogério Oliveira replied the topic: Re: Ja Purity - Site fica ruim quando coloco este template
RESOLVI COLOCAR LOGO O ARQUIVO TODO AQUI.

<?php
defined('_JEXEC') or die('Restricted access');
if (!defined ('_JA_BASE_MENU_CLASS')) {
define ('_JA_BASE_MENU_CLASS', 1);

class JA_Base{
var $_params = null;
var $children = null;
var $open = null;
var $items = null;
var $Itemid = 0;

function JA_Base( &$params ){
global $Itemid;
$this->_params = $params;
$this->Itemid = $Itemid;
$this->loadMenu();
}

function loadMenu(){
$menu = @JMenu :: getInstance();
if(strtolower(get_class($menu)) == 'jexception') {
$menu = @JMenu :: getInstance('site');
}
$user =& JFactory::getUser();

$children = array ();

//get menu items
$rows = $menu->getItems('menutype', $this->getParam('menutype')); // first pass - collect children
$cacheIndex = array();
$this->items = array();
foreach ($rows as $index => $v) {
if ($v->access <= $user->get('gid')) {
$pt = $v->parent;
$list = @ $children[$pt] ? $children[$pt] : array ();

switch ($v->type)
{
case 'url' :
if ((strpos($v->link, 'index.php?') !== false) && (strpos($v->link, 'Itemid=') === false)) {
$v->url = $v->link.'&Itemid='.$v->id;
} else {
$v->url = $v->link;
}
break;

default :
$v->url = 'index.php?Itemid='.$v->id;
break;
}
if (strcasecmp(substr($v->url, 0, 4), 'http') && (strpos($v->link, 'index.php?') !== false)) {
$iParams =& new JParameter($v->params);
$iSecure = $iParams->def('secure', 0);
$v->url = JRoute::_($v->url, true, $iSecure);
}else{
//$v->url = urlencode($v->url);
$v->url = str_replace('&', '&', $v->url);
}
array_push($list, $v);
$children[$pt] = $list;
}
$cacheIndex[$v->id] = $index;
$this->items[$v->id] = $v;
}

$this->children = $children;
// second pass - collect 'open' menus
$open = array (
$this->Itemid
);
$count = 20; // maximum levels - to prevent runaway loop
$id = $this->Itemid;

while (-- $count)
{
if (isset($cacheIndex[$id])) {
$index = $cacheIndex[$id];
if (isset ($rows[$index]) && $rows[$index]->parent > 0) {
$id = $rows[$index]->parent;
$open[] = $id;
} else {
break;
}
}
}
$this->open = $open;
// $this->items = $rows;
}

function getParam($paramName){
return $this->_params->get($paramName);
}

function setParam($paramName, $paramValue){
return $this->_params->set($paramName, $paramValue);
}

function beginMenu($startlevel=0, $endlevel = 10){
echo "<div>";
}
function endMenu($startlevel=0, $endlevel = 10){
echo "</div>";
}

function beginMenuItems($pid=0, $level=0){
echo "<ul>";
}
function endMenuItems($pid=0, $level=0){
echo "</ul>";
}

function beginMenuItem($mitem=null, $level = 0, $pos = ''){
echo "<li>";
}
function endMenuItem($mitem=null, $level = 0, $pos = ''){
echo "</li>";
}

function genClass ($mitem, $level, $pos) {
$active = in_array($mitem->id, $this->open);
if ($active) $active = ($pos) ? "class=\"active $pos-item\"" : "class = \"active\"";
else $active = ($pos) ? "class=\"$pos-item\"" : "";

return $active;
}

function genMenuItem($item, $level = 0, $pos = '', $ret = 0)
{
$data = null;

// Menu Link is a special type that is a link to another item
if ($item->type == 'menulink')
{
$menu = &JMenu::getInstance();
if (!$tmp = clone($menu->getItem($item->query))) {
return false;
}
} else {
$tmp = $item;
}

$iParams =& new JParameter($tmp->params);
if ($iParams->get('menu_image') && $iParams->get('menu_image') != -1) {
$image = '<img src="images/stories/'.$iParams->get('menu_image').'" alt="" />';
} else {
$image = null;
}
if ($tmp->type == 'separator')
{
return '<a href="#" title=""><span class="separator">'.$image.$tmp->name.'</span></a>';
}

// Print a link if it exists
$active = $this->genClass ($tmp, $level, $pos);

$id='id="menu' . $tmp->id . '"';
$txt = '<span>' . $tmp->name . '</span>';
$title = "title=\"$tmp->name\"";

if ($tmp->url != null)
{
switch ($tmp->browserNav)
{
default:
case 0:
// _top
$data = '<a href="'.$tmp->url.'" '.$active.' '.$id.' '.$title.'>'.$image.$txt.'</a>';
break;
case 1:
// _blank
$data = '<a href="'.$tmp->url.'" target="_blank" '.$active.' '.$id.' '.$title.'>'.$image.$txt.'</a>';
break;
case 2:
// window.open
$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,'.$this->_params->get('window_open');

// hrm...this is a bit dickey
$link = str_replace('index.php', 'index2.php', $tmp->url);
$data = '<a href="'.$link.'" onclick="window.open(this.href,\'targetWindow\',\''.$attribs.'\');return false;" '.$active.' '.$id.' '.$title.'>'.$image.$txt.'</a>';
break;
}
} else {
$data = '<a '.$active.' '.$id.' '.$title.'>'.$image.$txt.'</a>';
}

if ($ret) return $data; else echo $data;

}

function hasSubMenu($level) {
$pid = $this->getParentId ($level);
if (!$pid) return false;
return $this->hasSubItems ($pid);
}
function hasSubItems($id){
if (@$this->children[$id]) return true;
return false;
}
function genMenu($startlevel=0, $endlevel = 10){
$this->setParam('startlevel', $startlevel);
$this->setParam('endlevel', $endlevel);
$this->beginMenu($startlevel, $endlevel);

if ($this->getParam('startlevel') == 0) {
//First level
$this->genMenuItems (0, 0);
}else{
//Sub level
$pid = $this->getParentId($this->getParam('startlevel'));
if ($pid)
$this->genMenuItems ($pid, $this->getParam('startlevel'));
}
$this->endMenu($startlevel, $endlevel);
}

/*
$pid: parent id
$level: menu level
$pos: position of parent
*/

function genMenuItems($pid, $level) {
if (@$this->children[$pid]) {
$this->beginMenuItems($pid, $level);
$i = 0;
foreach ($this->children[$pid] as $row) {
$pos = ($i == 0 ) ? 'first' : (($i == count($this->children[$pid])-1) ? 'last' :'');

$this->beginMenuItem($row, $level, $pos);
$this->genMenuItem( $row, $level, $pos);

// show menu with menu expanded - submenus visible
if ($level < $this->getParam('endlevel')) $this->genMenuItems( $row->id, $level+1 );
$i++;

if ($level == 0 && $pos == 'last' && in_array($row->id, $this->open)) {
global $jaMainmenuLastItemActive;
$jaMainmenuLastItemActive = true;
}
$this->endMenuItem($row, $level, $pos);
}
$this->endMenuItems($pid, $level);
}
}

function indentText($level, $text) {
echo "\n";
for ($i=0;$i<$level;++$i) echo " ";
echo $text;
}

function getParentId ($level) {
if (!$level || (count($this->open) < $level)) return 0;
return $this->open[count($this->open)-$level];
}

function getParentText ($level) {
$pid = $this->getParentId ($level);
if ($pid) {
return $this->items[$pid]->name;
}else return "";
}

}
}
?>

Please Entrar ou Registrar to join the conversation.