Log in

View Full Version : Setting Minimum Version Requirement


CypherSTL
09-23-2008, 04:37 PM
I have a mod that in order to fully work requires vBulletin 3.7x. Some users apparently don't read that and then complain in it doesn't fully work.

Is is possible to set within the XML a Minimum Version Requirement to even be installed?

Thanks.

Marco van Herwaarden
09-23-2008, 04:45 PM
You can set the minimum vB/MySQL and/or PHP version in the product settings.

Bilderback
09-23-2008, 04:47 PM
You mean adding it to the product xml?

<dependencies>
<dependency dependencytype="vbulletin" minversion="3.7.0" maxversion="" />
</dependencies>


You can easily set this up in the adminCP by adding dependencies in your product,
then export the xml to view how its coded.
http://www.vbulletin.com/docs/html/product_dependency

I use a dummy product just to test things and study how they should be coded.

CypherSTL
09-23-2008, 04:49 PM
Thanks.

Surprised I totally overlooked that.