Page 1 of 1

APPLICATION ERROR #1100 on my_view_page.php

Posted: 01 Apr 2016, 10:11
by dimas
Hi,

I've Mantis 1.3 RC1 installed and today all users view this error when they try to access My View page:

APPLICATION ERROR #1100 Issue 4259 not found

I don't really have many issues, most 400.

What can I do?

Thx

Re: APPLICATION ERROR #1100 on my_view_page.php

Posted: 01 Apr 2016, 10:35
by dimas
I tried to logout, change the browser, ... but the same error appears

Re: APPLICATION ERROR #1100 on my_view_page.php

Posted: 04 Apr 2016, 11:10
by atrol
Have you any plugins installed?

Re: APPLICATION ERROR #1100 on my_view_page.php

Posted: 05 Apr 2016, 06:42
by dimas
atrol wrote:Have you any plugins installed?
Apart from official just Source, SourceSVN and SourceWebSVN: https://i.imgur.com/V95P3XX.png
And it have long been installed.

Re: APPLICATION ERROR #1100 on my_view_page.php

Posted: 05 Apr 2016, 07:11
by atrol
There is a known bug in source plugin when a non-existing issue is referenced in a commit message.
This leads to a problem when displaying the timeline.

Try the following fix in function history_get_event_from_row in file core/history_api.php

After line

Code: Select all

		extract( $t_row, EXTR_PREFIX_ALL, 'v' );
Add lines

Code: Select all

               if( !bug_exists( $v_bug_id ) ) {
                       continue;
               }

Re: APPLICATION ERROR #1100 on my_view_page.php

Posted: 05 Apr 2016, 07:18
by dimas
It works!!! Thx :D :D