vBTubePRO - vBulletin Video, Photo and MP3

Media Center | Videos Photos MP3


Go Back   vBTubePRO - vBulletin Video, Photo and MP3 > vBTubePRO > Language Specific Discussion and Support > Turkish

Register Calendar Mark Forums as read
  #1 (permalink)  
Old 21-06-2009, 03:02
vBTubePRO-User BF
 
Join Date: Sep 2008
Posts: 130
Default VBSEO sitemap generator ve VBTUBE

VBSEO sitemap generator icin bir eklenti kullaniyorum ama linkler seo lu olmuyor. Linkleri nasil crr ile seo ya dönüstürüyorsak eminim sitemap generator icindede bunu yapmak mümkündür. Acaba ne zaman bu mevcut duruma gelecek. Örnegin su sekilde bir sitemap eklentisi yapmislar

PHP Code:
<?php

 
/******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
 *-----------------------------------------------------------------------------------------*
 *                                                                                         *
 * Copyright © 2005-2008, Crawlability, Inc. All rights reserved.                          *
 * You may not redistribute this file or its derivatives without written permission.       *
 *                                                                                         *
 * Sales Email: sales@crawlability.com                                                     *
 *                                                                                         *
 *-------------------------------------LICENSE AGREEMENT-----------------------------------*
 * 1. You are free to download and install this plugin on any vBulletin forum for which    *
 *    you hold a valid vB license.                                                         *
 * 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files     *
 *    themselves.                                                                          *
 * 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files.         *
 * 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution.    *
 * 4. Brought to you by nymyth @ www.loungeboard.com & www.bollywoodmashups.com.           *
 ******************************************************************************************/

    
$mods $db->query("SELECT categoryid FROM " TABLE_PREFIX "vbtube_categories");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/vbtube_cat.php?do=all&cat&id='.$mod['categoryid'];
        if(
VBSEO_ON)
            
$url vbseo_any_url($url);

          
vbseo_add_url($url0.75'''daily');
    }

    
$mods $db->query("SELECT tubeid FROM " TABLE_PREFIX "vbtube_tubes");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/vbtube_show.php?do=tube&tubeid='.$mod['tubeid'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url1.0'''daily');
    }
?>
Downloads II eklentisi icin ise olan ve seo ya uygun sitemap kodlari ise su ;

PHP Code:
<?php

 
/******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
 *-----------------------------------------------------------------------------------------*
 *                                                                                         *
 * Copyright © 2005-2007, Crawlability, Inc. All rights reserved.                          *
 * You may not redistribute this file or its derivatives without written permission.       *
 *                                                                                         *
 * Sales Email: sales@crawlability.com                                                     *
 *                                                                                         *
 *-------------------------------------LICENSE AGREEMENT-----------------------------------*
 * 1. You are free to download and install this plugin on any vBulletin forum for which    *
 *    you hold a valid vB license.                                                         *
 * 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files     *
 *    themselves.                                                                          *
 * 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files.         *
 * 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution.    *
 ******************************************************************************************/

     
$dl_seourls true;


    
$mods $db->query("SELECT id,name FROM " TABLE_PREFIX "dl_cats ORDER BY `id`");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=cat'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['name']):'').
            
'&amp;id='.$mod['id'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);

          
vbseo_add_url($url1.0'''daily');
    }

    
$mods $db->query("SELECT f.id as fid,f.name as fname,c.id as cid,c.name as cname".
        
" FROM " TABLE_PREFIX "dl_files f".
        
" LEFT JOIN " TABLE_PREFIX "dl_cats c on c.id=f.category");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=file'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['fname']).'&amp;cid='.$mod['cid'].'&amp;ctitle='.vbseo_filter_text($mod['cname']):'').
            
'&amp;id='.$mod['fid'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url1.0'''daily');
    }  
?>
Zannedersem buna göre uygulanabilir.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 15-09-2009, 01:08
vBTubePRO-User BF
 
Join Date: Sep 2008
Posts: 130
Default

Buna göre uygulanmasa bile free sürüm olan video directory eklentisinin dahi böyle bir sitemap eklentisi yapilmis. Kullanilan php kodlari sunlar

PHP Code:
<?php
 
/******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
 *-----------------------------------------------------------------------------------------*
 *                                                                                         *
 * Copyright © 2005-2008, Crawlability, Inc. All rights reserved.                          *
 * You may not redistribute this file or its derivatives without written permission.       *
 *                                                                                         *
 * Sales Email: sales@crawlability.com                                                     *
 *                                                                                         *
 *-------------------------------------LICENSE AGREEMENT-----------------------------------*
 * 1. You are free to download and install this plugin on any vBulletin forum for which    *
 *    you hold a valid vB license.                                                         *
 * 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files     *
 *    themselves.                                                                          *
 * 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files.         *
 * 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution.    *
 *                                                                                         *
 *                             vBulletin - VIDEO DIRECTORY                                 *
 *                                                                                         *
 *                          by kaptanblack - doublekeyf.com                                *
 *                                                                                         *
 ******************************************************************************************/

function construct_category_url(&$mod$append '')
{
    global 
$vbulletin;
    if (
defined('VBSEO_ENABLED'))
    {
        
$url 'video.php?' $vbulletin->session->vars['sessionurl'] . 'do=viewcategory&amp;categoryid=' $mod['categoryid'] . '&amp;categorytitle=' vbseo_filter_text($mod['videotitle']) . $append;
    }
    else
    {
        
$url 'video.php?' $vbulletin->session->vars['sessionurl'] . 'do=viewcategory&amp;categoryid=' $mod['categoryid'] . $append;
    }

    return 
$url;
}


function 
construct_video_url(&$mod)
{
    global 
$vbulletin;
    if (
defined('VBSEO_ENABLED'))
    {
        
$cat =& $vbulletin->videocats["$video[videocategoryid]"];
        
$url 'video.php?' $vbulletin->session->vars['sessionurl'] . 'do=viewdetails&amp;categoryid=' $mod['categoryid'] . '&amp;categorytitle=' vbseo_filter_text($mod['cattitle']) . '&amp;videoid=' $mod['vid'] . '&amp;videotitle=' vbseo_filter_text($mod['title']);
    }
    else
    {
        
$url 'video.php?' $vbulletin->session->vars['sessionurl'] . 'do=viewdetails&amp;videoid=' $mod['videoid'];
    }

    return 
$url;
}


    
$bb_url $vbulletin->options['bburl'];

    
$mods $db->query("SELECT videocategoryid as categoryid, title as videotitle FROM " TABLE_PREFIX "videocategory ORDER BY videocategoryid ASC");
    while (
$mod $db->fetch_array($mods))
    {
        
$video['url'] = construct_category_url(&$mod);

        
$url ''.$bb_url.'/'.$video['url'].'';

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url1.0'''daily');
    }

    
$mods $db->query("SELECT videocategory.videocategoryid as categoryid, videocategory.title as cattitle, video.title as title, video.videoid as vid
    FROM " 
TABLE_PREFIX "video AS video
    LEFT JOIN " 
TABLE_PREFIX "videocategory AS videocategory ON(videocategory.videocategoryid = video.videocategoryid)
    ORDER BY vid ASC"
);
    while (
$mod $db->fetch_array($mods))
    {
        
$video['url'] = construct_video_url(&$mod);

        
$url ''.$bb_url.'/'.$video['url'].'';

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url1.0'''daily');
    }
?>

En azindan buna göre olusturabilir. Bence sizin icin zor olmasa gerek
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 15-09-2009, 17:52
vBTubePRO-User BR
 
Join Date: Apr 2008
Posts: 226
Default

Is this a sitemap for vbtube?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 16-09-2009, 08:31
s7v7n's Avatar
Administrator
 
Join Date: Jan 2008
Posts: 4,473
Default

No misskalunji. It's a example from a other hack.

alptraum: daha önce sitemap programlamadigim icin su an birsey söyleyemiyorum.
Verdiginiz örneklere Stable v2.1 dan sonra bir göz atacagim.
__________________
CEO | Murat K. | s7v7n

Please search Forum before opening a >> Support-Ticket <<
For general Questions/Requests/Suggestions use >> Forum <<


Please use only original and licensed copies of vBTubePRO.
Only legal installations will guarantee you support and updates.
Report illegal installations or any other illegal using immediately!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 16-09-2009, 17:24
vBTubePRO-User BR
 
Join Date: Apr 2008
Posts: 226
Default

No i know it looks LIKE it
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 15:30  

 Announcements
- vBTubePRO v2.1 vB4 Support released

Site Navigation
- Home
- Forum
- Contact Us
- Archive
- Top


Copyright & License
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.0
vBTubePRO Copyright ©2007-2010 Version 2.1
vBTubePRO License Agreement