Page 7 of 17 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 LastLast
Results 91 to 105 of 242

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
    25,689
    Liked
    157 times
    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.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  2. #92
    neo
    neo is offline
    Member neo's Avatar
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    87
    Liked
    0 times
    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
    25,689
    Liked
    157 times
    What is the full code you have?
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  4. #94
    neo
    neo is offline
    Member neo's Avatar
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    87
    Liked
    0 times
    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
    25,689
    Liked
    157 times
    I mean the code you have now, with all changes related to vBSEO URLs.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  6. #96
    neo
    neo is offline
    Member neo's Avatar
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    87
    Liked
    0 times
    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
    25,689
    Liked
    157 times
    What about include 'functions_vbseo.php';?
    Please also insert vbseo_startup() function call.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  8. #98
    neo
    neo is offline
    Member neo's Avatar
    Real Name
    Diego
    Join Date
    Jul 2006
    Location
    in the bank
    Posts
    87
    Liked
    0 times
    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
    25,689
    Liked
    157 times
    Great!
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


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

  11. #101
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    Hello,

    it should not strip forumids parameter from URL. Can you provide an example link to check this?
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  12. #102
    Senior Member KW802's Avatar
    Real Name
    Kevin
    Join Date
    Jan 2006
    Posts
    163
    Liked
    0 times
    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
    25,689
    Liked
    157 times
    Please open a support ticket for easier tracking. Thanks.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  14. #104
    Member
    Real Name
    Eric Chamberlain
    Join Date
    Sep 2006
    Posts
    36
    Liked
    0 times

    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
    25,689
    Liked
    157 times
    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.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


Page 7 of 17 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 LastLast

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, 10:29 PM
  2. vBSEO 2.0 RC7 Released
    By Juan Muriente in forum vBSEO Announcements
    Replies: 17
    Last Post: 09-09-2005, 12:00 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •