Bug not Found problem

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
aggiedj02
Posts: 5
Joined: 10 Mar 2005, 15:02

Bug not Found problem

Post by aggiedj02 »

when I am in either the view page, or the my_view page, and go to click on a specific bug to edit or look at, it throws an application error
APPLICATION ERROR #1100
Issue 6 not found.

Please use the "Back" button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section.



I can not figure out what the PHP code is doing to throw this error. I can make new bugs and assign bugs, but I can not look at them. Is there a fix to this? Am I missing something here?
Guest

Post by Guest »

okay I know I have not gotten a reply, but here is more information as I have debugged some of it so far:

bug_api.php is going to the DB and grabbing the data out of the database and returing the result set back to mantis. When I do a echo $result; I get the data in the pure form as plain unformatted text.

An echo of the variable $row gives me a value of array, which I don't quite understand, as that vaue is what is returned. When I force row to an actual value, I still get the error.

Since the first 9 people could not help who looked at this, does this added information help anyone? Please help me out.
Narcissus
Developer
Posts: 338
Joined: 17 Feb 2005, 09:45

Post by Narcissus »

Although I can't give you any help regarding the actual issue, the reason $row is print as array is because row is an array (surprisingly enough).

To see data in an array you need to use print_r(). Also I would suggest a <pre> / </pre> combination around that output:

print "<pre>";
print_r( $row );
print "</pre>";

Now you should be able to better see what is in that row...
Post Reply