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 2 12 LastLast
Results 1 to 10 of 11

Thread: Vbulletin 404 page has display errors - major bug

  1. #1
    Senior Member
    Join Date
    Feb 2010
    Posts
    210

    Default Vbulletin 404 page has display errors - major bug

    Found a new bug, basically with vbet enabled the vbulletin 404 page loses all css and formatting.

    It does it on this forum too; http://www.vbenterprisetranslator.co....html#post3562

    I would very much like a quick fix for this, it makes my forum look bad.

    Thanks.

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

    Default

    ok, confirmed.. this is a vBET bug. i will try to fix it.

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

    Default

    I found the code with bug. this is in global_start hook in vBET php file.
    I noticed the part of code where the bug is. Now I am working on solution.

  4. #4
    Senior Member
    Join Date
    Feb 2010
    Posts
    210

    Default

    Great news, when do you think you will have a fix?

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

    Default

    Hi Please note that I'm back - and I will handle this issue. I have few issues on my back, but will try to handle it asap. Cannot tell exactly when, but feel free to kick me if I will not answer you in 2 days

  6. #6
    Senior Member
    Join Date
    Feb 2010
    Posts
    210

    Default

    ok thanks.

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

    Default

    Fixed and will be included in next release. For quick fix please:
    1. Edit /includes/vbenterprisetranslator_functions_hooks.php
    2. Find:
    Code:
    $threadrow = verify_id('thread', $_GET['t'], 1, 1);
    $threadurl = $vbulletin->options['vbenterprisetranslator_forumdir'].'/'.vbseo_thread_url_row($threadrow, $_GET['page'] ? $_GET['page'] : 1);
    if ($threadrow && $threadurl != $_SERVER['VBSEO_URI']) {
    exec_header_redirect($threadurl);
    }
    3. Replace by:
    Code:
    $threadrow = verify_id('thread', $_GET['t'], false, 1);
    if ($threadrow) {
    $threadurl = $vbulletin->options['vbenterprisetranslator_forumdir'].'/'.vbseo_thread_url_row($threadrow, $_GET['page'] ? $_GET['page'] : 1);
    if ($threadrow && $threadurl != $_SERVER['VBSEO_URI']) {
    exec_header_redirect($threadurl);
    }			
    }
    Last edited by kamilkurczak; 22-07-10 at 09:27.

  8. #8
    Senior Member
    Join Date
    Feb 2010
    Posts
    210

    Default

    Not working, just get blank white page on my forum.

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

    Default

    ok, code is edited, now the code is working good.
    I deleted this part:
    Code:
    $_SERVER['VBSEO_URI']);
    it made an php error

  10. #10
    Senior Member
    Join Date
    Feb 2010
    Posts
    210

    Default

    Looks good, thanks.

Page 1 of 2 12 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
  •