Страница: 1 |
Ага, только не для Оперы: Server Error in '/' Application. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off". <!-- Web.Config Configuration File --> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <!-- Web.Config Configuration File --> Не, нифига. Глючит всё пострашному. Если логиниться в любом месте кроме форума - получаешь: ------------------------------------------------------------------ Response object error 'ASP 0158 : 80004005' Missing URL /online/enter.asp, line 53 A URL is required. (но всё равно логинит) Если вылогиниваться в любом месте, получаешь: ----------------------------------------------------------------- Response object error 'ASP 0158 : 80004005' Missing URL /online/exit.asp, line 9 A URL is required. (но всё равно разлогинивает) Если логиниться в форуме, получаешь, как уже и говолили: ----------------------------------------------------------------- Server Error in '/' Application. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off". <configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <configuration> ----------------------------------------------------------------- (это на странице: http://vbnet.ru/online/enter.aspx) Страница: 1 |
Вопрос: Глюк форума, зайти никуда не могу!!!!!
Добавлено: 24.05.04 09:09
Автор вопроса: LamerOnLine | ICQ: 334781088
Server Error in '/' Application.
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
NewVBNet.ForumShow.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\NewVBNet\Forum\Show.aspx.vb:87
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
Ответы
Всего ответов: 14
Номер ответа: 1
Автор ответа:
Павел
Администратор
ICQ: 326066673
Вопросов: 368
Ответов: 5968
Web-сайт:
Профиль | | #1
Добавлено: 24.05.04 10:22
Сорри, глюк исправил.
Номер ответа: 2
Автор ответа:
LamerOnLine
ICQ: 334781088
Вопросов: 108
Ответов: 2822
Профиль | | #2
Добавлено: 27.05.04 09:51
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
Номер ответа: 3
Автор ответа:
sne
Разработчик Offline Client
ICQ: 233286456
Вопросов: 34
Ответов: 5445
Web-сайт:
Профиль | | #3
Добавлено: 27.05.04 10:28
В опере - все руль!
Номер ответа: 4
Автор ответа:
digitron
Вопросов: 2
Ответов: 23
Профиль | | #4
Добавлено: 27.05.04 19:32
-----------------------------------------------------------------
-----------------------------------------------------------------
--------------------------------------------------------------------------------
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
<!-- Web.Config Configuration File -->
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
<!-- Web.Config Configuration File -->
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
Номер ответа: 5
Автор ответа:
User Unknown
Вечный Юзер!
ICQ: uu@jabber.cz
Вопросов: 120
Ответов: 3302
Профиль | | #5
Добавлено: 27.05.04 19:38
Включи referrer и все будет нормально.
Номер ответа: 6
Автор ответа:
digitron
Вопросов: 2
Ответов: 23
Профиль | | #6
Добавлено: 27.05.04 19:45
Что есть такое "referrer"?
Номер ответа: 7
Автор ответа:
Павел
Администратор
ICQ: 326066673
Вопросов: 368
Ответов: 5968
Web-сайт:
Профиль | | #7
Добавлено: 31.05.04 06:54
Некоторые прокси-серверы, браузеры, файрволы и прочая муть отрубают
HTTP-заголовок Referre, который указывает, на какой странице юзер был
до того, как перешёл на другую. Именно из этого заголовка код
залогинивания/разлогинивания узнаёт, на какой странице пользователь
находился и перебрасывает его туда же. Поэтому если поле Referre
обрезается, возникают глюки.
Номер ответа: 8
Автор ответа:
digitron
Вопросов: 2
Ответов: 23
Профиль | | #8
Добавлено: 31.05.04 12:17
Ну во-первых, если это известная и распространённая проблема, почему нельзя переписать код так, чтобы referrer не использовался?
А во-вторых, можно было бы хотябы обработчик ошибок аккуратный поставить.
Номер ответа: 9
Автор ответа:
Павел
Администратор
ICQ: 326066673
Вопросов: 368
Ответов: 5968
Web-сайт:
Профиль | | #9
Добавлено: 31.05.04 17:42
Исправим. Записал на бамажку.
Номер ответа: 10
Автор ответа:
digitron
Вопросов: 2
Ответов: 23
Профиль | | #10
Добавлено: 31.05.04 18:45
Спасибо
Номер ответа: 11
Автор ответа:
__Сергей__
Вопросов: 7
Ответов: 23
Профиль | | #11
Добавлено: 01.06.04 21:26
1.06.04 21-25 Mozilla тоже в форум не входит
Номер ответа: 12
Автор ответа:
AASoft
Вопросов: 86
Ответов: 920
Профиль | | #12
Добавлено: 01.06.04 21:41
Vo, ya tut vot chto tochno nakopal. ve sdelajte tak:
logout, zakrojte browser, otkrojte ego zanovo, idite na http://vbnet.ru/forum/, posle etogo IMENNO TAM logintes`, i vse pojdet kak po maslu. pokraenej mere na 2k, XP, and NT imenno tak. vsezde IE6.
Номер ответа: 13
Автор ответа:
__Сергей__
Вопросов: 7
Ответов: 23
Профиль | | #13
Добавлено: 01.06.04 21:48
Ни фига я так пробовал, винь -98, правда Mozilla.
Взял зашел ie6 всё работает ;-(
Жаль что админы только под ie правят свои ошибки.
Номер ответа: 14
Автор ответа:
Павел
Администратор
ICQ: 326066673
Вопросов: 368
Ответов: 5968
Web-сайт:
Профиль | | #14
Добавлено: 02.06.04 05:39
Дело в том, что у меня мозиллы нету Я тестил только в IE6 и
Opera 7.23. В них всё отлично.