The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
QuoteIt! - Quote Database Details »» | |||||||||||||||||||||||||
QuoteIt! version 3.1
QuoteIt! allows you to have a database of quotes integrated with your forum. Users submit quotes that can then be voted on by the other users, using your choice of two rating systems. The average installation will show a random quote on the forum home page, but you can include it on any vBulletin page or on your portal home page. If you'd like to see a demo, go to forums.monkeycrap.com. Features: Random Quote - a random quote can be shown on any vBulletin powered page - the administrator can set a default rating threshold that quotes must meet before showing up as the random quote - a new random quote can be chosen at a specific interval of time, to reduce server load Quote Database - quotes can be searched, filtered, and sorted by many different criteria - quotes have a "context" field that can be turned on or off to include more information about the quote - quotes can be embedded in posts with bbcode - each post and private message now has a "Submit to Quotes" link that allows users to quote things said on your forum more easily Quote Ratings System - quotes can be rated either plus/minus or on a scale from 1 to 5 - quotes below a certain total score or average score can be filtered out Quote Management - quotes can either be automatically approved or moderated - the quote moderation que is like the que for posts, enabling the moderation of several quotes at once - usergroup permissions are used for adding, editing, deleting, rating and viewing quotes - most actions use AJAX to avoid page reloads Don't forget to click install! Currently known problems are listed here. The files needed to edit the included images are attached to this post. This hack is based on QuoteIt! 1.2, originally by magnus. The "submit post" feature was inspired by an addon by CtrlAltDel. Older versions (no longer in development): QuoteIt! 3 for vBulletin 3.5.x | QuoteIt! 2.03 for vBulletin 3.0.x Show Your Support
|
Comments |
#312
|
|||
|
|||
thanks so far so good!
|
#313
|
||||
|
||||
Quote:
I also still have the funny {Q5263537:4} answer to my BBcode? I rechecked all the file changes you gave me all are correct. Thanks |
#314
|
||||
|
||||
Try adding this in a plugin at the quoteit_bbcode_begin hook and tell me what it prints when viewing a thread with the bbcode in it. You can disable the plugin afterward.
PHP Code:
PHP Code:
|
#315
|
||||
|
||||
Quote:
Just to make sure I did the right thing: 1, add new plugin 2, product: quoteit! 3, choose quoteit_bbcode_begin as the hook location 4, title called it quoteithelp 5, execution order is 5 (was there so left it) 6, pasted in the PHP 7, active: yes went to page to put in bbcode but when I selcted the thread it went to the blank page. have I done something wrong? list box is exactly what I'd like, what hook do I put it in? |
#316
|
|||
|
|||
whenever I try to rate a quote I get this message
Quote:
|
#317
|
||||
|
||||
I've uploaded a new version that fixes a few small things.
thepub - Try the new files, or enable Javascript to use the AJAX voting. rburns - Something's definitely wrong then, try redoing the edits and testing it in several places, like the post preview, the actual post, and a private message. I'm not exactly sure what hook to use for your listbox idea, the listbox just has to be generated before the new post template is shown. The one to insert bbcode needs to run before bbcode is parsed. Other than that, I'm not sure. |
#318
|
||||
|
||||
I love the idea and concept of the quotes sytem but I can't get it to work with the Zoints profile system without causing errors. I get the errors and problems after installing the plugin-globalquote.xml file to allow quotes to be on all pages (PhotoPost Products using VB3 Enhanced feature). I am sure it's a somewhat easy fix, I played with it for a while and could not get it to work. I would say forget Zoints but it is a nice profile system.
Better Idea: --------------- I managed to get the quotes showing globably by placing your code in the navbar instead of the forumhome template since I am using vb3enhanced feature with PhotoPost: <!-- BEGIN QuoteIt! --> $showrandomquote <!-- END QuoteIt! --> ** I still get the same error regardless of where I put the code Error shown in Zoints after adding the global plugin --------------------------------------------------------------------- Parse error: syntax error, unexpected T_STRING in /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code on line 3 Warning: Cannot modify header information - headers already sent by (output started at /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code:3) in /z/includes/zoints.php on line 341 Warning: Cannot modify header information - headers already sent by (output started at /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code:3) in /z/includes/zoints.php on line 342 Warning: Cannot modify header information - headers already sent by (output started at /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code:3) in /z/includes/zoints.php on line 343 Warning: Cannot modify header information - headers already sent by (output started at /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code:3) in /z/includes/functions.php on line 100 Warning: Cannot modify header information - headers already sent by (output started at /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code:3) in /z/includes/functions.php on line 103 ------------------------------------------------------------------------ Here is the plugin-globalquote.xml code: <plugins> <plugin active="1" executionorder="7" product="quoteit"> <title>Global Random Quote</title> <hookname>global_start</hookname> <phpcode><![CDATA[if ($quoteitoptions['showrandomquote']) { define('QUOTEIT_GLOBAL', true); require_once(DIR . '/includes/functions_quoteit.php'); }]]></phpcode> </plugin> </plugins> ------------------------------------------------------------------------ I tried changing the executionorder number, true to false, and some oddball ideas which didn't work. Can someone help because I don't want to just have this on the forum. Thanks for your time and consideration. |
#319
|
||||
|
||||
Could you tell me what's on those lines mentioned in the Zoint's error messages?
|
#320
|
||||
|
||||
Quote:
vbulletin36.php -------------------- Here is line 3 on vbulletin36.php: define('THIS_SCRIPT', 'Zoints'); # fix for vbportal's lack of vbulletin compatibility Here is line 116: eval('$headinclude = "' . fetch_template('headinclude') . '";'); ** Should line 116 have this? '";'); I am not a programmer but looks weird ---------------------- Cannot modify header information - headers already sent by (output started at /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code:3) in /z/includes/zoints.php on lines (341 + 342 + 343) zoints.php -------------- Line 341 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); Line 342 header("Pragma: no-cache"); Line 343 header("Cache-Control: no-cache, must-revalidate"); Lines 335-350 if this helps: if (is_a($this->_user, 'z_user') AND $this->_user->usergroup('zointsadmin') AND !$this->_config['userstyles']) { $this->_config['userstyles_off'] = 1; $this->_config['userstyles'] = 1; } header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); header("Pragma: no-cache"); header("Cache-Control: no-cache, must-revalidate"); if (!defined('z_install')) { $this->_template->_navbar->init(); } --------------- Warning: Cannot modify header information - headers already sent by (output started at /home/allswac1/public_html/forum/z/includes/external_auth/vbulletin36.php(116) : eval()'d code:3) in /z/includes/functions.php on lines (100+103) function.php --------------- Line 100 header("HTTP/1.1 301 Moved Permanently"); Line 103 header("Location: $url"); This is lines 82-105 if this helps: // check if it's a full url, ie http:// if (!preg_match('#^[a-z]+://#i',$url)) { $dir = dirname($_SERVER['PHP_SELF']); if (substr($url,0,1) != '/' AND substr($dir,-1,1) != '/') { $dir .= '/'; } $url = (($_SERVER["SERVER_PORT"] == 443)?'https://':'http://') . $_SERVER['HTTP_HOST'] . $dir . $url; } if (strpos($url, '&')) { $url = str_replace('&', '&', $url); } if ($threeohone) { header("HTTP/1.1 301 Moved Permanently"); } header("Location: $url"); exit; } -------------------------------------------------------------- I hope this helps, like I said. The quotes works perfectly on the forums page but I would like it to be on other pages too like this. It does this after adding the global plugin but it doesn't allow the zoints profile's to work anymore. |
#321
|
||||
|
||||
It looks like a problem with the headinclude template. Try editing and then saving it without changing anything. If it doesn't give you an error when saving, post the template here.
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|