The world map works but I have this twice:
Warning: substr_compare() [function.substr-compare]: The length cannot exceed initial string length in /home/bodyartg/public_html/inc/classes/BxDolTwigTemplate.php on line 43
Once above each map? Just installed all new and a new host..
|
|
Same Error here as well on a clean 7.1.0 B1 installation
Warning: substr_compare() [function.substr-compare]: The length cannot exceed initial string length in /home/public_html/inc/classes/BxDolTwigTemplate.php on line 43
|
ManOfTeal.COM a Proud UNA site, six years running strong! |
BINGO! FIXED ! I changed Line 43 to the Code in your 2nd Link that is in Green.
|
That fixed it for me as well.. Thanks Newton27.. Guess a little searching goes a long way.. LOL..
|
Hello
I have problem with install world map module..when I try install i have this error, please help how to fix it:
INSERT INTO `sys_menu_top` (`Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(138, 'World Map', '_bx_wmap_search_submenu', 'modules/?r=wmap/home', @iCatOrder, 'non,memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
|
Hello
I have problem with install world map module..when I try install i have this error, please help how to fix it:
INSERT INTO `sys_menu_top` (`Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(138, 'World Map', '_bx_wmap_search_submenu', 'modules/?r=wmap/home', @iCatOrder, 'non,memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
Try to re upload the module via FTP
ManOfTeal.COM a Proud UNA site, six years running strong! |
Hello
I have problem with install world map module..when I try install i have this error, please help how to fix it:
INSERT INTO `sys_menu_top` (`Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(138, 'World Map', '_bx_wmap_search_submenu', 'modules/?r=wmap/home', @iCatOrder, 'non,memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
Try to re upload the module via FTP
I tried, but unfortunately it did not help. Any other ideas?
|
Just a stab at it, is this a new "database" or one that was used with 7.0.9 ManOfTeal.COM a Proud UNA site, six years running strong! |
That fixed it for me as well.. Thanks Newton27.. Guess a little searching goes a long way.. LOL..
That's true, I've read just about everything posted here. lol
ManOfTeal.COM a Proud UNA site, six years running strong! |
Hello
I have problem with install world map module..when I try install i have this error, please help how to fix it:
INSERT INTO `sys_menu_top` (`Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(138, 'World Map', '_bx_wmap_search_submenu', 'modules/?r=wmap/home', @iCatOrder, 'non,memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
Try to re upload the module via FTP
I tried, but unfortunately it did not help. Any other ideas?
Is this a fresh install? If you are doing an upgrade; did you remove the old "Profiles Map" module as per upgrade instructions?
Do you know how to execute a MySQL string via your phpMyAdmin?
if so, try running this..
DELETE FROM `sys_menu_top` WHERE `Parent` = 138 AND `Name` = 'World Map';
Then try to install the module again.
ManOfTeal.COM a Proud UNA site, six years running strong! |
This is upgrade from 7.0.9. I did everything according to instructions. I running this in phpMyAdmin: DELETE FROM `sys_menu_top` WHERE `Parent` = 138 AND `Name` = 'World Map';
and upload module again but did not help :( is still the same error when i try install in admin panel..
to make it more interesting ... among the modules that are installed shows:
_bx_wmap
_bx_gsearch
but they are not installed...why? Please help me. May have any ideas how to fix this error?
Hello
I have problem with install world map module..when I try install i have this error, please help how to fix it:
INSERT INTO `sys_menu_top` (`Parent`, `Name`, `Caption`, `Link`, `Order`, `Visible`, `Target`, `Onclick`, `Check`, `Editable`, `Deletable`, `Active`, `Type`, `Picture`, `Icon`, `BQuickLink`, `Statistics`) VALUES(138, 'World Map', '_bx_wmap_search_submenu', 'modules/?r=wmap/home', @iCatOrder, 'non,memb', '', '', '', 1, 1, 1, 'custom', '', '', 0, '');
Try to re upload the module via FTP
I tried, but unfortunately it did not help. Any other ideas?
Is this a fresh install? If you are doing an upgrade; did you remove the old "Profiles Map" module as per upgrade instructions?
Do you know how to execute a MySQL string via your phpMyAdmin?
if so, try running this..
DELETE FROM `sys_menu_top` WHERE `Parent` = 138 AND `Name` = 'World Map';
Then try to install the module again.
|
Hopefully Zarcon will chime in here, he would know more about that last statement.. I think.
You and I know something went wrong in your upgrade. I would suspect not all files got "replaced"
Have you looked at this? http://www.boonex.com/forums/#topic/Errors-fixing-procedures-during-upgrade.htm
ManOfTeal.COM a Proud UNA site, six years running strong! |
thank you, I got to solve the problem using the following code line:
return parent::parseHtmlByName ($sName . (strlen($sName) < 6 || substr_compare($sName, '.html', -5, 5) !== 0 ? '.html' : ''), $aVars);
|