Jump to content

Domain register error


lucasbosspro2

Recommended Posts

  • WHMCS Technical Analyst II

Hello @lucasbosspro2,

Thanks for your post!

If you are using WHMCS version 7.9 and below, this error indicates your database is missing the `tbltld_category_pivot` table, executing this CREATE TABLE query on the database will add that and resolve this:

CREATE TABLE `tbltld_category_pivot` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tld_id` int(11) NOT NULL,
  `category_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `tbltld_category_pivot_tld_id_index` (`tld_id`),
  KEY `tbltld_category_pivot_category_id_index` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

If you are using WHMCS 7.10 or above, this error indicates the cart.php file present is from a previous version of WHMCS. You will want to download a fresh copy of WHMCS and upload it to your WHMCS directory (delete the install directory from the fresh download), overwriting existing files to ensure they have been replaced with the correct files from the version you are on.

As always, take a full backup of your installation before performing any action.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated