Current time: 09-21-2024, 05:35 PM Hello There, Guest! (LoginRegister)


Post Reply 
Update Error 1.0.5 > 1.0.6
Author Message
sci2tech Away
Senior Member
****

Posts: 1,285
Joined: Jan 2007
Reputation: 23
Post: #9
RE: Update Error 1.0.5 > 1.0.6
(09-19-2010 11:18 PM)Aloukat Wrote:  CRITICAL ERROR: Module [File::Copy::Recursive] WAS NOT FOUND !

Modules [File::Copy::Recursive] WAS NOT FOUND in your system...

You miss a despondence. If you are using debian use apt-get to install libfile-copy-recursive-perl. Rebuild error can be orphan entry. test and clean using:
Code:
-- Check orphan admins not having domain
select * from `admin` where not exists (select `domain_admin_id` from `domain` where `domain`.`domain_admin_id` = `admin`.`admin_id`) AND `admin_type` not in ('reseller', 'admin')

-- check orphan domain (not having admin)
select * from `domain` where not exists (select `admin_id` from `admin` where `domain`.`domain_admin_id` = `admin`.`admin_id`)

-- check orphan domain trafic entries (not existing domain)
select * from `domain_traffic` where not exists (select `domain_id` from `domain` where `domain`.`domain_id` = `domain_traffic`.`domain_id`)

-- check orphan ftp groups entries (not existing domain)
select * from `ftp_group` where not exists (select `domain_gid` from `domain` where `domain`.`domain_gid` = `ftp_group`.`gid`)

-- check orphan ftp users entries (not existing domain)
select * from `ftp_users` where not exists (select `domain_uid` from `domain` where `domain`.`domain_uid` = `ftp_users`.`uid`)

-- check orphan ftp users entries (not existing ftp group)
select * from `ftp_users` where not exists (select `uid` from `ftp_group` where `ftp_group`.`gid` = `ftp_users`.`gid`)

-- check orphan htaccess entries (not existing domain)
select * from `htaccess` where not exists (select `domain_id` from `domain` where `domain`.`domain_id` = `htaccess`.`dmn_id`)

-- check orphan htaccess groups entries (not existing domain)
select * from `htaccess_groups` where not exists (select `domain_id` from `domain` where `domain`.`domain_id` = `htaccess_groups`.`dmn_id`)

-- check orphan htaccess users entries (not existing domain)
select * from `htaccess_users` where not exists (select `domain_id` from `domain` where `domain`.`domain_id` = `htaccess_users`.`dmn_id`)

-- check orphan mails users entries (not existing domain)
select * from `mail_users` where not exists (select `domain_id` from `domain` where `domain`.`domain_id` = `mail_users`.`domain_id`)

-- check orphan mails users entries (not existing subdomain)
select * from `mail_users` where not exists (select `subdomain_id` from `subdomain` where `subdomain`.`subdomain_id` = `mail_users`.`sub_id`) and `sub_id` != 0

-- check orphan quotalimits entries (not existing domain)
select * from `quotalimits` where not exists (select `domain_name` from `domain` where `domain`.`domain_name` = `quotalimits`.`name`)

-- check orphan quotatallies entries (not existing domain)
select * from `quotatallies` where not exists (select `domain_name` from `domain` where `domain`.`domain_name` = `quotatallies`.`name`)

-- check orphan databses records entries (not existing domain)
select * from `sql_database` where not exists (select `domain_id` from `domain` where `sql_database`.`domain_id`=`domain`.`domain_id`)

-- check orphan sql users records entries (not existing database)
select * from `sql_user` where not exists (select `sqld_id` from `sql_database` where `sql_user`.`sqld_id`=`sql_user`.`sqld_id`)

-- check orphan subdomains records entries (not existing domain)
select * from `subdomain` where not exists (select `domain_id` from `domain` where `domain`.`domain_id` = `subdomain`.`domain_id`)



-- check orphan gui props records entries (not existing uset)
select * from `user_gui_props` where not exists (select `admin_id` from `admin` where `user_gui_props`.`user_id` = `admin`.`admin_id`)
After that try update again.
09-20-2010 05:10 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
Update Error 1.0.5 > 1.0.6 - Aloukat - 09-16-2010, 07:32 AM
RE: Update Error 1.0.5 > 1.0.6 - Zothos - 09-16-2010, 08:02 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-17-2010, 05:47 AM
RE: Update Error 1.0.5 > 1.0.6 - ZooL - 09-17-2010, 12:48 PM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-18-2010, 06:33 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-19-2010, 11:18 PM
RE: Update Error 1.0.5 > 1.0.6 - sci2tech - 09-20-2010 05:10 AM
RE: Update Error 1.0.5 > 1.0.6 - nuke3d - 09-20-2010, 02:37 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-20-2010, 05:04 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-20-2010, 05:59 AM
RE: Update Error 1.0.5 > 1.0.6 - sci2tech - 09-20-2010, 06:03 AM
RE: Update Error 1.0.5 > 1.0.6 - nuke3d - 09-20-2010, 06:03 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-20-2010, 06:25 AM
RE: Update Error 1.0.5 > 1.0.6 - MasterTH - 09-20-2010, 06:59 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-20-2010, 07:55 AM
RE: Update Error 1.0.5 > 1.0.6 - Lucan - 09-21-2010, 12:04 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-21-2010, 03:01 AM
RE: Update Error 1.0.5 > 1.0.6 - Lucan - 09-21-2010, 10:17 PM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-24-2010, 03:27 AM
RE: Update Error 1.0.5 > 1.0.6 - Lucan - 09-24-2010, 03:47 AM
RE: Update Error 1.0.5 > 1.0.6 - ZooL - 09-24-2010, 08:40 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 09-25-2010, 04:16 AM
RE: Update Error 1.0.5 > 1.0.6 - ZooL - 09-25-2010, 06:30 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 10-03-2010, 12:26 AM
RE: Update Error 1.0.5 > 1.0.6 - ZooL - 10-03-2010, 12:56 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 10-03-2010, 01:07 AM
RE: Update Error 1.0.5 > 1.0.6 - ZooL - 10-03-2010, 04:47 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 10-04-2010, 03:34 AM
RE: Update Error 1.0.5 > 1.0.6 - ZooL - 10-04-2010, 07:45 AM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 10-04-2010, 06:46 PM
RE: Update Error 1.0.5 > 1.0.6 - ZooL - 10-04-2010, 08:39 PM
RE: Update Error 1.0.5 > 1.0.6 - Aloukat - 10-06-2010, 12:50 AM

Forum Jump:


User(s) browsing this thread: 5 Guest(s)