vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.

Page 2 of 2
FirstFirst 1 2
Results 16 to 30 of 30

Possibly a new customer

This is a discussion on Possibly a new customer within the Pre-Sales Questions forums, part of the Announcements & Pre-Sales category; Originally Posted by Keith Cohen Lizard King is using 3.0.0: Jar Jar Binks ‘En sinir bozucu’ Seçildi - Ayyas (Note ...

  1. #16
    Junior Member
    Real Name
    Tomasz
    Join Date
    Jun 2006
    Location
    Poland
    Posts
    24

    Re: Possibly a new customer

    Quote Originally Posted by Keith Cohen
    Lizard King is using 3.0.0:

    Jar Jar Binks ‘En sinir bozucu’ Seçildi - Ayyas

    (Note vBSEO copyright in footer.)
    Sorry, I don't understand Turk - please explain how to set it up in English. Thank you.
    My forum: Wizaz.pl | Look how my vBSEO develops

  2. #17
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,540

    Re: Possibly a new customer

    Hello Tomasz,

    basically, you should just manually modify your config_vbseo.php file, filling the $vbseo_custom_char_replacement array with replacement values. Make sure that original characters are specified in exactly the same encoding as it's used at forums.
    An example replacement set for polish language is:
    PHP Code:
         $vbseo_custom_char_replacement = array(
     
    '¡' => 'a',
    '±' => 'a',
    'Æ' => 'c',
    'æ' => 'c',
    'Ê' => 'e',
    'ê' => 'e',
    '£' => 'l',
    '³' => 'l',
    'Ñ' => 'n',
    'ñ' => 'n',
    '¦' => 's',
    '¶' => 's',
    '¬' => 'z',
    '¼' => 'z',
    '¯' => 'z',
    '¿' => 'z' ); 
    If you have a problem with replacements, please post (or PM me) your current $vbseo_custom_char_replacement array and an example link at your forums with character replaced incorrectly.
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  3. #18
    Junior Member
    Real Name
    Tomasz
    Join Date
    Jun 2006
    Location
    Poland
    Posts
    24

    Re: Possibly a new customer

    Quote Originally Posted by Oleg Ignatiuk
    Hello Tomasz,

    basically, you should just manually modify your config_vbseo.php file, filling the $vbseo_custom_char_replacement array with replacement values. Make sure that original characters are specified in exactly the same encoding as it's used at forums.
    An example replacement set for polish language is:
    PHP Code:
         $vbseo_custom_char_replacement = array(
     
    '¡' => 'a',
    '±' => 'a',
    'Æ' => 'c',
    'æ' => 'c',
    'Ê' => 'e',
    'ê' => 'e',
    '£' => 'l',
    '³' => 'l',
    'Ñ' => 'n',
    'ñ' => 'n',
    '¦' => 's',
    '¶' => 's',
    '¬' => 'z',
    '¼' => 'z',
    '¯' => 'z',
    '¿' => 'z' ); 
    If you have a problem with replacements, please post (or PM me) your current $vbseo_custom_char_replacement array and an example link at your forums with character replaced incorrectly.
    Here is the link: Pytania do wiza¿ystki - Forum Wizaz.pl
    (ż -> z)

    Here is my addition to the config_vbseo.php:

    PHP Code:
    $vbseo_custom_char_replacement = array(
    'ą' => 'a',
    'Ą' => 'A',
    'ć' => 'c',
    'Ć' => 'C',
    'ę' => 'e',
    'Ę' => 'E',
    'ł' => 'l',
    'Ł' => 'L',
    'ń' => 'n',
    'Ń' => 'N',
    'ó' => 'o',
    'Ó' => 'O',
    'ż' => 'z',
    'Ż' => 'Z',
    'ź' => 'z',
    'Ź' => 'Z'); 
    Encoding: iso-8859-2, polish language.
    Behaviour: ż is exchanged to %BF (not 'z')
    My forum: Wizaz.pl | Look how my vBSEO develops

  4. #19
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,540

    Re: Possibly a new customer

    PM sent
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  5. #20
    Junior Member
    Real Name
    Tomasz
    Join Date
    Jun 2006
    Location
    Poland
    Posts
    24

    Re: Possibly a new customer

    Quote Originally Posted by Oleg Ignatiuk
    PM sent
    FTP acces granted
    My forum: Wizaz.pl | Look how my vBSEO develops

  6. #21
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,540

    Re: Possibly a new customer

    Thank you, Tomasz!


    Update: $vbseo_custom_char_replacement array definition should replace the default text in config_vbseo.php file, i.e.:
    FIND:
    PHP Code:
    $vbseo_custom_char_replacement = array(
    ); 
    REPLACE WITH:
    PHP Code:
    $vbseo_custom_char_replacement = array(
    'ą' => 'a',
    'Ą' => 'A',
    'ć' => 'c',
    'Ć' => 'C',
    'ę' => 'e',
    'Ę' => 'E',
    'ł' => 'l',
    'Ł' => 'L',
    'ń' => 'n',
    'Ń' => 'N',
    'ó' => 'o',
    'Ó' => 'O',
    'ż' => 'z',
    'Ż' => 'Z',
    'ź' => 'z',
    'Ź' => 'Z'); 
    (your own definitions included in array)
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  7. #22
    Senior Member
    Join Date
    Oct 2005
    Location
    Phuket, Thailand
    Posts
    118

    Re: Possibly a new customer

    You can improve your AdSense a lot by placing your ads different and also blend it in.

    Place the ads below navigation bar and another one after the last post of a thread, but before similar threads or other content thats at the end of a forum page. It made a huge different for me. 300%+

    I use leaderboard format.

  8. #23
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,983

    Re: Possibly a new customer

    Quote Originally Posted by Tomek
    OK - how long does it take to reindex 250.000 pages in Google?
    There is no definitive answer to this. really, it's all up to Google. If i had to hazzard a guess, i'd say 2-4 months.

    But, the good news is that when you get your first 10,000 or so in there, they will be MUCH better ranked. if you were pulling #10 postion before, and now are pulling #1 or #2, those 10,000 pages most likely will generate traffic on-par to 250,000 in low positions.

  9. #24
    Junior Member
    Real Name
    Tomasz
    Join Date
    Jun 2006
    Location
    Poland
    Posts
    24

    Re: Possibly a new customer

    Quote Originally Posted by briansol
    There is no definitive answer to this. really, it's all up to Google. If i had to hazzard a guess, i'd say 2-4 months.

    But, the good news is that when you get your first 10,000 or so in there, they will be MUCH better ranked. if you were pulling #10 postion before, and now are pulling #1 or #2, those 10,000 pages most likely will generate traffic on-par to 250,000 in low positions.
    Sounds really nice
    My forum: Wizaz.pl | Look how my vBSEO develops

  10. #25
    Junior Member
    Real Name
    Tomasz
    Join Date
    Jun 2006
    Location
    Poland
    Posts
    24

    Re: Possibly a new customer

    Well... mixed feelings so far:

    1. mod_rewrite works perfectly
    2. my forums are pretty occupied ones (2000 users online) - but vBSEO produces 5 times bigger load on www machines (I have a cluster of servers, 4 production www and 1 extremely stron mysql machine +2 load balancers).
    3. speed of my forums decreased, I have lost over 30% of pageviews within one day, mainly due to the slower pages - some of them take +45 seconds to load with vbSEO enabled; while vBSEO is disabled it takes 2-3 seconds to load a page.

    Assuming: I have paid 145USD and got a software, which is disabled so far. Therefore I have some questions:
    - how to uninstall it?
    - is there any money back quarantee?

    Take care
    Tom
    My forum: Wizaz.pl | Look how my vBSEO develops

  11. #26
    vBSEO Staff Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    13,923

    Re: Possibly a new customer

    Sure, you can get your money back if you are unable to use the software.

    However, it's our experience that 90% of the times such higher loads are due to elements not directly related to vBSEO. The software is currently installed (and running smoothly) in instancess with over 5000 concurrent users!!

    Let's try to figure out what might be causing this:
    - What is your current load at peak times without vBSEO enabled?
    - When installing vBSEO, did you include your rewrite rules in .htaccess or in httpd.conf?
    - Are you running Zend or ionCube? If you are running ionCube, are you using the runtime loaders or the php.ini installed loaders.

    Let me know on those, I'll follow up with some more....
    Juan Muriente / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  12. #27
    Junior Member
    Real Name
    Tomasz
    Join Date
    Jun 2006
    Location
    Poland
    Posts
    24

    Re: Possibly a new customer

    Quote Originally Posted by Juan Muriente
    Sure, you can get your money back if you are unable to use the software.

    However, it's our experience that 90% of the times such higher loads are due to elements not directly related to vBSEO. The software is currently installed (and running smoothly) in instancess with over 5000 concurrent users!!

    Let's try to figure out what might be causing this:
    - What is your current load at peak times without vBSEO enabled?
    - When installing vBSEO, did you include your rewrite rules in .htaccess or in httpd.conf?
    - Are you running Zend or ionCube? If you are running ionCube, are you using the runtime loaders or the php.ini installed loaders.

    Let me know on those, I'll follow up with some more....
    Answering your questions:
    - enabling vBSEO means running into 20-40 zone. After disabling it load goes down to 2-5.
    - I haven't touched any of my four apache's conf files (cluster)
    - Zend
    My forum: Wizaz.pl | Look how my vBSEO develops

  13. #28
    Junior Member
    Real Name
    Tomasz
    Join Date
    Jun 2006
    Location
    Poland
    Posts
    24

    Re: Possibly a new customer

    I have tried moving .htaccess to httpd.conf - no results, all four machines reached load level of +50 and then I had to disable vBSEO.

    Any other ideas how to solve it?

    And most important - how to uninstall vBSEO?
    My forum: Wizaz.pl | Look how my vBSEO develops

  14. #29
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147

    Re: Possibly a new customer

    To completely uninstall, just uninstall the Product, and remove all the files.

    If you just want to turn it off, the first option in vbseocp.php allows you to disable vBSEO. (And you'll also need to remove or rename the .htaccess file.)

  15. #30
    Senior Member sensimilla's Avatar
    Real Name
    Me
    Join Date
    Sep 2005
    Location
    poland
    Posts
    175
    Witaj Tomku, miło cię widzieć tutaj także
    Powodzenia z wizażem !
    Good choice with vbseo!

    Quote Originally Posted by Oleg Ignatiuk View Post
    Hello Tomasz,

    basically, you should just manually modify your config_vbseo.php file, filling the $vbseo_custom_char_replacement array with replacement values. Make sure that original characters are specified in exactly the same encoding as it's used at forums.
    An example replacement set for polish language is:
    PHP Code:
         $vbseo_custom_char_replacement = array(
     
    '¡' => 'a',
    '±' => 'a',
    'Æ' => 'c',
    'æ' => 'c',
    'Ê' => 'e',
    'ê' => 'e',
    '£' => 'l',
    '³' => 'l',
    'Ñ' => 'n',
    'ñ' => 'n',
    '¦' => 's',
    '¶' => 's',
    '¬' => 'z',
    '¼' => 'z',
    '¯' => 'z',
    '¿' => 'z' ); 
    If you have a problem with replacements, please post (or PM me) your current $vbseo_custom_char_replacement array and an example link at your forums with character replaced incorrectly.
    Thanks Oleg I was in need of this.
    Last edited by sensimilla; 11-15-2006 at 04:21 PM.

Similar Threads

  1. vBSEO Customer Satisfaction Survey
    By Joe Ward in forum vBSEO Announcements
    Replies: 37
    Last Post: 09-07-2007, 12:14 AM