![]() |
| Installation | Upgrading | F.A.Q. | Help & Support |
| vBadvanced Links Directory |
| Introduction |
| vBadvanced Links Directory is an advanced links directory which is built around, and completely integrated with vBulletin. It includes more features and flexibility than any other links directory built around vBulletin to date, and allows you to quickly set up and easily maintain your links directory. It allows unlimited categories, subcategories, and links. Also includes many other options such as user favorites, subscriptions, comments, ratings, and much more! |
| Features: |
|
| Help & Support |
| If you have any problems or questions please post them at vBadvanced.com in the appropriate forums. I will be more than happy to help in any way I can if the request for help is made there. Anyone trying to contact me via email, private message, or any other means will be ignored. |
| Copyright |
| This script is © 2003 - 2004 vBadvanced.com and PlurPlanet, LLC. This script is NOT to be re-distributed in any way or placed on a website for download. All copyright notes in the script itself must remain unchanged. |
| Frequently Asked Questions | ||||
| ||||
|
| Help & Support |
| Before asking for support Please read the F.A.Q above! If you have any problems or questions that are not covered in the F.A.Q. please post them at vbadvanced.com in the appropriate forum. I will be more than happy to help in any way I can if the request for help is made there. Anyone trying to contact me via email, private message, or any other means will be ignored. |
| Upgrading |
| Upgrading From RC2 |
|
First open your /forum/admincp/index.php file and look for the following code:
construct_nav_option($vbphrase['view_all_links'], 'vba_links_admin.php?do=viewlinks');
Right below this, Add:
construct_nav_option($vbphrase['custom_fields'], 'vba_links_admin.php?do=customfields');
(This adds a link to your new Custom Fields options.) Next, open your new links_config.php file and look for this line:
chdir('/home/yoursite/public_html/forum');
Change that to the full path to your forum on your server. Now upload the new files which you downloaded in the zip package over your existing files. (For a full list of the files that need to be uploaded, click here.) Then open your browser and go to http://yoursite.com/forum/admincp/vbalinks_install.php. Once there, click on the link that says "Click here to upgrade -->". That will make all necessary database changes. Once that is finished, remove that file and you are done. |
Upgrading From RC1 |
First open your /forum/admincp/index.php file and look for the following code:// *** construct_nav_option($vbphrase['modify_settings'], 'linksadmin.php?do=modifysettings'); construct_nav_option($vbphrase['edit_directories'], 'linksadmin.php?do=dirmanager'); construct_nav_option($vbphrase['add_directory'], 'linksadmin.php?do=addcat'); construct_nav_option($vbphrase['modify_permissions'], 'linksadmin.php?do=permissions'); construct_nav_option($vbphrase['add_link'], 'linksadmin.php?do=addlink'); construct_nav_option($vbphrase['view_all_links'], 'linksadmin.php?do=viewlinks'); construct_nav_option($vbphrase['validate_new_links'], '../' . $modcpdir . '/links.php?do=validate'); construct_nav_option($vbphrase['validate_new_posts'], '../' . $modcpdir . '/links.php?do=validateposts'); construct_nav_option($vbphrase['maintenance'], 'linksadmin.php?do=maintenance'); construct_nav_group($vbphrase['vba_links_directory']); construct_nav_spacer(); Replace this with: // *** construct_nav_option($vbphrase['modify_settings'], 'vba_links_admin.php?do=modifysettings'); construct_nav_option($vbphrase['edit_directories'], 'vba_links_admin.php?do=dirmanager'); construct_nav_option($vbphrase['add_directory'], 'vba_links_admin.php?do=addcat'); construct_nav_option($vbphrase['modify_permissions'], 'vba_links_admin.php?do=permissions'); construct_nav_option($vbphrase['add_link'], 'vba_links_admin.php?do=addlink'); construct_nav_option($vbphrase['view_all_links'], 'vba_links_admin.php?do=viewlinks'); construct_nav_option($vbphrase['custom_fields'], 'vba_links_admin.php?do=customfields'); construct_nav_option($vbphrase['validate_new_links'], '../' . $modcpdir . '/links.php?do=validate'); construct_nav_option($vbphrase['validate_new_posts'], '../' . $modcpdir . '/links.php?do=validateposts'); construct_nav_option($vbphrase['maintenance'], 'vba_links_admin.php?do=maintenance'); construct_nav_group($vbphrase['vba_links_directory']); construct_nav_spacer(); (This modification is necessary because we have decided to rename the admin file from 'linksadmin.php' to 'vba_links_admin.php' to allow all vBadvanced products to have similar admin file names and allow them to be grouped together in a better fashion.) Next, open your new links_config.php file and look for this line:
chdir('/home/yoursite/public_html/forum');
Change that to the full path to your forum on your server. Now upload the new files which you downloaded in the zip package over your existing files. (For a full list of the files that need to be uploaded, click here.) Then open your browser and go to http://yoursite.com/forum/admincp/vbalinks_install.php. Once there, click on the link that says "Click here to upgrade -->". That will make all necessary database changes. Once that is finished, remove that file and your old 'linksadmin.php' file from your server and you are done. |