Jump to content

Проблема с входом в админпанель

Featured Replies

Posted
comment_103244

Собственно говоря проблема следующая, сайт работает, активно все модули которые на нем стоят, но при входе в админку после ввода логина и пароля выдает 500 ошибку:

Request Timeout

This request takes too long to process, it is timed out by the server. If it should not be timed out, please contact administrator of this web site to increase 'Connection Timeout'. 

Кто может подсказать решение данной проблемы?

 

Заранее спасибо.

 

P.S.:

Вот если что error.log

2016-03-19 10:42:00.700 [NOTICE] [] Content len: 0, Request line: 'GET /admin/index.php?adsess=eee5cd10a5a56367e741ff176c124873 HTTP/1.1'
2016-03-19 10:58:57.805 [NOTICE] [] Content len: 0, Request line: 'GET /admin/index.php?adsess=8c131e1505ecc4234625ab99d0e7feb9 HTTP/1.1'

А вот если что access.log

 - - [19/Mar/2016:10:41:25 +0300] "GET /admin/index.php HTTP/1.1" 200 1718 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0"
 - - [19/Mar/2016:10:41:29 +0300] "POST /admin/index.php?adsess=&app=core&module=login&do=login-complete HTTP/1.1" 302 - "http://forum.l-ao.ru/admin/index.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0"
 - - [19/Mar/2016:10:41:29 +0300] "GET /admin/index.php?adsess=eee5cd10a5a56367e741ff176c124873 HTTP/1.1" 200 - "http://forum.l-ao.ru/admin/index.php" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0"

 

comment_103256
1 час назад, barsiko7 сказал:

Кто может подсказать решение данной проблемы?

Обновление форума. При входе в АЦ форум пытается получить новости. А т.к. ips изменили адрес, то форум долбится до потери пульса в никуда, пока запрос не обрубается по таймауту.

comment_103260

Кстати много у кого такая проблема, не знаю почему в IPS не предусмотрели этот момент..

comment_103263
9 минут назад, Respected сказал:

Кстати много у кого такая проблема, не знаю почему в IPS не предусмотрели этот момент..

Я посмотрел 3.4.6. Там корректные ссылки. С тех пор прошло достаточно времени.

 

12 минут назад, barsiko7 сказал:

Хм... Хорошо а как обновить тогда если доступа в АЦ нету?!

Для обновления не нужен АЦ, насколько я помню.

В принципе можете открыть admin/applications/core/modules_admin/mycp/dashboard.php и удалить/закомментировать 

		$ipsNewsData = $this->cache->getCache( 'ipsNewsData' );
		if ( !isset( $ipsNewsData['time'] ) or $ipsNewsData['time'] < ( time() - 43200 ) ) // 12 hour cache
		{
			$classToLoad = IPSLib::loadLibrary( IPS_KERNEL_PATH . 'classFileManagement.php', 'classFileManagement' );
			$classFileManagement = new $classToLoad();
			$classFileManagement->timeout = 5;
			
			if( strpos( $this->settings['base_url'], 'https://' ) !== false )
			{
				$ipsNewsData['news'] = $classFileManagement->getFileContents( 'https://external.ipslink.com/ipboard33/dashboard/index.php?v=' . ipsRegistry::$vn_full );
				$ipsNewsData['vcheck'] = $classFileManagement->getFileContents( 'https://external.ipslink.com/latestversioncheck/ipb30x.php?' . base64_encode( ipsRegistry::$vn_full.'|^|'.$this->settings['board_url'] ) );
			}
			else
			{
				$ipsNewsData['news'] = $classFileManagement->getFileContents( 'http://external.ipslink.com/ipboard33/dashboard/index.php?v=' . ipsRegistry::$vn_full );
				$ipsNewsData['vcheck'] = $classFileManagement->getFileContents( 'http://external.ipslink.com/latestversioncheck/ipb30x.php?' . base64_encode( ipsRegistry::$vn_full.'|^|'.$this->settings['board_url'] ) );
			}
			
			$ipsNewsData['time'] = time();
			
			$this->cache->setCache( 'ipsNewsData', $ipsNewsData, array( 'array' => 1 ) );
		}

Ищите подобное, т.к. это из 3.4.9.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.