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 2 of 3
FirstFirst 1 2 3 LastLast
Results 16 to 30 of 39

Subdreamer and VBSEO

This is a discussion on Subdreamer and VBSEO within the General Discussion forums, part of the vBSEO SEO Plugin category; I can't wait to see this happen...

  1. #16
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    270
    I can't wait to see this happen

  2. #17
    Member fabianv's Avatar
    Real Name
    Fabian
    Join Date
    Dec 2005
    Posts
    74
    What will be most impressive for me would be when I have subdreamer running with fully rewritten links with my vbulletin and the extra packages i have like zoints.. something in the code will have to probably change so that my zoints url's still rewrite as user.site.com in subdreamer..

    either way.. I am still setting everything up and will keep vbseo staff posted when my site is ready for testing
    Art is life

    ---------


    www.cgcentral.net - South Africa's Digital Media Platform

  3. #18
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    270
    any updates?

  4. #19
    Junior Member
    Real Name
    Troy McDonald
    Join Date
    Jun 2006
    Posts
    15
    I'll be a third if necessary.

    I want Subdreamer+VBSEO to be more than friends... eheh

    Thanks,
    Troy

  5. #20
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    270
    Has there been any new breaks in this weird template?

  6. #21
    Junior Member
    Real Name
    Florinel Olaru
    Join Date
    Dec 2006
    Posts
    11
    Count me in... im am interested too.

  7. #22
    Junior Member
    Real Name
    Florinel Olaru
    Join Date
    Dec 2006
    Posts
    11
    I do have Subdreamer+ Vbulletin + vbSEO installed on emigrantul.com... portal romanesc - Acasa
    (the site is in romanian but, I don't think that is important for the test)
    Now let me know what do I have to send to the tester?

    Florino

  8. #23
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,550
    Hello Florino,

    please open a support ticket with ftp/admincp access and I will check that.
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  9. #24
    Junior Member
    Real Name
    Florinel Olaru
    Join Date
    Dec 2006
    Posts
    11
    Hello Oleg,
    so, I will create an ftp account for you.
    What do you mean admincp? You want me to create an account to acces where, subdreamer?

  10. #25
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,550
    I mean vBulletin's admincp account, which might be required.
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  11. #26
    Junior Member
    Real Name
    Andrew
    Join Date
    Jul 2006
    Location
    Pittsburgh, PA
    Posts
    13

    Post Subdreamer Review

    My take on Subdreamer CMS:

    Don't start. It's not worth the money. Last year I chose Subdreamer to manage the content of my site. It's been a year of hell.

    The article system is lacking, majorly: in SEO and in general. Many of the Subdreamer community have begged and pleaded for something and you'd think for an expensive CMS that they'd listen or make simple changes.

    When I was making my custom skin, they grilled me and explained how I was all but responsible for everything to their red-headed step son... only to later have them confess that their skin guide was missing, and still is, an essential part for any custom skin.

    Also, when approached with any vBulletin integration problems their response is Subdreamer doesn't "Officially" support the latest vBulletin branch. But other than a few hick ups it works well. I also have vBSEO install and working with both, FlashChat, and PhotoPost Gallery.

    Customer support was horrible, the program itself was horrible. In fact, I'll sell you my Subdreamer license with branding free! Seriously! I am currently switching to Joomla with the bbPixil integration for vbulletin. I'd even choose PHPNuke (ew) over Subdreamer at this point.

    -Andrew

  12. #27
    Member
    Real Name
    Simon
    Join Date
    Jun 2006
    Posts
    56
    I use Subdreamer + vBulletin + vBSEO. I have not noticed many problems yet. Although the site is still pretty much under construction at the moment. Is there any info you would like at all?

  13. #28
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    270
    I have subdreamer...so far I am impressed I just want the vBulletin latest topics SEO'd

  14. #29
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,550
    Just open a support ticket with ftp/admincp access, I'm sure we'll sort this out and will post solution in this thread.
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


  15. #30
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    24,550
    Ok, solution that worked in this case is as following:
    1. open plugins/p8_latest_posts/latestposts.php file
    2. FIND:
    PHP Code:
        if($vb36)
        {
          
    $getthreads $DB->query("SELECT title, threadid, lastposter, lastpostid FROM ".$tableprefix."thread ".$extraquery." ORDER BY lastpost DESC LIMIT $postlimit");
        }
        else
        {
          
    $getthreads $DB->query("SELECT title, threadid, lastposter FROM ".$tableprefix."thread ".$extraquery." ORDER BY lastpost DESC LIMIT $postlimit");
        } 
    REPLACE WITH:
    PHP Code:
        global $forumcache;
        
    $forumcache = array();
        
    $getforums $DB->query("SELECT * FROM ".$tableprefix."forum");
        while(
    $_f $DB->fetch_array($getforums))
        {
            
    $forumcache[$_f['forumid']] = $_f;
        }

        include_once(
    $GLOBALS['rootpath'].$usersystem['folderpath'].'includes/functions_vbseo.php');
        
    vbseo_startup();

        if(
    $vb36)
        {
          
    $getthreads $DB->query("SELECT forumid, title, threadid, lastposter, lastpostid FROM ".$tableprefix."thread ".$extraquery." ORDER BY lastpost DESC LIMIT $postlimit");
        }
        else
        {
          
    $getthreads $DB->query("SELECT forumid, title, threadid, lastposter FROM ".$tableprefix."thread ".$extraquery." ORDER BY lastpost DESC LIMIT $postlimit");
        } 
    3. FIND:
    PHP Code:
          if($vb36)
          {

            echo 
    '<a href="' $sdurl $forumpath 'showthread.php?p=' $thread['lastpostid'] . '#post' $thread['lastpostid'] . '">' $thread['title'] . '</a>
                  <br />' 
    $language['posted_by'] . ' ' $thread['lastposter'] . '<br /><br />';
          }
          else
          {
            echo 
    '<a href="' $sdurl $forumpath 'showthread.php?threadid=' $thread['threadid'] . '&goto=lastpost">' $thread['title'] . '</a>
                  <br />' 
    $language['posted_by'] . ' ' $thread['lastposter'] . '<br /><br />';
          } 
    REPLACE WITH:
    PHP Code:
          if($vb36)
          {

            echo 
    '<a href="' $sdurl $forumpath vbseo_thread_url_row_spec$threadVBSEO_URL_THREAD_NEWPOST ) . '">' $thread['title'] . '</a>
                  <br />' 
    $language['posted_by'] . ' ' $thread['lastposter'] . '<br /><br />';
          }
          else
          {
            echo 
    '<a href="' $sdurl $forumpath vbseo_thread_url_row_spec$threadVBSEO_URL_THREAD_NEWPOST ) . '">' $thread['title'] . '</a>
                  <br />' 
    $language['posted_by'] . ' ' $thread['lastposter'] . '<br /><br />';
          } 
    Oleg Ignatiuk / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Final)- Released for your Evaluation


LinkBacks (?)


Tags for this Thread