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.
Results 1 to 5 of 5

Thread: Firefox Style problem

  1. #1
    Junior Member
    Join Date
    Mar 2010
    Posts
    8

    Default Firefox Style problem

    I bought yesterday this Add On and I use it in

    URL : muhakeme.net

    If I look with Firefox browser than there is in Vbadvanced a character encoding problem.
    As example you see in the link:

    URL : muhakeme.net/de/atat%C3%BCrk-t27837.html

    There is css problem only in firefox webbrowser!

    I don´t know if there are some other mistakes or problems.
    Can you look please or can you help?

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

    Default

    Please edit file /includes/vbenterprisetranslator_functions_url_tracking:
    1. Find:
    PHP Code:
    if (=== strpos($address'javascript:') || $address == '#' || vbet_isURLIgnored($address)) { 
    2. REPLACE by:
    PHP Code:
    if (false !== strpos($address'.css') || === strpos($address'javascript:') || $address == '#' || vbet_isURLIgnored($address)) { 
    This will be included in next release.

  3. #3
    Junior Member
    Join Date
    Mar 2010
    Posts
    8

    Default

    Text automatically translated from: German to: English
    Translated text
    Unfortunately. We have found no solution yet: =)

    Url: muhakeme.net/de/gegen-ende-der-sultan-sea-t28068.html
    Original text

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

    Default

    Please edit file /includes/vbenterprisetranslator_functions.php:
    1. Find:
    PHP Code:
    if ($vbulletin->options['vbenterprisetranslator_translationlinkstype']) {
    $baseUri $vbulletin->options['bburl'];
    $output vbet_replaceFirst('<head>','<head><base href="'.$baseUri.'/" />',$output);
    if (
    defined('VBSEO_BASEDEPTH') && VBSEO_BASEDEPTH && defined('VBSEO_PREPROCESSED')) {
    $output vbet_replaceFirst('<!--[if IE]></base><![endif]-->','<!--[if IE]></base><![endif]--><base href="'.$baseUri.'/" />',$output);
    }

    2. REPLACE by:
    PHP Code:
    if ($vbulletin->options['vbenterprisetranslator_translationlinkstype']) {
    $baseUri $vbulletin->options['bburl'];
    $what '<base href="'.$baseUri.'/'.$language.'/"';
    $toWhat '<base href="'.$baseUri.'/"';
    $position strpos($output$what);
    if (
    $position === false) {
    $output vbet_replaceFirst('<head>','<head>'.$toWhat.' />',$output);
    } else {
    $output substr_replace($output$toWhat$positionstrlen($what));                
    }

    This will be included in next release.

    Please confirm did it solved issue this time (keep also last changes)

  5. #5
    Junior Member
    Join Date
    Mar 2010
    Posts
    8

    Default

    Text automatically translated from: German to: English
    Translated text
    I solved it. Now everything is fine Thank you
    Original text

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
  •