Urgente problema no meu jooma "Not Acceptable"

  • Avatar de Autor do Tópico
  • Visitante
  • Visitante
16 anos 6 meses atrás #3629 por
created the topic: Urgente problema no meu jooma "Not Acceptable"
Olá pessoal alguem pode me ajudar...
Estou tendo problemas quando edito algum tipo de conteudo no meu joomla após editar a materia do site quando clico em "APLICAR" ou "SALVAR" aparece o seguinte erro com a menssagem: >>>>>>>>>>>>>>>

Not Acceptable

An appropriate representation of the requested resource /administrator/index2.php could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8b mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.8 mod_perl/2.0.4 Perl/v5.8.8 Server at cnip.com.br Port 80 <<<<<<<<<<<<

Outro erro que ocorre é com o "Community Builder" quando é colocado alguma foto no perfil do usuario a mesma não é aceita pelo sist e da um erro não podendo ser inserida a foto no perfil do mesmo... oque acotece é que eu ja verifiquei as permições e esta tudo certo as permições estão em 777 para as pastas que necessitam desta permição...

Por favor se alguem puder me ajudar fico muitpo grato pois ja não sei mais oque fazer..
Obrigado a todos e agurado resposta...

Abraços

Please Entrar ou Registrar to join the conversation.


Mais
16 anos 6 meses atrás #3632 por Aureo
Aureo replied the topic: Re: Urgente problema no meu jooma &quot;Not Acceptable&quot;
No configurations.php mude a linha que tem:
	var $force_ssl = 'x';

para
var $force_ssl = '0';

Para ver, por favor retorne!

Sobre a foto, abra um tópico em separado, é outro assunto.

Please Entrar ou Registrar to join the conversation.

Mais
14 anos 6 meses atrás #46538 por CruzDesigner
CruzDesigner replied the topic: Re: Urgente problema no meu jooma &quot;Not Acceptable&quot;
Olá, instalei o componente Acymailing varias vezes e sempre correu tudo bem, instalei agora para um cliente e ocorre o seguinte erro:

Not Acceptable

An appropriate representation of the requested resource /administrator/index.php could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Por favor me ajudem...Obrigado.

Please Entrar ou Registrar to join the conversation.

Mais
14 anos 6 meses atrás #46543 por Aureo
Aureo replied the topic: Re: Urgente problema no meu jooma &quot;Not Acceptable&quot;

CruzDesigner escreveu: Olá, instalei o componente Acymailing varias vezes e sempre correu tudo bem, instalei agora para um cliente e ocorre o seguinte erro:

Not Acceptable

An appropriate representation of the requested resource /administrator/index.php could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Por favor me ajudem...Obrigado.


A Página index.php do diretório Administrator está com algum erro, se vc a modificou procure arrumá-la.

Please Entrar ou Registrar to join the conversation.

Mais
14 anos 6 meses atrás #46544 por CruzDesigner
CruzDesigner replied the topic: Re: Urgente problema no meu jooma &quot;Not Acceptable&quot;

DJ Anael escreveu:

CruzDesigner escreveu: Olá, instalei o componente Acymailing varias vezes e sempre correu tudo bem, instalei agora para um cliente e ocorre o seguinte erro:

Not Acceptable

An appropriate representation of the requested resource /administrator/index.php could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Por favor me ajudem...Obrigado.


A Página index.php do diretório Administrator está com algum erro, se vc a modificou procure arrumá-la.

Esta é minha index.php
Acredito que seja o template que não aceita!!
Da uma olhada por favor!

<?php

// Set flag that this is a parent file
define( '_JEXEC', 1 );

define('JPATH_BASE', dirname(__FILE__) );

define( 'DS', DIRECTORY_SEPARATOR );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );

JDEBUG ? $_PROFILER->mark( 'afterLoad' ) : null;

/**
* CREATE THE APPLICATION
*
* NOTE :
*/
$mainframe =& JFactory::getApplication('site');

/**
* INITIALISE THE APPLICATION
*
* NOTE :
*/
// set the language
$mainframe->initialise();

JPluginHelper::importPlugin('system');

// trigger the onAfterInitialise events
JDEBUG ? $_PROFILER->mark('afterInitialise') : null;
$mainframe->triggerEvent('onAfterInitialise');

/**
* ROUTE THE APPLICATION
*
* NOTE :
*/
$mainframe->route();

// authorization
$Itemid = JRequest::getInt( 'Itemid');
$mainframe->authorize($Itemid);

// trigger the onAfterRoute events
JDEBUG ? $_PROFILER->mark('afterRoute') : null;
$mainframe->triggerEvent('onAfterRoute');

/**
* DISPATCH THE APPLICATION
*
* NOTE :
*/
$option = JRequest::getCmd('option');
$mainframe->dispatch($option);

// trigger the onAfterDispatch events
JDEBUG ? $_PROFILER->mark('afterDispatch') : null;
$mainframe->triggerEvent('onAfterDispatch');

/**
* RENDER THE APPLICATION
*
* NOTE :
*/
$mainframe->render();

// trigger the onAfterRender events
JDEBUG ? $_PROFILER->mark('afterRender') : null;
$mainframe->triggerEvent('onAfterRender');

/**
* RETURN THE RESPONSE
*/
echo JResponse::toString($mainframe->getCfg('gzip'));

Please Entrar ou Registrar to join the conversation.