vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.

Page 7 of 13
FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 LastLast
Results 91 to 105 of 195

vBSEO Functions for Extensibility

This is a discussion on vBSEO Functions for Extensibility within the General Discussion forums, part of the vBSEO SEO Plugin category; vbseo_thread_url_row_spec() should return full URL according to the format defined in vbseocp (including forum_title). What is an example URL you ...

  1. #91
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    vbseo_thread_url_row_spec() should return full URL according to the format defined in vbseocp (including forum_title).
    What is an example URL you got?
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  2. #92
    neo
    neo is offline
    Member
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    68
    Quote Originally Posted by Oleg Ignatiuk View Post
    vbseo_thread_url_row_spec() should return full URL according to the format defined in vbseocp (including forum_title).
    What is an example URL you got?
    Code:
    http://www.emudesc.net/foros//3875-dudas-visual-boy-advance-last-post.html
    

  3. #93
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    What is the full code you have?
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  4. #94
    neo
    neo is offline
    Member
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    68
    PHP Code:
                $conex mysql_connect("localhost","user","pass");
                
    $bd mysql_select_db("dbname");
                 
    $sql "SELECT * FROM vb_thread order by dateline desc LIMIT 10 ";
           
    $consulta mysql_query($sql);
           while (
    $fila mysql_fetch_array($consulta)) {
              
    $sql "select * from vb_post WHERE threadid = $fila[threadid] order by dateline desc ";
              
    $resu mysql_query($sql);
              
    $fila2 mysql_fetch_array($resu);
              
    $fecha = @date('j-n-Y'$fila['dateline'] - $hourdiff);
              echo 
    "<a href=\"http://www.emudesc.net/foros/showthread.php?p=$fila2[postid]&mode=linear#post$fila2[parentid]\" target=\"_blank\">".mod($fila[title])."</a><br>";
           } 

  5. #95
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    I mean the code you have now, with all changes related to vBSEO URLs.
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  6. #96
    neo
    neo is offline
    Member
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    68
    PHP Code:
    $conex mysql_connect("localhost","user","pass");
                
    $bd mysql_select_db("dbname");
                 
    $sql "SELECT * FROM vb_thread order by dateline desc LIMIT 10 ";
           
    $consulta mysql_query($sql);
           while (
    $fila mysql_fetch_array($consulta)) {
              echo 
    "<a href=\"http://www.emudesc.net/foros/".vbseo_thread_url_row_spec($fila,VBSEO_URL_THREAD_LASTPOST)."\" target=\"_blank\">".mod($fila[title])."</a><br>";
           } 

  7. #97
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    What about include 'functions_vbseo.php';?
    Please also insert vbseo_startup() function call.
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  8. #98
    neo
    neo is offline
    Member
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    68
    PHP Code:
    include_once '/var/www/vhosts/emudesc.net/httpdocs/foros/includes/functions_vbseo.php';
    vbseo_startup(); 
    PHP Code:
    $conex mysql_connect("localhost","user","pass");
                
    $bd mysql_select_db("dbname");
                
    $sql "SELECT * FROM vb_thread order by dateline desc LIMIT 15 ";
           
    $consulta mysql_query($sql);
           while (
    $fila mysql_fetch_array($consulta)) {
              echo 
    "<a href=\"http://www.emudesc.net/foros/".vbseo_thread_url_row_spec($fila,VBSEO_URL_THREAD_LASTPOST)."\" target=\"_blank\">".mod($fila[title])."</a><br>";
           } 
    It works, thank you Oleg

  9. #99
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    Great!
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  10. #100
    Senior Member KW802's Avatar
    Real Name
    Kevin
    Join Date
    Jan 2006
    Posts
    163
    [ EDITED - Will be submitted via support ticket ]
    Last edited by KW802; 01-31-2007 at 02:41 PM.

  11. #101
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    Hello,

    it should not strip forumids parameter from URL. Can you provide an example link to check this?
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  12. #102
    Senior Member KW802's Avatar
    Real Name
    Kevin
    Join Date
    Jan 2006
    Posts
    163
    Quote Originally Posted by Oleg Ignatiuk View Post
    Hello,

    it should not strip forumids parameter from URL. Can you provide an example link to check this?
    OK, if I PM the URL instead (or I could email the project to you)?

  13. #103
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    Please open a support ticket for easier tracking. Thanks.
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  14. #104
    Member
    Real Name
    Eric Chamberlain
    Join Date
    Sep 2006
    Posts
    35

    Can make_crawlable() be called after header()?

    I'm trying to use make_crawlable, but I am getting an error:

    Warning: Cannot modify header information - headers already sent by (/home/.../z/includes/external_auth/vbulletin36.php:696) in /z/includes/zoints.php on line 341

    Can make_crawlable be called after header()?

    Can make_crawlable be called multiple times?

    If not, will I see a big performance hit if I use ob_start('make_crawlable')?

  15. #105
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,543
    You can use make_crawlable after the header() calls, but in your case the output has started before calling make_crawling (like echo "XX"
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation



Similar Threads

  1. vBSEO 2.4.0 Released - Includes Google AdSense Targeting Feature!
    By Juan Muriente in forum vBSEO Announcements
    Replies: 74
    Last Post: 05-20-2006, 09:29 PM
  2. vBSEO 2.0 RC7 Released
    By Juan Muriente in forum vBSEO Announcements
    Replies: 17
    Last Post: 09-08-2005, 11:00 PM