vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   QuoteIt! Quote Management System v1.2 (https://vborg.vbsupport.ru/showthread.php?t=62470)

Spookysalem 10-19-2004 11:19 AM

i have installed this and it only works on one of my styles

i have edited the templates....i have the welcome panel installed too.

please help.

Spookysalem 10-29-2004 03:12 PM

I need some help please..i sorted out my last post and all worked fine.

However i had some problems today on my forum and now it does not show at all. there is no option to turn it on in the admin panel options part. According to phpmyadmin all the tables are there....

please can anyone help me get it back...

thanks

pixelpunk 11-03-2004 08:14 PM

Is there any chance of modifying this so when you are authenticating quotes it shows them in a editable box? Maybe I'm just a perfectionist but I hate it when a quote has words spelled wrong or has double quotations.

Spyke 11-04-2004 12:47 AM

Hi, nice mod :)

Though, i'm having alittle trouble and i think it's with the phrases. I did all the edits and uploaded all the files but it's not displaying any text on the forum home page (http://eternal-realm.net/vb/ to see) and the option Moderate Quotes doesn't work. It's an empty slot and directs to an empty page.

Any Idea's?

thanks.

urmyantichrist 11-11-2004 05:46 PM

Quote:

Originally Posted by Spyke
Hi, nice mod :)

Though, i'm having alittle trouble and i think it's with the phrases. I did all the edits and uploaded all the files but it's not displaying any text on the forum home page (http://eternal-realm.net/vb/ to see) and the option Moderate Quotes doesn't work. It's an empty slot and directs to an empty page.

Any Idea's?

thanks.

I'm having this same problem... I went to your site and noticed you got it working, mind telling me how? Thanks!

venomx 11-11-2004 09:31 PM

Try opening any phrases to edit it and then just save it. This worked for me when I had a few that wouldnt show.

Thanatos 11-22-2004 05:09 AM

I needed Quotes added to my vBadvanced Moderation module and since I couldn't find it anywhere, I kinda hacked one together.

I'm not a coder..and don't really 'get' php too well...but it worked for me, so here ya go.

trackpads 11-22-2004 10:05 AM

Excellent Hack! Installed

trackpads 11-22-2004 10:37 AM

Quick question, is there a way to give users points for Ushop with this? I am unsure as to what the code would be to add +1 to the uttpoints column in the user table.

Thanks again,

-Jason

urmyantichrist 11-22-2004 08:46 PM

[QUOTE=Giveit2u43]vbindex integration..

in vbindex.php (or whatever you renamed it to) find:
Code:

'vbindex_customblock_6'
and change it to:
Code:

'vbindex_customblock_6',
'randomquote'

next find:
Code:

// ## USERS IGNORE ##
if (trim($bbuserinfo['ignorelist'])) {
        $ignorelist = 'AND thread.postuserid NOT IN ('.str_replace(' ', ',', $bbuserinfo['ignorelist']).')';
}

and add BENEATH it:
Code:

$result_quote = $DB_site->query("
                        SELECT quotes.*,user.username AS quotename FROM quotes AS quotes
                        LEFT JOIN ".TABLE_PREFIX."user AS user ON (user.userid = quotes.userid)
                        ORDER BY rand() LIMIT 1
                ");
       
                while ($quote = $DB_site->fetch_Array($result_quote)) {
                        $randomquote[quoteid] = $quote[quoteid];
                        $randomquote

       
Quote:

       
       
               
       
       

                       

                       
                                = $quote

       
Quote:

       
       
               
       
       

                       

                       
                                ;
                        $randomquote[author] = $quote[author];
                        $randomquote[userid] = $quote[userid];
                        $randomquote[username] = $quote[quotename];
                        $randomquote[approved] = $quote[approved];
                }
                $DB_site->free_result($result_quote);
       
                eval('$showrandomquote .= "' . fetch_template('randomquote') . '";');
                       
                       

               


                       
                       

               


Quote:

Quote:


Then edit your VBINDEX template and place:
Code:

$showrandomquote
after:
Code:

$home[news]

You can actually place $showrandomquote anywhere you`d like the quotes to show up..
I can't get this to work... No errors, just not getting ANYthing! Any tips?


All times are GMT. The time now is 11:57 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01428 seconds
  • Memory Usage 1,750KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete