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 5 of 8 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 73

Thread: Sitemap Generator integration

  1. #41

    Default

    Text automatically translated from: German to: English
    Translated text
    It is really very difficult to understand, English is not my native language. And unfortunately, her English is not the best.

    I give them the original file, then it is possible that they replace the relevant things?

    thank you
    Original text


    edit:
    uploading on your forum does not work!
    PHP | <?php /****************** - Anonymous - ZzhbFuTT - Pastebin.com
    Last edited by wowglider.de; 20-06-10 at 14:35.

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

    Default

    You gave us your original sitemap generator file - we do not need this.

    If Google cannot download your sitemap generator files, them most probably it means that you have wrong .htaccess file. Please give us it's content to verify. You can just paste it in post in CODE bbcode, or just paste it in post.

    About integration to sitemap generator. I understand that you have difficulties with understanding English and Google translations are not always perfect. Please just fallow integration instructions without any of our code changing. It means - just paste code which we gave in described place. Nothing more. You had code in appropriate place, but it was not our integration code - it was changed. Do not made any changes. Just put our integration code in appropriate place - you have exactly described where to put it. Also please remember to remove code of your language from languages array.

    Please fallow instructions and if you have trouble with some step - please tell exactly which step of integration you do not understand - we will describe it to you exactly

    Please note that we also offer paid integration service for $30 - in that case we do everything for you on your server. But... Our forum online support is free and sitemap generator integration:
    1. Is not necessary
    2. Is really easy - just start from beginning and go step by step.

    So we encourage you to handle this yourself and offer answers to any questions. If you do not understand some part of integration instructions - please point it and we will describe to you
    Do you do not understand where to put our integration code?
    Do you do not understand which code to paste?
    Do you do not understand that you have to paste it exactly and do not made any changes in our integration code?
    Please describe what is actually the cause of your issue. What holds you to do this integration?

    We are waiting for your .htaccess content and questions if you still have any
    Last edited by vBET; 20-06-10 at 15:01.

  3. #43

    Default

    Google CAN download my sitemaps, thats not the problem, the problem is i dont know HOW to edit the .php because i did it like i understand after reading your "tutorial".

    i only need the working .php and all will be okay.

    I got it now to work, but it wont add extra thread pages, the last step to make i dont understand, thats how it look now:

    edit:
    also the code thing is not working because its too long: http://pastebin.com/bfrF78E7
    Last edited by wowglider.de; 20-06-10 at 15:11.

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

    Default

    OK so. Now when you have confirmed it for first pages you can make it working for all pages in 2 steps:
    1. Remove this additional code which you added and put it just 2 code lines below - inside nearest for loop. At the beginning of this loop. So as it is described in manual just BEFORE this line (which is now first line of code in the loop and you will put our code before it):
    Code:
    $vbseo_stat[$archived?'at':'t'] += vbseo_add_2urls(
    2. When you do first part then in our additional code change this:
    Code:
    $currentthreadurl = vbseo_url_thread($threadrow, 1, $archived) . '&amp;language=';
    To this:
    Code:
    $currentthreadurl = vbseo_url_thread($threadrow, $p, $archived) . '&amp;language=';
    So basicly you just change 1 to $p - just as described in manual

    Please confirm did it help and ask for details if you still need our advice - we will gladly help you
    Last edited by vBET; 20-06-10 at 17:13.

  5. #45

    Default

    Your english is terrible, you say things but your meaning is other. I found a solution by looking at other threads, but thanks for your help.

    Maybe i could help others:
    Code:
    //additional code  
    $alanguages = array ('af','sq','ar','be','bg','ca','zh-CN','hr','cs','da','nl','en','pl','et','tl','fi','fr','gl','el','iw','hi','hu','is','id','ga','it','ja','ko','lv','lt','mk','ms','mt','no','fa','pt','ro','ru','sr','sk','sl','es','sw','sv','zh-TW','th','tr','uk','vi','cy','yi');  
    if(!$archived) {  
      $strlenhost = strlen($vbseo_vars['bburl']."/");  
      $currentthreadurl = vbseo_url_thread($threadrow, $p, $archived); 
      $currentthreadurl_before = substr($currentthreadurl,0,$strlenhost); 
      $currentthreadurl_after = "/".substr($currentthreadurl,$strlenhost); 
      $lastpost =& $threadrow['lastpost']; 
      $vbseo_stat['t'] += sizeof($alanguages); 
      foreach($alanguages as $language) {  
        vbseo_add_url($currentthreadurl_before.$language.$currentthreadurl_after, $prior, $lastpost, $freq);  
      }  
    }    
    //end additional code  
    
        			for($p=1; $p<=$totalpages; $p++)
        			{
        			$vbseo_stat[$archived?'at':'t'] += vbseo_add_2urls(  //this was already in there!
        				vbseo_url_thread($threadrow, $p, $archived),
    And another thing, since i added your Addon my Sitemap Creator wont create urllist.txt! -> Text Format File urllist.txt (0.00Kb)
    Last edited by wowglider.de; 22-06-10 at 00:00.

  6. #46

    Default

    is this code now okay?

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

    Default

    Quote Originally Posted by wowglider.de View Post
    Maybe i could help others:
    Code:
    //additional code  
    $alanguages = array ('af','sq','ar','be','bg','ca','zh-CN','hr','cs','da','nl','en','pl','et','tl','fi','fr','gl','el','iw','hi','hu','is','id','ga','it','ja','ko','lv','lt','mk','ms','mt','no','fa','pt','ro','ru','sr','sk','sl','es','sw','sv','zh-TW','th','tr','uk','vi','cy','yi');  
    if(!$archived) {  
      $strlenhost = strlen($vbseo_vars['bburl']."/");  
      $currentthreadurl = vbseo_url_thread($threadrow, $p, $archived); 
      $currentthreadurl_before = substr($currentthreadurl,0,$strlenhost); 
      $currentthreadurl_after = "/".substr($currentthreadurl,$strlenhost); 
      $lastpost =& $threadrow['lastpost']; 
      $vbseo_stat['t'] += sizeof($alanguages); 
      foreach($alanguages as $language) {  
        vbseo_add_url($currentthreadurl_before.$language.$currentthreadurl_after, $prior, $lastpost, $freq);  
      }  
    }    
    //end additional code  
    
        			for($p=1; $p<=$totalpages; $p++)
        			{
        			$vbseo_stat[$archived?'at':'t'] += vbseo_add_2urls(  //this was already in there!
        				vbseo_url_thread($threadrow, $p, $archived),
    And another thing, since i added your Addon my Sitemap Creator wont create urllist.txt! -> Text Format File urllist.txt (0.00Kb)
    Your code is still wrong. Please correct it and confirm do you still have issue with txt format. Please see corrected code below

    Code:
        			for($p=1; $p<=$totalpages; $p++)
        			{
    //additional code  
    $alanguages = array ('af','sq','ar','be','bg','ca','zh-CN','hr','cs','da','nl','en','pl','et','tl','fi','fr','gl','el','iw','hi','hu','is','id','ga','it','ja','ko','lv','lt','mk','ms','mt','no','fa','pt','ro','ru','sr','sk','sl','es','sw','sv','zh-TW','th','tr','uk','vi','cy','yi');  
    if(!$archived) {  
      $strlenhost = strlen($vbseo_vars['bburl']."/");  
      $currentthreadurl = vbseo_url_thread($threadrow, $p, $archived); 
      $currentthreadurl_before = substr($currentthreadurl,0,$strlenhost); 
      $currentthreadurl_after = "/".substr($currentthreadurl,$strlenhost); 
      $lastpost =& $threadrow['lastpost']; 
      $vbseo_stat['t'] += sizeof($alanguages); 
      foreach($alanguages as $language) {  
        vbseo_add_url($currentthreadurl_before.$language.$currentthreadurl_after, $prior, $lastpost, $freq);  
      }  
    }    
    //end additional code  
        			$vbseo_stat[$archived?'at':'t'] += vbseo_add_2urls(  //this was already in there! - That is why we wrote to put our code BEFORE this line
        				vbseo_url_thread($threadrow, $p, $archived),
    Last edited by vBET; 22-06-10 at 22:27.

  8. #48

    Default

    Text automatically translated from: German to: English
    Translated text
    Thank you! It works now apparently! They should produce the code just post in this thread:
    http://www.vbenterprisetranslator.co...tegration.html
    Original text

  9. #49

    Default

    its still not WORKING CORRECTLY:
    sometimes this happens:
    <url>
    <loc>http://wow.glider-forum.de/hardware/19912-mich-beraten-%5Bneuer-pc%5D-3.html</loc>
    <priority>1216154741</priority>
    <lastmod></lastmod>
    <changefreq>daily</changefreq>
    </url>

    you may look for yourself here
    http://wow.glider-forum.de/sitemap_index.xml.gz

    heres the vbseo_sitemap_functions:
    PHP | <?php /****************** - Anonymous - 7U8a6kXp - Pastebin.com

    pictures:
    ImageShack Album - 2 images
    Last edited by wowglider.de; 23-06-10 at 14:16.

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

    Default

    Quote Originally Posted by wowglider.de View Post
    its still not WORKING CORRECTLY:
    sometimes this happens:
    <url>
    <loc>http://wow.glider-forum.de/hardware/19912-mich-beraten-%5Bneuer-pc%5D-3.html</loc>
    <priority>1216154741</priority>
    <lastmod></lastmod>
    <changefreq>daily</changefreq>
    </url>

    you may look for yourself here
    http://wow.glider-forum.de/sitemap_index.xml.gz

    heres the vbseo_sitemap_functions:
    PHP | <?php /****************** - Anonymous - 7U8a6kXp - Pastebin.com

    pictures:
    ImageShack Album - 2 images
    According to code it shouldn't be our fault. We just use priority counted by vBSEO, especially that it happens for link without our additional language code. Please comment our integration code and verify does it is OK without it. It not -then ask vBSEO team for support. If it is OK without our integration code, then please PM access details to your Admin CP and FTP - we will check it on your server and work on solution
    Last edited by vBET; 23-06-10 at 17:40.

Page 5 of 8 FirstFirst ... 34567 ... 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
  •