Quote:
Originally Posted by Black Hole
I recently upgraded to 3.6.7 PL1. In an attempt to fix a couple of problems, I reverted a couple of my templates and lost the navbar link to the Timeslip Hack.
In going through this thread, I downloaded the 3.6 version 1.2, unzipped the file, and attempted to import the XML file with overwrite checked and I receive a database error when doing so.
I receive the following error...
This is an upgrade as I'm currently running 3.5.0.
Please advise.
Thanks,
Matt.
|
The error is that you are inserting a duplicate record into the table, that requires it be a unique (primary key)
all you need to do to put the link back into the nav bar is follow this in the instructions:
PHP Code:
###### In your navbar template find:
<td class="vbmenu_control"><a href="memberlist.php?$session[sessionurl]">$vbphrase[members_list]</a></td>
###### Below it add:
<td class="vbmenu_control"><a href="timeslips.php?$session[sessionurl]">$vbphrase[timeslips]</a></td>