View Issue Details

IDProjectCategoryView StatusLast Update
0003628mantisbtbugtrackerpublic2004-08-29 02:26
Reporterralfiii Assigned Tograngeway  
PrioritynormalSeverityminorReproducibilityN/A
Status closedResolutionfixed 
Summary0003628: Bug "frozen" after user deleted
Description

For testing resons I created users, reported bugs... and deleted some users again. Now I am left with a bug that shows an "APPLICATION ERROR # 801, User not found" error.

This bug can't be edited or deleted.

TagsNo tags attached.

Relationships

has duplicate 0003374 closedint2str APPLICATION ERROR #801user not found 
has duplicate 0004192 closedgrangeway Strange inclusion on MANTIS issue report page causes page breakage 
has duplicate 0003940 closedgrangeway Deleteing a user causes error 0000801 in bug with user in history. 
child of 0003987 closedvboctor Mantis 0.19.0 Release 

Activities

vboctor

vboctor

2004-03-03 05:42

manager   ~0005155

Which version of Mantis are you using? What were you trying to do when you got such error?

ralfiii

ralfiii

2004-03-03 05:57

reporter   ~0005156

Last edited: 2004-03-21 10:53

V 0.18.2
I just wanted to clean up the system before I launch it.
You might want to look at the erroneous bug at
<URL removed after bug has been resolved>

Btw: Any way to set up the system to get email-notifications when new users sign in?

edited on: 03-21-04 10:53

Leira_

Leira_

2004-03-05 01:47

reporter   ~0005174

vboctor:
u c,y would u ask which version? mantis,a bug tracking tool, when report a bug, still need to ask the reporter "which version"?!!

y didn't u add the version field in the database?? i think there r 2 version fields needed: the version the bug rise, and the version the bug resolved when change the status to Resolved.

we r using matis for our bug-tracking,it's a wonerfull tool~! but the important featcher we need, to track bug by version, it has not. we try to add by ourselves, but there r some problems: if we modify the database schema, we will meet the update problem when new version of mantis released;if we use the custom field, maybe we can not get the quick search advantage, and still, the update problem when mantis add this featcher.

ralfiii

ralfiii

2004-03-05 04:50

reporter   ~0005175

There is a version field for the report but only in the advanced report.
However, including a field "fixed in release" could have the advantage, that it would add the possility to generate a change-history out of Mantis.

JimB

JimB

2004-03-17 09:14

reporter   ~0005226

This worked for me. Change the line in user_api.php, function user_get_field() from:
$row = user_get_row( $p_user_id );

To:

To avoid "User not found" error

  # $row = user_get_row( $p_user_id );
  $row = user_cache_row( $p_user_id, false );
  if ( false === $row ) {
     return '';
  }
ralfiii

ralfiii

2004-03-21 10:52

reporter   ~0005235

Thanks JimB, after this change I was able to delete this damaged db-entry.

grangeway

grangeway

2004-07-26 06:46

reporter   ~0006362

It appears that this is fixed in the 0.19 alpha's already