×
Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues
Bug? On reinstall of a component I get
Ryan
New Member
Posts: 7
7 年 2 个月 前 #1631
由 Ryan
Bug? On reinstall of a component I get was created by Ryan
This is on Joomla 3.7.5 Installed once fine ... uninstalled and reinstalled and I get a menu error.
No administrator menu is shown but component says it installs.
Message
Plugin speechies was installed successfully
Module mod_speechies was installed successfully
Installation of the component was successful.
Error
JTableMenu::_getNode(1, ) failed.
Warning
Error building Administrator Menus.
No administrator menu is shown but component says it installs.
Message
Plugin speechies was installed successfully
Module mod_speechies was installed successfully
Installation of the component was successful.
Error
JTableMenu::_getNode(1, ) failed.
Warning
Error building Administrator Menus.
Please 登录 或 注册一个帐号 to join the conversation.
Ryan
New Member
Posts: 7
7 年 2 个月 前 #1632
由 Ryan
Replied by Ryan on topic Bug? On reinstall of a component I get
It looks like the first 3 records of the #__menu table have been removed on the uninstall process.
I noticed there was an error with my views on first creation, it seems when cloning database tables changing the name of the table doesnt change the name for the view. This caused errors with my views and a double up .... which in turn has probably messed up the uninstall process.
running ...
INSERT INTO `DATABASE`.`PREFIX_menu` (`id` ,`menutype` ,`title` ,`alias` ,`note` ,`path` ,`link` ,`type` ,`published` ,`parent_id` ,`level` ,`component_id` ,`checked_out` ,`checked_out_time` ,`browserNav` ,`access` ,`img` ,`template_style_id` ,`params` ,`lft` ,`rgt` ,`home` ,`language` ,`client_id` ) VALUES ( '1', '', 'Menu_Item_Root', 'root', '', '', '', '', '1', '0', '0', '0', '0', '0000-00-00 00:00:00', '0', '0', '', '0', '', '0', '0', '0', '*', '0')
Rebuilds the first row and makes you able to install the component again. I will have to manually fix up the other missing com_banner records.
I noticed there was an error with my views on first creation, it seems when cloning database tables changing the name of the table doesnt change the name for the view. This caused errors with my views and a double up .... which in turn has probably messed up the uninstall process.
running ...
INSERT INTO `DATABASE`.`PREFIX_menu` (`id` ,`menutype` ,`title` ,`alias` ,`note` ,`path` ,`link` ,`type` ,`published` ,`parent_id` ,`level` ,`component_id` ,`checked_out` ,`checked_out_time` ,`browserNav` ,`access` ,`img` ,`template_style_id` ,`params` ,`lft` ,`rgt` ,`home` ,`language` ,`client_id` ) VALUES ( '1', '', 'Menu_Item_Root', 'root', '', '', '', '', '1', '0', '0', '0', '0', '0000-00-00 00:00:00', '0', '0', '', '0', '', '0', '0', '0', '*', '0')
Rebuilds the first row and makes you able to install the component again. I will have to manually fix up the other missing com_banner records.
Please 登录 或 注册一个帐号 to join the conversation.
Ryan
New Member
Posts: 7
7 年 2 个月 前 #1633
由 Ryan
Replied by Ryan on topic Bug? On reinstall of a component I get
Confirming this bug fix.
Fixing the component view name of the table you cloned (so its not the same as the clone). and running the sql to fix the missing records
INSERT INTO `DATABASE`.`PREFIX_menu` (`id`, `menutype`, `title`, `alias`, `note`, `path`, `link`, `type`, `published`, `parent_id`, `level`, `component_id`, `checked_out`, `checked_out_time`, `browserNav`, `access`, `img`, `template_style_id`, `params`, `lft`, `rgt`, `home`, `language`, `client_id`) VALUES
(1, '', 'Menu_Item_Root', 'root', '', '', '', '', 1, 0, 0, 0, 0, '0000-00-00 00:00:00', 0, 0, '', 0, '', 0, 123, 0, '*', 0),
(2, 'main', 'com_banners', 'Banners', '', 'Banners', 'index.php?option=com_banners', 'component', 1, 1, 1, 4, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners', 0, '', 1, 10, 0, '*', 1),
(3, 'main', 'com_banners', 'Banners', '', 'Banners/Banners', 'index.php?option=com_banners', 'component', 1, 2, 2, 4, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners', 0, '', 2, 3, 0, '*', 1);
then reinstalling the fixed built component. Will have no errors.
Fixing the component view name of the table you cloned (so its not the same as the clone). and running the sql to fix the missing records
INSERT INTO `DATABASE`.`PREFIX_menu` (`id`, `menutype`, `title`, `alias`, `note`, `path`, `link`, `type`, `published`, `parent_id`, `level`, `component_id`, `checked_out`, `checked_out_time`, `browserNav`, `access`, `img`, `template_style_id`, `params`, `lft`, `rgt`, `home`, `language`, `client_id`) VALUES
(1, '', 'Menu_Item_Root', 'root', '', '', '', '', 1, 0, 0, 0, 0, '0000-00-00 00:00:00', 0, 0, '', 0, '', 0, 123, 0, '*', 0),
(2, 'main', 'com_banners', 'Banners', '', 'Banners', 'index.php?option=com_banners', 'component', 1, 1, 1, 4, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners', 0, '', 1, 10, 0, '*', 1),
(3, 'main', 'com_banners', 'Banners', '', 'Banners/Banners', 'index.php?option=com_banners', 'component', 1, 2, 2, 4, 0, '0000-00-00 00:00:00', 0, 0, 'class:banners', 0, '', 2, 3, 0, '*', 1);
then reinstalling the fixed built component. Will have no errors.
The following user(s) said Thank You: Steven Fung
Please 登录 或 注册一个帐号 to join the conversation.
Andres Maeso
Platinum Member
Posts: 338
7 年 2 个月 前 #1635
由 Andres Maeso
Andrés Maeso
Customer relations manager at Joomla Component Creator.
该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。
Replied by Andres Maeso on topic Bug? On reinstall of a component I get
Hi Ryan
We can't reproduce your issue, but we could look into that issue if you share with us a backup of your website using akeeba. You may need to upload it to wetransfer or a similar service. Please send it to 该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。
Regards,
Andrés.
We can't reproduce your issue, but we could look into that issue if you share with us a backup of your website using akeeba. You may need to upload it to wetransfer or a similar service. Please send it to 该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。
Regards,
Andrés.
Andrés Maeso
Customer relations manager at Joomla Component Creator.
该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。
The following user(s) said Thank You: Ryan
Please 登录 或 注册一个帐号 to join the conversation.
Ryan
New Member
Posts: 7
7 年 2 个月 前 #1639
由 Ryan
Replied by Ryan on topic Bug? On reinstall of a component I get
Thanks but given the nature of the project I am unable to share the site.
Please 登录 或 注册一个帐号 to join the conversation.
Andres Maeso
Platinum Member
Posts: 338
7 年 2 个月 前 #1640
由 Andres Maeso
Andrés Maeso
Customer relations manager at Joomla Component Creator.
该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。
Replied by Andres Maeso on topic Bug? On reinstall of a component I get
Hi Ryan,
I understand. If you can provide more information please share with us in 该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。. We will be happy to help.
Regards.
Andrés.
I understand. If you can provide more information please share with us in 该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。. We will be happy to help.
Regards.
Andrés.
Andrés Maeso
Customer relations manager at Joomla Component Creator.
该邮件地址已受到反垃圾邮件插件保护。要显示它需要在浏览器中启用 JavaScript。
Please 登录 或 注册一个帐号 to join the conversation.
创建页面时间:0.063秒