Important: This page is using cookies (cookies). Using this website without turning off cookies in browser, means that you agree for using it.
Buy Now! Features Downloads

Earn with us!

If you would like to start earning money with vBET join to Affiliate Program.
Page 1 of 3 123 LastLast
Results 1 to 10 of 23

Thread: vbet generate a vbseo bug

  1. #1

    Default vbet generate a vbseo bug

    guys after installing vbet

    urls like

    /showthread.php?t=791&goto=newpost

    is not been redirect to the new sef url
    that should be

    /vbet4-integration-other-plugins/791-vbet-4-22-vbseo-3-5-1-not-compatible.html


    for example. please take a look and give a needed workaround to solve this.


    Thanks

  2. #2
    vBulletin Enterprise Translator (vBET) Staff
    Join Date
    May 2010
    Posts
    1,000

    Default

    which version of vBET and vBULETTIN you have?

  3. #3

    Default

    this is happening in all vbulletin/vbet versions you can test this problem here in this website.

  4. #4
    vBulletin Enterprise Translator (vBET) Staff
    Join Date
    May 2010
    Posts
    1,000

    Default

    true..

    I thought that the point is that it does not go to the relevant page.

    Now I know what's going on.

    Confirmed.. We will check it.

  5. #5

    Default

    any news here ???

  6. #6
    Michał Podbielski (vBET Staff) vBET's Avatar
    Join Date
    Oct 2009
    Posts
    3,037

    Default

    At this moment we identified that it is because of global_start hook. We still have to investigate what exactly there causes it to be able to solve it. We hope to have it solved soon - sorry if it takes too long for you. I will personally describe quick fix as soon as we will have solution.

  7. #7
    Michał Podbielski (vBET Staff) vBET's Avatar
    Join Date
    Oct 2009
    Posts
    3,037

    Default

    We have solution for that for vBET 3.x (already solved on our forum):


    1. Edit includes/vbenterprisetranlator_functions_hooks.php
    2. Find:
    Code:
    if (THIS_SCRIPT == 'showthread' && 'VBSEO_URI' == $vbulletin->options['vbenterprisetranslator_linkstype'] && $_GET['t']) {
    3. Replace by:
    Code:
    if (THIS_SCRIPT == 'showthread' && 'VBSEO_URI' == $vbulletin->options['vbenterprisetranslator_linkstype'] && $_GET['t'] && $_REQUEST['goto'] != 'newpost') {
    We still do not have it solved for vBET 4.x, but working on it.
    Last edited by kamilkurczak; 05-07-10 at 13:08.

  8. #8

    Default

    thanks i will be waiting for vbet 4 fix

  9. #9
    Michał Podbielski (vBET Staff) vBET's Avatar
    Join Date
    Oct 2009
    Posts
    3,037

    Default

    And here it goes

    Solved - will be included in next release. For quick fix:
    1. Edit vbenterprisetranslator_seo.php

    Edit: correct form
    2. Find:
    Code:
    if (isset($_GET['t']) && false !== strpos($_SERVER['REQUEST_URI'], 'showthread.php')) {
    3. Replace by:
    Code:
    if (isset($_GET['t']) && !isset($_GET['p']) && false !== strpos($_SERVER['REQUEST_URI'], 'showthread.php')) {
    Last edited by kamilkurczak; 05-07-10 at 13:07.

  10. #10

    Default

    is not the inverse ?

Page 1 of 3 123 LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •