I can't wait to see this happen![]()
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...
I can't wait to see this happen![]()
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
any updates?
I'll be a third if necessary.
I want Subdreamer+VBSEO to be more than friends... eheh![]()
Thanks,
Troy
Has there been any new breaks in this weird template?
Count me in... im am interested too.
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
Hello Florino,
please open a support ticket with ftp/admincp access and I will check that.
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
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?
I mean vBulletin's admincp account, which might be required.
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
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
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?
I have subdreamer...so far I am impressed I just want the vBulletin latest topics SEO'd
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.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Ok, solution that worked in this case is as following:
1. open plugins/p8_latest_posts/latestposts.php file
2. FIND:
REPLACE WITH: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");
}
3. FIND: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");
}
REPLACE WITH: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 />';
}
PHP Code:if($vb36)
{
echo '<a href="' . $sdurl . $forumpath . vbseo_thread_url_row_spec( $thread, VBSEO_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( $thread, VBSEO_URL_THREAD_NEWPOST ) . '">' . $thread['title'] . '</a>
<br />' . $language['posted_by'] . ' ' . $thread['lastposter'] . '<br /><br />';
}
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!