Version: 2.0.0, by derekivey
Developer Last Online: Jan 2010
Version: 3.5.8
Rating:
Released: 10-17-2005
Last Update: 01-04-2007
Installs: 412
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations
No support by the author.
Toplist Developer:derekivey Version: 2.0.0 vBulletin Version: 3.5.5 (Seems to work fine on 3.6.0) File Edits: 0 Template Edits: 2 (Optional) New Phrases: 294 Uses Plugins: Yes! Difficulty: Easy
Description: This hack adds a Toplist to your forums. You can choose in the AdminCP whether to rank the sites by their In hits or their Out hits. It is fully phrased to make it easy to translate to another language if you need to. The users are able to add a site, edit, or delete their site if they added it. The Administrators can Edit the users' sites or Delete them.
This hack is for vBulletin 3.5.5.
*** I Strongly Recommend That You Backup Your Database Before Installing/Upgrading This Hack! ***
Planned features for a later release:
Add Image Storage Setting (hot linking or upload)
Add Stats Page [ Will be released later ]
Add API to get site info onto non-vB pages and other vB pages.
Add Site Comment System
Fix bug with & not being allowed in URLs [ Done ]
Add Setting to choose where to put Toplist Sites Marquee
Category system is on my list of things to add. I also plan to add an option that allows you to add a random site to the forum home, note this will be optional and can be turned off in the AdminCP.
Sounds good, both be very good additions. Will serve well as an affiliate hack.
ok I have had to run the last 2 queries above and with the last one I got this error.
An error occurred while attempting to execute your query. The following information was returned.
error number: 1064
error desc: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ';
ALTER TABLE `toplist_sites` ADD `votes` INT( 10 ) DEFAULT
It still wont show any ratings.
in the admin cp under toplist sites, it dont show the ratings either, but when you click to view the individual site, it shows in there.
nope that didn't work either..
An error occurred while attempting to execute your query. The following information was returned.
error number: 1054
error desc: Unknown column 'rating_total' in 'toplist_sites'
I got that error running that on its own.
I changed the other query and got the first error again.
Hmm, looks like your missing that field also, run these queries:
[sql]
ALTER TABLE `toplist_sites` ADD `rating_total` INT( 10 ) DEFAULT '0' NOT NULL AFTER `out`;
ALTER TABLE `toplist_sites` ADD `votes` INT( 10 ) DEFAULT '0' NOT NULL AFTER `rating_total`;
ALTER TABLE `toplist_sites` ADD `rating_average` INT( 10 ) DEFAULT '0' NOT NULL AFTER `votes`;
[/sql]
Sorry for the trouble, not sure why the plugin system didn't execute those queries. Once you run those it should work.
That means you already have that one in the database, just edit the .xml file and remove that query from the install code, and try it again, it should work after you do that.