Error on page "Manage Users". Please help!
After installing some plugins found that an error occurred either on the "Manage users" in the admin, and the plugin states:
InvalidParameterException
Profile/2000small.jpg File (file guid: 0) (owner guid: 2000) is missing an owner (owner)!
Can you help me, I'm very new to programming and do not know much, I admit I am nub ... Please tell me what page, line and what to change. I ask this favor to colleagues on duty.
Thank you for listening and sorry for English.
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Team Webgalli@webgalli

Team Webgalli - 0 likes
- Creating a file called repair.php inside your Elgg installation
- Add the following code and hit the page in browser (http://elggsite.com/repair.php after loging in as admin)
- iionly@iionly

iionly - 0 likes
- Team Webgalli@webgalli

Team Webgalli - 0 likes
You must log in to post replies.This can be due to a DB crash, probably because you are on a shaared host. Assuming you are on Elgg 1.8 try,
require_once(dirname(__FILE__) . "/engine/start.php");
$user = get_user(2000);
If(!$user->delete()){
echo "Coudnot dlete user";
} else {
echo "Deleted the wrong user";
}
die;
If you are on 1.7.X try the DB validator plugin
It should be possible to fix this error using the Database validator plugin:
http://community.elgg.org/pg/plugins/project/438616/developer/costelloc/database-validator
(Version 1.4 is for Elgg 1.8)
Check your database with a "Validate" run. In case the plugin tells you there are errors, make a backup of your database (to be on the sage side) and then run "Repair".
Ah.. Just noticed the V1.4 of the DB validator plugin (thanks iionly).
@Deiverson : So you just need to use that plugin. No need of creating the above php page.