Status
Not open for further replies.

iadventure

Customer
Last edited:
Are you running vBSEO? If so, that's probably the issue. vBCMS had an issue prior to v4.2.0 with SEO rewrite not working with mods. The issue is fixed with the v3 Beta of vBSlider (if you are running vB4.2 or higher), but hasn't made it into the lite version yet.

With that said, if you do a search in dbtech/vbslider/actions/widget.php for content.php, and replace it with content (there should be 2 instances to fix), then you should be set. I'm currently away from my computer, otherwise I'd give you exact line numbers where it is located. If you want to wait, I can provide the change later tonight, but figured I'd provide a fix if you want to try it on your own.

If that doesn't fix the problem, let me know and I will look into it further.
 
Yeah, sorry about that. Wife ended up having other plans for me, plus I worked for 16.5hrs on my M-F job on Sat and Sun. Gotta love it...

I realized you are running the pro version, not the lite version, so this is posted in the wrong area. I'll get that moved (hopefully), but anyway, lets look at the issue.

On line 487, you should have the following:
Code:
$row['url'] 	= ($row['type'] == 'article' ? $vbulletin->options['bburl'] . '/content.php/' . $row['nodeid'] . '-' . $row['url'] : $row['url']);

Replace that with this:
Code:
$row['url'] 	= ($row['type'] == 'article') ? ((version_compare($vbulletin->versionnumber, '4.2.0' >= 0)) ? $row['url'] : $vbulletin->options['bburl'] . '/content.php/' . $row['nodeid'] . '-' . $row['url']) : $row['url'];

Let me know if that works for you.
 
Ok, I see you are running vB 4.1.10 and vBSEO, and I missed part of your working link above. Try the code below (in the same place as before) and let me know if it works.

Code:
$row['url'] 	= ($row['type'] == 'article') ? ((version_compare($vbulletin->versionnumber, '4.2.0' >= 0)) ? $row['url'] : $vbulletin->options['bburl'] . '/content/' . $row['nodeid'] . '-' . $row['url']) . '.html' : $row['url'];
 
Could you please create and PM me with a temporary FTP and AdminCP account?

For security reasons, we recommend you create a new FTP account only for DBTech support, then disable or delete it after we have both confirmed the issue has been solved and there are no further issues.

The same applies to AdminCP accounts; they should ideally be temporary accounts created for us only. If we have created an account on your site already, you can optionally boost that account to Administrator and then de-admin this account once the issue has been solved.

If you use a .htaccess password protection for your AdminCP directory, it is recommended that you create a new authorised user for DBTech and remove this user once the issue has been solved.

Please test any temporary accounts you create to ensure that the FTP account has access to the forum files, and that the AdminCP account can access the administrative controls for the product we are assisting you with.

Ensuring this is all in order before submitting the information will significantly speed up the process of assisting you. We will alert you via PM if there's any issues with the login information you have provided.

When sending the PM, for your security you should also un-tick the "Save a copy in my Sent Items folder" checkbox. When the access details have been received, we will delete the PM from our inbox. Ensuring you have not kept a copy of the PM reduces the risk of security breaches.

Thank you for helping us debug our products and allowing us to assist you, we appreciate it :D
 
I realized I missed something for the previous fix to work. Sorry about that. On or around line 282, find:
Code:
'url'				=> $rowarticle['url'],
and replace with:
Code:
'url'               => (version_compare($vbulletin->versionnumber, '4.2.0') >= 0 ? fetch_seo_url('vBCms', $rowarticle,null,'nodeid','title') : $rowarticle['url']),

Also replace the code previously mentioned in post #7. If that doesn't work, then I will need to get the access mentioned above so I can make changes to the file directly to sort out the problem.
 
Status
Not open for further replies.

Legacy vBSlider

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
838
Customer rating
0.00 star(s) 0 ratings
Back
Top