Usualy this is caused because you have upgraded from a version that used different css. Just refresh your BROWSER cache
Please use forum.joomla.org to find the solution (probable forgot to refresh your browser) for your issue. This repository is for software issues, not issues in your infrastructure.
Request this to be closed.
Well by the looks of it, none CSS file is in effect it may well be a PHP fatal error,
I agree that this is better posted to forum.joomla.org and not here !
Hello guys, thanks for reaply.
I have checked that Is not a problem of update..
As for the mistake, I checked the file "error_log" and found nothing about this problem. It makes me think it could be a problem of javascript, and yes.. this problem only occurs in the menu "Global Settings"
Regards!
Days ago i install and unistall the extensión Jdiction, and i found this file on root/
<?php
/**
class jddbproxyInstallerScript {
/**
* Constructor
*
* @param JAdapterInstance $adapter The object responsible for running this script
*/
public function __construct(JAdapterInstance $adapter) {
}
/**
* Called before any type of action
*
* @param string $route Which action is happening (install|uninstall|discover_install)
* @param JAdapterInstance $adapter The object responsible for running this script
*
* @return boolean True on success
*/
public function preflight($route, JAdapterInstance $adapter) {
switch ($route) {
case 'uninstall':
echo '<h2>'.JText::_("COM_JDICTION_UNINSTALLED").'</h2>';
echo '<p>'.JText::_("COM_JDICTION_UNINSTALLED_INFO").'</h2>';
// remove jdiction database driver from configuration.php
$fname = JPATH_CONFIGURATION.'/configuration.php';
$config = JFactory::getConfig();
$config->set('dbtype', str_replace('jdiction_', '',$config->get('dbtype')));
jimport('joomla.filesystem.file');
JFile::write($fname, $config->toString('PHP', array('class' => 'JConfig')));
break;
}
}
/**
* Called after any type of action
*
* @param string $route Which action is happening (install|uninstall|discover_install)
* @param JAdapterInstance $adapter The object responsible for running this script
*
* @return boolean True on success
*/
public function postflight($route, JAdapterInstance $adapter) {
switch ($route) {
case 'install':
echo '<h2>'.JText::_("COM_JDICTION_INSTALLED").'</h2>';
echo '<p>'.JText::_("COM_JDICTION_INSTALLED_INFO").'</h2>';
break;
case 'uninstall':
//can't becalled
break;
case 'discover_install':
echo '<h2>'.JText::_("COM_JDICTION_UNINSTALLED").'</h2>';
echo '<p>'.JText::_("COM_JDICTION_UNINSTALLED_INFO").'</h2>';
break;
case 'update':
echo '<h2>'.JText::_("COM_JDICTION_UPDATED").'</h2>';
echo '<p>'.JText::_("COM_JDICTION_UPDATED_INFO").'</h2>';
break;
}
}
/**
* Called on uninstallation
*
* @param JAdapterInstance $adapter The object responsible for running this script
*/
public function uninstall(JAdapterInstance $adapter) {
//Fallback because Joomla 2.5.4 doesn't call pre or postfilt on uninstall for type file
$this->preflight('uninstall', $adapter);
}
}
Did you try what i suggested about enabling error reporting ?
Hello, here three people in total have the same problem: http://forum.joomla.org/viewtopic.php?f=708&t=902727
And cant enable the error Reporting cuz css does not load, not display the buttom for save.
in error_log can see this error: /public_html/libraries/vendor/joomla/string/src/phputf8/mbstring/core.php on line 41
What do you think about this error?
Regards!
you have missed my instructions,
Inside Joomla root, edit file: configuration.php
Find line with "$error_reporting", and (temporarily) set like:
public $error_reporting = 'development';
then revisit the Global setting , a PHP fatal should appear
Hello ggppdk thanks for reply,
Can see this error: Fatal error: Class 'JdDatabase' not found in /home/inchjsok/public_html/libraries/joomla/database/driver/jdiction_mysqli.php on line 37
/home/inchjsok/public_html/plugins/system/section/section.php on line 27
Best Regards!
Ok it seems there is a JDiction system plugin called "section"
or uninstalling it via extension management
Hello, but i no have that plugin installed, because I uninstalled the extension jdiction. Cant find..
Regards!
Maybe something went wrong with uninstalling, it was half-uninstalled
possibly the system plugin "section" is NOT a plugin of JDiction
the fact that it is calling Jdiction DB driver, does not mean that it is a jDiction plugin
it can be of another extension, it maybe NEEDED , and something else may break after doing the following:
Try renaming:
/home/.../public_html/plugins/system/section/section.php
to
/home/.../public_html/plugins/system/section/section.bak
or backing up folder:
/home/.../public_html/plugins/system/section
and then deleting it.
Solved :)
PHP Fatal error: Class 'JdDatabase' not found in /~/libraries/joomla/database/[drive]/jdiction_mysqli.php on line 37, referer: http://~/administrator/index.php?option ... iew=manage
If I rename the jdiction_mysqli.php to ~.php__, the error has disappeared.
To solve the problem simply delete the file jdiction_mysqli.php
Located in: /~/libraries/joomla/database/[drive]/jdiction_mysqli.php
Thanks for the help ggppdk!
Best Regards!
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-12-19 21:15:43 |
Closed_By | ⇒ | adriannx |
Labels |
Added:
?
|
Maybe a 3rd party extension is doing this,
Find line with "$error_reporting", and (temporarily) set like: