Version: 1.0.0, by zethon
Developer Last Online: Oct 2020
Category: Miscellaneous Hacks -
Version: 3.8.4
Rating:
Released: 05-02-2009
Last Update: 06-01-2010
Installs: 74
DB Changes Uses Plugins
Additional Files Is in Beta Stage
No support by the author.
vbNetwork
Summary
This add-on gives you the ability to share forums with other message boards without having to share any database information. The plugin runs through webservices and uses XML.
Release Notes
Currently the installation is easy but if you want to set up and run your own network it will help if you're familiar with XML. Joining an already existing network is fairly simple.
This plugin is developed using vBulletin 3.8.X and being tested on 3.6.X and 3.8.X. If it works on both of those, I will assume it works on 3.7.X.
If you would like my help writing versions for phpBB, IPB or other message board software, please feel free to contact me.
If you are interested you can join my existing network, but please note that it is mostly a trolling-based community of boards. Feel free to start your own network with other boards.
Product Specifications
several plugins
one cron job
file uploads
new DB tables
several phrases
Installation
Approx 2-5 mins
See the included installation instructions.
Upgrading/Updating
upload all files in the upload directory, overwriting any existing files
re-import the XML file, setting "Overwrite" to "Yes"
LOL KW, I have PMed the author asking his permission to repost the altered instructions, but no reply as yet.
If he has not replied in another day I will just post them.
Maybe it's time to post them I really want to use this hack! I just can't figure the darn thing out. Does it take an engineer to figure this out? I hope not.... because I am one and can't get it working
Hi KW I will [post them in the next few days, the author has agreed, I just need to run through them prior to posting.
I would love to have these, running in to many problems in installing this. Your dumbed down installation guide would be fantastic. If you cannot post it yet here, mind PMing it to me?
I see the problem but I'm not too sure how to fix it. I'll look into it some more and get back to you. Hopefully before I take this out of Beta.
I did some looking into with this. It appears it may be a bug with vBulletin, as this is the second product I've found with the same error type.
It correctly establishes a connection with our external mysql server, but still attempts to connect to a non-existent local one. The includes/config.php file only defines one master external MySQL server.
So a warning is spitted out due to the local connection issue, but successfully connects to the external one. But since this warning is tossed out into the script, the script ceases to work.
I'm getting the same error. My guest views are turned on and a reinstall / fresh upload didn't help. Any Ideas what we are doing wrong? I'm using Mysql 5.1.30
Change networkforum.php:
from:
Code:
$forumsnodes = $db->query("
SELECT * FROM " . TABLE_PREFIX . "network_sub
LEFT JOIN network_node
ON (network_sub.node_code = network_node.node_code)
AND (network_sub.networkid = network_node.networkid)
WHERE (network_sub.networkid = ".$network['networkid'].") AND (subid = ".$forum['subid'].")
ORDER BY network_sub.node_code
");
change to:
Code:
$forumsnodes = $db->query("
SELECT * FROM " . TABLE_PREFIX . "network_sub
LEFT JOIN " . TABLE_PREFIX . "network_node
ON (" . TABLE_PREFIX . "network_sub.node_code = " . TABLE_PREFIX . "network_node.node_code)
AND (" . TABLE_PREFIX . "network_sub.networkid = " . TABLE_PREFIX . "network_node.networkid)
WHERE (" . TABLE_PREFIX . "network_sub.networkid = ".$network['networkid'].") AND (subid = ".$forum['subid'].")
ORDER BY " . TABLE_PREFIX . "network_sub.node_code
");