XF 1.5 Forum up. Admin pages down.

Paul

Well-known member
Following on from my nightmare day yesterday, things have calmed a little. PHP was upgraded this morning from 5.6.25 to 7.2, and after a few teething issues (host forgot to enable some of the php extensions!) the forum is up and working... in a fashion.

Users can access the forum and post with no issues at all.

However, I cannot get into the AdminCP.

I get a standard error "An unexpected error occurred. Please try again later.", with nothing else hidden in the source on that page.

Does anyone have any clues as to where to start to locate this please? seems very strange that the board functions work, however Admin functions dont...

Many thanks for any pointers :)
 
I have disabled all the Add-ons by using the following:

$config['enableListeners'] = false;

And i can see the following error in the AdminCP, which i can now get into (Temporarily)...

Error: Call to undefined function iconv_strlen() - library/Zend/Validate/Hostname.php:1263
Generated By: Unknown Account, 3 minutes ago
Stack Trace #0 /home/pinball/public_html/community/library/Zend/Uri/Http.php(449): Zend_Validate_Hostname->isValid('xfrocks.com')
#1 /home/pinball/public_html/community/library/Zend/Uri/Http.php(281): Zend_Uri_Http->validateHost()
#2 /home/pinball/public_html/community/library/Zend/Uri/Http.php(154): Zend_Uri_Http->valid()
#3 /home/pinball/public_html/community/library/Zend/Uri.php(143): Zend_Uri_Http->__construct('https', '//xfrocks.com/a...')
#4 /home/pinball/public_html/community/library/Zend/Uri.php(75): Zend_Uri::factory(Array)
#5 /home/pinball/public_html/community/library/bdTagMe/ShippableHelper/Updater.php(49): Zend_Uri::check('https://xfrocks...')
#6 /home/pinball/public_html/community/library/bdTagMe/Listener.php(40): bdTagMe_ShippableHelper_Updater::eek:nInitDependencies(Object(XenForo_Dependencies_Admin), 'https://xfrocks...')
#7 /home/pinball/public_html/community/library/XenForo/CodeEvent.php(90): bdTagMe_Listener::init_dependencies(Object(XenForo_Dependencies_Admin), Array)
#8 /home/pinball/public_html/community/library/XenForo/Dependencies/Abstract.php(215): XenForo_CodeEvent::fire('init_dependenci...', Array)
#9 /home/pinball/public_html/community/library/XenForo/FrontController.php(127): XenForo_Dependencies_Abstract->preLoadData()
#10 /home/pinball/public_html/community/admin.php(13): XenForo_FrontController->run()
#11 {main}
Request State array(3) {
["url"] => string(46) "http://www.xxxxxxxxxx.com/community/admin.php"
["_GET"] => array(0) {
}
["_POST"] => array(0) {
}
}


seems to be happening with anything that involves an external link...
 
PHP was upgraded this morning from 5.6.25 to 7.2, and after a few teething issues (host forgot to enable some of the php extensions!)
Error: Call to undefined function iconv_strlen()
Hi Paul, it looks like you're still missing some PHP extensions, specifically iconv.

Make sure your host has installed the following PHP extensions as per the XenForo requirements below:
XenForo System Requirements
  • PHP: 5.4.0+
  • MySQL: 5.5+
  • PHP extensions: MySQLi, GD (with JPEG support), PCRE, cURL, SPL, SimpleXML, DOM, JSON, iconv, ctype
  • Common PHP functions must not be disabled
 
Top Bottom