Pequenos problemas no site

  • illumi
  • Avatar de illumi Autor do Tópico
  • Offline
  • JCB! Junior
  • JCB! Junior
Mais
15 anos 6 meses atrás #28272 por illumi
illumi replied the topic: Re: Pequenos problemas no site
olá Trorram

Não entendi direito .... seria isso?

[color=#FF4000:22kqm80i]Procurando um forum de sobrevivência?[/color:22kqm80i]
[b:22kqm80i][url:22kqm80i]http://sobrevivencialismo.org/forum/[/url:22kqm80i][/b:22kqm80i]

Please Entrar ou Registrar to join the conversation.

  • illumi
  • Avatar de illumi Autor do Tópico
  • Offline
  • JCB! Junior
  • JCB! Junior
Mais
15 anos 6 meses atrás #28589 por illumi
illumi replied the topic: Re: Pequenos problemas no site
Ainda continua os "Falha no carregamento", alguma idéia?
valeu!!

[color=#FF4000:22kqm80i]Procurando um forum de sobrevivência?[/color:22kqm80i]
[b:22kqm80i][url:22kqm80i]http://sobrevivencialismo.org/forum/[/url:22kqm80i][/b:22kqm80i]

Please Entrar ou Registrar to join the conversation.

  • illumi
  • Avatar de illumi Autor do Tópico
  • Offline
  • JCB! Junior
  • JCB! Junior
Mais
15 anos 6 meses atrás #29355 por illumi
illumi replied the topic: Re: Pequenos problemas no site
? alguem pode ajudar? não conheço outro lugar que posso pedir ajuda <!-- s:( --><img src="{SMILIES_PATH}/icon_e_sad.gif" alt=":(" title="Triste" /><!-- s:( -->

[color=#FF4000:22kqm80i]Procurando um forum de sobrevivência?[/color:22kqm80i]
[b:22kqm80i][url:22kqm80i]http://sobrevivencialismo.org/forum/[/url:22kqm80i][/b:22kqm80i]

Please Entrar ou Registrar to join the conversation.

Mais
14 anos 8 meses atrás #43763 por moving
moving replied the topic: Re: Pequenos problemas no site
O Problema da Mensagem Falha ao carregar notícias. É algum Modulo que tinha um link de Feed (RRS/Aton) que esta com o link quebrado. É so desativar o modulo em questão que a mensagem desaparece.

Essa mensagem esta localizada no arquivo

"\libraries\joomla\document\html\renderer" o arquivo menssage.php

Se você comentar return $contents; deixando como /* return $contents; */ o problema some, mas você vai deixar de receber algumas mensagens de aviso do sistema como por Exemplo de permissões que o visitantes. "Você já votou nesse artigo hoje" por exemplo)
		// If messages exist render them
		if (is_array($lists))
		{
			// Build the return string
			$contents .= "\n<dl id=\"system-message\">";
			foreach ($lists as $type => $msgs)
			{
				if (count($msgs)) {
					$contents .= "\n<dt class=\"".strtolower($type)."\">".JText::_( $type )."</dt>";
					$contents .= "\n<dd class=\"".strtolower($type)." message fade\">";
					$contents .= "\n\t<ul>";
					foreach ($msgs as $msg)
					{
						$contents .="\n\t\t<li>".$msg."</li>";
					}
					$contents .= "\n\t</ul>";
					$contents .= "\n</dd>";
				}
			}
			$contents .= "\n</dl>";
		}
		 return $contents;
	}
}

Ficando da Seguinte forma
		// If messages exist render them
		if (is_array($lists))
		{
			// Build the return string
			$contents .= "\n<dl id=\"system-message\">";
			foreach ($lists as $type => $msgs)
			{
				if (count($msgs)) {
					$contents .= "\n<dt class=\"".strtolower($type)."\">".JText::_( $type )."</dt>";
					$contents .= "\n<dd class=\"".strtolower($type)." message fade\">";
					$contents .= "\n\t<ul>";
					foreach ($msgs as $msg)
					{
						$contents .="\n\t\t<li>".$msg."</li>";
					}
					$contents .= "\n\t</ul>";
					$contents .= "\n</dd>";
				}
			}
			$contents .= "\n</dl>";
		}
		 /* return $contents; */
	}
}

Please Entrar ou Registrar to join the conversation.