vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Board Optimization - FUZZY SEO Booster - increase long tail search traffic AUTOMATICALLY! (https://vborg.vbsupport.ru/showthread.php?t=234192)

final kaoss 12-30-2010 01:15 AM

I have "5 times as many" listed because I altered the settings from 20 or whatever it was to something a bit higher.

onehost 12-30-2010 01:21 AM

Quote:

Originally Posted by extreme-gaming (Post 2141102)
I have "5 times as many" listed because I altered the settings from 20 or whatever it was to something a bit higher.

So did he finally get hiw mods sorted out, last I heard, everyone
was pounding down on him for lack of support, maybe not, nothing
has changed with this guy so it seems.

final kaoss 12-30-2010 01:43 AM

Who are you talking about?

Quote:

Originally Posted by onehost (Post 2141105)
So did he finally get hiw mods sorted out, last I heard, everyone
was pounding down on him for lack of support, maybe not, nothing
has changed with this guy so it seems.


Gnoll 12-31-2010 12:39 PM

Still problem with Turkish-Char-Set ( Ğ ğ Ü ü Ş ş İ ı Ö ö Ç ç ) :/

Brandon Sheley 12-31-2010 02:37 PM

Quote:

Originally Posted by extreme-gaming (Post 2141049)
and rps that's one of his sites as you can see in the "footer advertisement" plugin

PHP Code:

 if ($vbulletin->options['seofq_auto_link_pos'] == 2){
                
$footer_link '';
                switch( 
THIS_SCRIPT ){
                    case 
'index':
                        
$footer_link 'FuzzySEO by <a href="http://seoforums.org" title="SEO Forum" target="_blank">SEO Forum</a>.org<br />';
                    break;
                    case 
'forumdisplay':
                        
$footer_link 'FuzzySEO by <a href="http://pokerforums.co" target="_blank">Pokerforums.co</a><br />';
                    break;
                    case 
'showthread':
                        
$footer_link 'FuzzySEO by <a href="http://seoforums.org/google/" title="SEO Blog" target="_blank">Google SEO</a><br />';
                    break;
                }
                
$vbulletin->options['copyrighttext'] .= $footer_link


hm, nice find
I didn't mind promoting his seo site, but I'm not risking the quality of my site to promote his poker site

[high]* Brandon Sheley uninstalled :down:[/high]

final kaoss 12-31-2010 04:19 PM

1 Attachment(s)
Ok, finally I've fixed the issue with the showthread & forum home collapsible boxes. Only tested with the latest upgrade of this mod, use at your own risk if using a lower version.
only problem that I've found is what's in the attachment (only seems to affect the homepage)

First open up your skin then head over to f_seo_plugin_home and replace everything with

PHP Code:

<style type="text/css">
                 
#wgo_events div.inner *{background:none;display:inline;border:none;color:black;padding:0px 0px 0px 0px;-webkit-border-top-right-radius:0px;-webkit-border-top-left-radius:0px;-webkit-box-shadow: none;font-weight:normal;}
                 #wgo_events div.inner h2{font-size: 130%;font-weight: bold;}
                 #wgo_events div.inner h3{font-size: 120%;font-weight: bold;}
                 #wgo_events div.inner h4{font-size: 120%;}
                 #wgo_events div.inner h5{font-size: 110%;}
                 #wgo_events div.inner strong{font-size: 100%;}
                 #wgo_events a.seoq{margin:5px 0px 0px 20px;}
                 
</style>

<
div class="collapse"> <class="collapse" id="collapse_homepage" href="{vb:raw relpath}#top" ><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_info_options}_40b.png" alt="Collapse this box." /></a>
    <
div id="wgo_events" class="wgo_subblock section">
            <
h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase seofq_title}" />{vb:rawphrase seofq_title}</h3></div>
            <
div class="inner" id="homepage">
                <
vb:each from="keywords" key="wordid" value="word">
                    {
vb:var tag_fix}{vb:var word.tag}>{vb:var word.term_value}</{vb:var word.tag}><vb:if condition="$wordid != $tagscount">,&nbsp;</vb:if>
                </
vb:each>
            </
div>
        </
div








Next head over to f_seo_plugin_thread and again replace the entire contents with

PHP Code:

<style type="text/css">
                 
#seofq_list_cell *{background:none;display:inline;border:none;color:black;padding:0px 0px 0px 0px;-webkit-border-top-right-radius:0px;-webkit-border-top-left-radius:0px;-webkit-box-shadow: none;font-weight:normal;}
                 #seofq_list_cell h2{font-size: 130%;font-weight: bold;}
                 #seofq_list_cell h3{font-size: 120%;font-weight: bold;}
                 #seofq_list_cell h4{font-size: 120%;}
                 #seofq_list_cell h5{font-size: 110%;}
                 #seofq_list_cell strong{font-size: 110%;}
                 #seof_queries_list a.seoq{margin:0px 0px 0px 0px;font-size: 100%;}
                 
</style>
<
div class="collapse"> <class="collapse" id="collapse_seof_queries_list" href="{vb:raw relpath}#top" ><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_info_options}_40b.png" alt="Collapse this box." /></a>

    <
h4 class="threadinfohead"><span class="optiontitle">{vb:rawphrase seofq_title}</span></h4></div>
    <
div id="seof_queries_list" class="thread_info_block">
        <
div class="inner_block">
            <
div id='seofq_list_cell'>
            <
vb:each from="keywords" key="wordid" value="word">
                {
vb:var tag_fix}{vb:var word.tag}>{vb:var word.term_value}</{vb:var word.tag}><vb:if condition="$wordid != $tagscount">,&nbsp;</vb:if>
            </
vb:each>
            </
div>
        </
div>
    </
div


rmd708 01-04-2011 08:20 AM

My server load is above 20 with this installed and below 1 with it uninstalled. This is with a very powerful server.

hany_c_v 01-04-2011 10:20 AM

Thanks

Installed
http://www.mngol.com/en/

final kaoss 01-04-2011 11:07 AM

I find that hard to believe. My server load barely rises above 4 percent with this mod enabled plus all the others. This is with shared hosting.;)

Quote:

Originally Posted by rmd708 (Post 2143758)
My server load is above 20 with this installed and below 1 with it uninstalled. This is with a very powerful server.


denman75 01-04-2011 11:40 AM

i used this mod ,but i dont like it to be for poker advert
is only way to remove this ,uninstall this mod completly ?


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

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.01804 seconds
  • Memory Usage 1,781KB
  • 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
  • (3)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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