I figured it out and want to share the solution to all. I worked for me and I hope to does for others. They are all typo issues as discussed. Once corrected, you're good to go assuming you are using the nmaps file in the link below.
https://vborg.vbsupport.ru/showpost....&postcount=378
Hope it helps.
- Edit the nmaps file in the admincp
- look at line 161 (in the section - EDIT CATEGORIES INDEX )
- Change the last word from
eval($?ook) to
eval($hook)
- Go to line 245 (in the section - DISPLAYS INACTIVE MODULES IF THERE ARE ANY)
- take out the '
?' at the beginning of the line.
- Save
- Back up your database
- Uninstall and reinstall nmaps.
- Upload your backup database (if you have articles/news before)
Line 161
Look for this
PHP Code:
($hook = vBulletinHook::fetch_hook('nmaps_admin_edit_cat_start')) ? eval($?ook) : false;
Change to this
PHP Code:
($hook = vBulletinHook::fetch_hook('nmaps_admin_edit_cat_start')) ? eval($hook) : false;
Line 245
Look for this
PHP Code:
? $cell[0] = $modtitle;
Take out the
?
PHP Code:
$cell[0] = $modtitle;