Jump to content

Can't access my forum, please help?


Nukeproof Mega

Recommended Posts

I'm getting a blank white page (in Firefox) which can indicate a php error.

Does your admin panel work at all ? , try adding /admin to the end of the URL

If it does not: Submit a ticket in the Client Area for assistance with this. It *could* be a hosting concern but that seems unlikely.

 

Link to comment
Share on other sites

Did you update your website with last version of IPB (4.1.10) and are you using Steam login app ?

If yes just update Steam login app too.

I did the same problem (blank page) because steam login app was not up to date.

Link to comment
Share on other sites

If you have any custom login handlers, they may have broken in the upgrade, because there were some breaking changed (if you were using the latest version of steam login, it was fixed, but otherwise that's likely to be the issue). If you do have any 3rd party login handlers, you should be able to fix it by making a file with the following contents:

<?php

include "init.php";

foreach ( \IPS\Plugin::plugins() as $plugin ){
	if ( $plugin->enabled ) {
		$plugin->enabled = FALSE;
		$plugin->save();
					
		echo "Disabled {$plugin->_title}<br/>";
	}
}

and give it a .php extension, then upload it to the root directory of your IPS installation, in the same dir as init.php. Navigate to that page in your browser, and it should disable all your plugins and ouput a list of the plugins that it disabled.

You should then be able to access the site, and enable the plugins again.

DISCLAIMER: I haven't tested this code, but I think it should work. I'm not responsible if it makes your server spontaneously combust.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...