vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Integration with vBulletin - vB Google Search Cloud - SEO (https://vborg.vbsupport.ru/showthread.php?t=178714)

David_R 06-07-2008 11:14 AM

How is this addon really helpful ? this shall help our competitors to find the top keywords/phrases for our website instead ?

imported_silkroad 06-07-2008 01:34 PM

Installed this on vb 3.6.8 and it does not display any search terms.

For example, see the top of the footer here:

http://www.unix.com/forum_index.php

Any idea why?

Megatr0n 06-07-2008 01:40 PM

Is there any point in installing this if we have vBSEO?

imported_silkroad 06-07-2008 01:56 PM

Quote:

Originally Posted by maidos (Post 1522466)
on the search cloud it jsut give me the search name links that lead me to the main site, is this normal behaviour

Same problem here.

Our site has the same issues (see top of the footer):

http://www.unix.com/forum_index.php

imported_silkroad 06-07-2008 03:40 PM

Deinstalled on 3.6.8 .... did not work on our board.

NeutralizeR 06-07-2008 05:15 PM

Quote:

Originally Posted by David_R (Post 1543053)
How is this addon really helpful ? this shall help our competitors to find the top keywords/phrases for our website instead ?

The tag cloud will also help your competitors to find the top content for your website if we think that way.

Quote:

Originally Posted by imported_silkroad (Post 1543142)
Installed this on vb 3.6.8 and it does not display any search terms.

For example, see the top of the footer here:

http://www.unix.com/forum_index.php

Any idea why?

Not sure... Did you try searching your website with the different search terms @ Google?

Quote:

Originally Posted by Megatr0n (Post 1543145)
Is there any point in installing this if we have vBSEO?

Nothing to do with vBSEO. This is just a Google Search Cloud.

srssr 06-11-2008 12:49 AM

Same problem here. Installed on 3.7 in the top of the footer and any terms I search do not show up.

http://www.dssgeeks.com/forums/

NeutralizeR 06-11-2008 01:29 AM

Quote:

Originally Posted by srssr (Post 1546267)
Same problem here. Installed on 3.7 in the top of the footer and any terms I search do not show up.

http://www.dssgeeks.com/forums/

Do you have any data in the google_searches table?

srssr 06-11-2008 02:46 AM

Quote:

Originally Posted by NeutralizeR (Post 1546287)
Do you have any data in the google_searches table?

This is what I got:

google_searches 50.1 KB 19.0 KB

So yes, there is some data in there.

NeutralizeR 06-11-2008 05:12 AM

Quote:

Originally Posted by srssr (Post 1546332)
This is what I got:

google_searches 50.1 KB 19.0 KB

So yes, there is some data in there.

Any records in the google_searches table, "kw" column? You can check it with phpmyadmin. Try adding $vbsearchcloud to your footer template.

srssr 06-12-2008 03:44 PM

Its working now. Footer had $searchcloud instead of $vbsearchcloud. Replaced it and it worked immediately.

Thanks a million for this hack and thanks for helping me out. :D

zmickzalois3 06-12-2008 04:25 PM

Hello, I have a big problem with this hack, it appears! But look at the skin I've just write a message inside=> ... powered by Simple Search Cloud

https://vborg.vbsupport.ru/

thank you all aid

NeutralizeR 06-12-2008 05:52 PM

Quote:

Originally Posted by zmickzalois3 (Post 1547789)
Hello, I have a big problem with this hack, it appears! But look at the skin I've just write a message inside=> ... powered by Simple Search Cloud

https://vborg.vbsupport.ru/

thank you all aid

I really couldn't understand the problem from the screenshot. Try moving $searchcloud somewhere else in the template

zmickzalois3 06-12-2008 11:00 PM

bonsoir, I think it puts a little time a tagger, it must act with time .. I thank you now 2 tagg

maxicep 06-18-2008 11:51 AM

Thanks , great

But it adds a few queries to all pages :(

tpearl5 06-27-2008 05:30 PM

saving this for later :)

Mr.samy 07-01-2008 01:08 PM

I install it and works perfectly but

I receive and database error

about duplicate key for entry

NeutralizeR 07-01-2008 04:34 PM

Quote:

Originally Posted by Mr.samy (Post 1563947)
I install it and works perfectly but

I receive and database error

about duplicate key for entry

Apply this edit:
https://vborg.vbsupport.ru/showpost....&postcount=117

Mr.samy 07-01-2008 09:11 PM

thanks mr.NeutralizeR

but i already make this modification

see
PHP Code:

if (strlen($search)>0)
            {
                                                                
$search=substr($search,0,254);
                
$this->_logHit(strtolower($search),$pageURL);        
            }
        }
    } 

and i still receive the error message

PHP Code:

Database error in vBulletin 3.7.1:

Invalid SQL:
INSERT into google_searches VALUES ('ma3hd','http://www.ma3hd.net/vb/showthread.php?t=9165\',1);

MySQL Error   : Duplicate entry '' for key 1
Error Number  : 1062 

my board used UTF8 encoding

NeutralizeR 07-02-2008 03:53 AM

Hmm... alright. Revert the changes you made to search_cloud.php file.

Find:
PHP Code:

$search $this->getMysqlReadyString(trim($search)); 

Add below:
PHP Code:

        if (strlen($search) > 100 || strlen($pageURL) > 100)
        {
            return;
        } 


Mr.samy 07-04-2008 10:27 AM

thanks mr.NeutralizeR

but i still rececive error

that :
PHP Code:

Database error in vBulletin 3.7.2:

Invalid SQL:
INSERT into google_searches VALUES ('����? ���? cake mania 2 ����?','ma3hd.com',1);

MySQL Error   Duplicate entry '' for key 1
Error Number  
1062
Request Date  
FridayJuly 4th 2008 12:37:03 PM
Error Date    
FridayJuly 4th 2008 12:37:03 PM
Script        

Referrer      
IP Address    41.233.34.57
Username      
: غير مسجل
Classname     vB_Database
MySQL Version 



NeutralizeR 07-04-2008 07:06 PM

Quote:

Originally Posted by Mr.samy (Post 1566610)
thanks mr.NeutralizeR

but i still rececive error

that :
PHP Code:

Database error in vBulletin 3.7.2:

Invalid SQL:
INSERT into google_searches VALUES ('����? ���? cake mania 2 ����?','ma3hd.com',1);

MySQL Error   Duplicate entry '' for key 1
Error Number  
1062
Request Date  
FridayJuly 4th 2008 12:37:03 PM
Error Date    
FridayJuly 4th 2008 12:37:03 PM
Script        

Referrer      
IP Address    41.233.34.57
Username      
: غير مسجل
Classname     vB_Database
MySQL Version 



I'm not sure why it didn't fix the problem for you. Try applying the both modifications :)

dethfire 07-04-2008 07:31 PM

google says 100 links per page, won't this kills this link count for most sites?

NeutralizeR 07-04-2008 09:19 PM

Quote:

Originally Posted by dethfire (Post 1566923)
google says 100 links per page, won't this kills this link count for most sites?

If you have this kind of concerns you may set it to 50 links.

Many big forums already have more than 200+ forums linked from their forumhome.

needaltuna 07-04-2008 11:36 PM

Thank you for an invaluable mod.

I've adjusted the width of the box to match that of my forum, but it is out of alignment with the navbar at the bottom of the main page by one pixel. What code do I need to use to correct this?

Thanks.

NeutralizeR 07-05-2008 01:24 AM

Quote:

Originally Posted by needaltuna (Post 1567027)
Thank you for an invaluable mod.

I've adjusted the width of the box to match that of my forum, but it is out of alignment with the navbar at the bottom of the main page by one pixel. What code do I need to use to correct this?

Thanks.

Edit "Search Templates > searchcloud" template.

needaltuna 07-05-2008 04:24 AM

I know I have to edit the template, but what I'm asking is what changes do I need to make to the code in the template to fix the misalignment?

NeutralizeR 07-05-2008 05:27 AM

the "width" of the <table>

rasputin 07-05-2008 09:33 AM

Quote:

Originally Posted by vmacedonia (Post 1527336)
Why most searched text isn't made with bigger font size, all the text phrases are the same?

Is this line in the PHP file have anything to do with the problem?

Code:

$datas[kw]=iconv("utf-8","Windows-1251",$datas[kw]);

Quote:

Originally Posted by vmacedonia (Post 1527371)
I have added that code before the line:

Code:

if ($a > 0.8)
like in version 1.0.1.

Is this correct for the new version or the code must be on another place?

Quote:

Originally Posted by NeutralizeR (Post 1527415)
It's correct.

I obtain this error
PHP Code:

Fatal errorCall to undefined function: iconv() in /web/htdocs/www.gradinatasud.it/home/forum/search_cloud.php on line 218 

when trying to set the western europe character set..

NeutralizeR 07-05-2008 11:21 AM

Quote:

Originally Posted by rasputin (Post 1567241)
I obtain this error
PHP Code:

Fatal errorCall to undefined function: iconv() in /web/htdocs/www.gradinatasud.it/home/forum/search_cloud.php on line 218 

when trying to set the western europe character set..

You don't have iconv installed.

needaltuna 07-05-2008 12:12 PM

Quote:

Originally Posted by NeutralizeR (Post 1567131)
the "width" of the <table>

It's not a width issue, as the width is correct, it's an alignment issue. The box isn't centered properly, it's one pixel too far to the left.

NeutralizeR 07-05-2008 08:58 PM

Quote:

Originally Posted by needaltuna (Post 1567319)
It's not a width issue, as the width is correct, it's an alignment issue. The box isn't centered properly, it's one pixel too far to the left.

What's the URL?

needaltuna 07-07-2008 03:06 AM

Quote:

Originally Posted by NeutralizeR (Post 1567668)
What's the URL?

It's an adult forum, so I'll PM the url to you.

Thanks.

NeutralizeR 07-07-2008 08:44 AM

Change table's width to 810

needaltuna 07-07-2008 12:30 PM

Thank you. That fixed it.

jmke 07-07-2008 07:29 PM

excellent! Works on 3.6.x too :D

ruindil 07-08-2008 04:01 PM

Thanks.

Quote:

Originally Posted by NeutralizeR (Post 1514679)
I fixed this problem with iconv support.

Open search_cloud.php and find:
PHP Code:

if ($a 0.8

Add above:
PHP Code:

$datas[kw]=iconv("utf-8","iso-8859-9",$datas[kw]); 


I have done,but the procedure gave the mistake.
error
Code:

Fatal error: Call to undefined function: iconv() in /home/xxx/public_html/forum/search_cloud.php on line 218

Big Kahuna 07-08-2008 09:40 PM

I followed the instructions to the T at www.mopowerstyle.com/forums and put $searchcloud in a Ultimate Column block (but also tried in in the footer Template) and still nothing. How long does this take?

NeutralizeR 07-09-2008 03:35 AM

Quote:

Originally Posted by ruindil (Post 1570181)
Thanks.


I have done,but the procedure gave the mistake.
error
Code:

Fatal error: Call to undefined function: iconv() in /home/xxx/public_html/forum/search_cloud.php on line 218

You need iconv support.

Quote:

Originally Posted by Big Kahuna (Post 1570462)
I followed the instructions to the T at www.mopowerstyle.com/forums and put $searchcloud in a Ultimate Column block (but also tried in in the footer Template) and still nothing. How long does this take?

Try $vbsearchcloud

ruindil 07-09-2008 12:14 PM

Quote:

Originally Posted by NeutralizeR (Post 1570650)
You need iconv support.

I worked solving

Code:

$datas[kw]=iconv("utf-8","iso-8859-9",$datas[kw]);
change

Code:

$datas[kw]= mb_convert_encoding ($datas, "ISO-8859-9", "UTF-8"");


All times are GMT. The time now is 10:39 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.01730 seconds
  • Memory Usage 1,865KB
  • 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
  • (10)bbcode_php_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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