- Fórum
- /
- Suporte Joomla
- /
- Administração
- /
- Joomla 1.5
- /
- Urgente problema no meu jooma "Not Acceptable"
Urgente problema no meu jooma "Not Acceptable"
-
Autor do Tópico
- Visitante
-
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.
- Aureo
-
- Offline
- JCB! Legend
-
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.
- CruzDesigner
-
- Offline
- JCB! Novato
-
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.
- Aureo
-
- Offline
- JCB! Legend
-
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.
- CruzDesigner
-
- Offline
- JCB! Novato
-
Esta é minha index.phpDJ 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.
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.