ExtraLicense - Buy, Sell, & Trade Your Licenses

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

vBulletin 6.0.4 Changes and Updates

EL PaperBoy

Well-known member
<p>A preview release of vBulletin 6.0.4 is now available for self-hosted customers.</p>
<h3>Home Node Permissions</h3>
<p>Handling the channel permissions of the Home Node has been refactored.</p>
<ul>
<li>The Terms of Service page, Privacy Policy page, and AdminCP login will always be available even if guests cannot view the Home Node.</li>
<li>You can now assign viewing permissions per page in the AdminCP under Usergroups → Page Permissions. Page Permissions allow control over page viewing to fit your site's needs.</li>
<li>Special Groups (i.e., Channel groups) will not be listed in the Page Permission Manager. These groups are managed internally.</li>
</ul>
<h3>Paypal API</h3>
<p>Paypal's Payment API has been added as a vBulletin Gateway. The new gateway will allow Administrators to move away from Paypal's IPN functionality and add new payment methods to their site.</p>
<blockquote>
<p>Please note that the IPN Gateway is now considered deprecated and will be removed in the future.</p>
</blockquote>
<h3>Article Sorting</h3>
<p>The Article Channel Display module now allows sorting articles by Display Order, Date-last update, Date-Started Post, Replies, Title, Members, Reactions, and Publish Date. You can also order the results ascending or descending. The default sorting is Publish Date, which is ordered by descending dates.</p>
<p>To control the Display Order of your articles, visit the AdminCP and go to Articles → List Content.</p>
<h3>New Template Markup</h3>
<p>We have added a new vBulletin Markup tag to test for usergroups to the system. This tag provides simpler markup to check if a user belongs to a specific usergroup over using the <vb:if> markup with ismemberof() code from previous versions.</p>
<p>Usage:</p>
<pre><code class="text">
&lt;!-- Check if a user is a member of a usergroup --&gt;
&lt;vb:usergroup groupid="2"&gt;
You are in the registered usergroup.
&lt;/vb:usergoup&gt;

&lt;!-- Check if the user is not a member of a usergroup --&gt;
&lt;vb:usergroup notgroupid="2"&gt;
You are not part of the registered usergroup.
&lt;/vb:usergroup&gt;

&lt;!-- You can also check multiple groups: --&gt;
&lt;vb:usergroup groupid="X,Y,Z"&gt;
….
&lt;/vb:usergroup&gt;
</code></pre>
<h3>Template Organization</h3>
<p>Global page templates are now grouped in the Style Manager template under Page. The affected templates include header, bare_header, footer, bare_footer, head_include, page_date, and preheader. Each template has had the <code>page_</code> prefix added to its name. If you use these templates in custom coding, please adjust accordingly.</p>
<h4>Template Grouping</h4>
<p>vBulletin will now match the longest group name to reduce improper merging. Due to this, some groups will be split compared to previous versions. For example, previously, <code>subscription</code> and <code>subscriptions</code> were treated as the same group even though the templates weren't related to each other. Now, they are separate.</p>
<h3>Cache Limits</h3>
<p>Cache Limits are now available. The limits are to prevent large database caches on some server configurations. The limits consist of two new configuration variables:</p>
<ul>
<li>maxtablesize - defines the maximum size of your cache and cacheevents tables in megabytes.</li>
<li>maxtabledeletecount - the number of unexpired records to delete from your cache tables.</li>
</ul>
<p>To enable the limits, copy the lines below into your /core/includes/config.php file:</p>
<pre><code class="php">// When clearing expired cache items, additional items will be removed if the cache table exceeds this size (in Mb).
$config['Cache']['maxtablesize'] = 500;
// The number of (unexpired) records to remove when the cache tables are too big. If 0, then empty the cache.
$config['Cache']['maxtabledeletecount'] = 0;
</code></pre>
<p>Skipping these lines or leaving them commented out will disable the system and the cache will maintain its previous behavior.</p>
<p>Note: These lines exist in the /core/includes/config.php.new file when installing a new instance.</p>
<h3>Javascript</h3>
<p>We have removed the inline Javascript used to define the Page Object. The Page Object is now defined using HTML's data attributes.</p>
<ul>
<li>More inline Javascript was removed from the AdminCP.</li>
<li>Added cache busting to AdminCP Javascript.</li>
<li>Moved the jQuery fallback out of inline Javascript.</li>
</ul>
<h3>Additional Changes</h3>
<ul>
<li><strong>Node Tools → Open</strong> The ability to mass open topics has been added to the AdminCP under Node Tools.</li>
<li><strong>Posting Options</strong> are no longer available on the Home node.</li>
<li>Improved text indexing with accented characters (For example: à, é, and õ). Previously, search indexing could skip these characters if a similar word without accents was indexed first.</li>
<li>Payment Gateway currency symbols can now be edited outside of debug mode. You can add new currencies in the AdminCP under Settings → Options → Paid Subscriptions. Please note that your payment gateway will still need to be able to support the currency as defined.</li>
<li>The Today's Birthday module will be automatically hidden if there are no active birthdays on the date.</li>
<li>Consolidated the default Terms of Service information from three phrases and locations to one location.</li>
</ul>
<h2>Additional Information</h2>
<h3>Install / Upgrade</h3>
<ul>
<li><a href="https://www.vbulletin.com/forum/node/4483267">Installation Instructions</a></li>
<li><a href="https://www.vbulletin.com/forum/node/4483262">Upgrade Instructions</a></li>
</ul>
<h3>File Cleanup</h3>
<p>After upgrading your vBulletin system, you should delete any possible obsolete files. You can obtain more information on why this is needed and instructions on how to do this in this <a href="https://www.vbulletin.com/forum/node/4391346"><strong>topic</strong></a> in the vBulletin 6 Installs &amp; Upgrades forum.</p>
<h3>System Requirements</h3>
<p>Minimum System Requirements</p>
<ul>
<li>PHP Version: 8.0.0</li>
<li>MySQL Version: 5.7.10</li>
<li>MariaDB Version: 10.6.0</li>
</ul>
<p>Recommended System Requirements</p>
<ul>
<li>PHP Version: 8.2 or higher</li>
<li>MySQL Version: 8.0 or higher</li>
<li>MariaDB Version: 10.11+</li>
</ul>
<p>For more information, see <a href="https://www.vbulletin.com/forum/node/4391344">vBulletin Connect System Requirements</a>.</p>
<h3>Current Version Support Schedule</h3>
<ul>
<li>Active Version - 6.0.3</li>
<li>Security Patch - 6.0.2</li>
<li>Security Patch - 6.0.1</li>
<li>Security Patch - 5.7.5</li>
</ul>
<h3>Discussion</h3>
<p>If you have any questions about these changes, you may discuss them here|https://forum.vbulletin.com/node/4490593</p>
<p>If you find an issue with the software or wish to request a feature, please visit our <a href="https://tracker.vbulletin.com/vbulletin6">tracker</a>.</p>
<p>To receive support for your vBulletin Product, please visit our <a href="https://www.vbulletin.com/forum/">community forums</a>.</p>

Continue reading...
 
Top