APPLICATION ERROR #1100 on my_view_page.php

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
dimas
Posts: 15
Joined: 20 Jan 2015, 15:41

APPLICATION ERROR #1100 on my_view_page.php

Post 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
dimas
Posts: 15
Joined: 20 Jan 2015, 15:41

Re: APPLICATION ERROR #1100 on my_view_page.php

Post by dimas »

I tried to logout, change the browser, ... but the same error appears
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: APPLICATION ERROR #1100 on my_view_page.php

Post by atrol »

Have you any plugins installed?
Please use Search before posting and read the Manual
dimas
Posts: 15
Joined: 20 Jan 2015, 15:41

Re: APPLICATION ERROR #1100 on my_view_page.php

Post 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.
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: APPLICATION ERROR #1100 on my_view_page.php

Post 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;
               }
Please use Search before posting and read the Manual
dimas
Posts: 15
Joined: 20 Jan 2015, 15:41

Re: APPLICATION ERROR #1100 on my_view_page.php

Post by dimas »

It works!!! Thx :D :D
Post Reply