The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
WebTemplates 3.5.x: VB Integrated CMS (Content Management System) Details »» | |||||||||||||||||||||||||||
WebTemplates 3.5.x: VB Integrated CMS (Content Management System)
Developer Last Online: Nov 2023
(This hack is for vb version 3.5.x AND 3.6.x. For vb 3.0.x and 2.x see my profile for relevant threads.)
(For vb 3.7 version, please go to this thread) "WebTemplates" is a vBulletin integrated Content Management System which allows you to create vb integrated "HTML" pages in your vb admin cp very easily. The pages can inherit your vbulletin skin/style, can recognize logged-in user, can be applied permissions per user or usergroup basis, can keep visit logs, hit counts and do many more. WEBTEMPLATES 3.5.x BASIC FEATURES:
(Some 3.5 and some are 3.0 versions but WebTemplate look and feel didn't change much so both will give you the idea) http://www.leatherneck.com/forums/view_aboutus.htm http://www.hystersisters.com/vb2/view_funding.htm http://www.theadminzone.com/forums/view.php?pg=aboutus http://www.hystersisters.com/vb2/view_guidelines.htm http://www.hystersisters.com/vb2/view_books.htm http://www3.fertilethoughts.com/foru...hp?pg=acronyms http://www.makeuptalk.com/forums/vie...alk-newsletter http://www.bklab.com (entire site is designed with Webtemplates only!) 3.5 version Admin CP screenshot attached to this post. 3.0.x screenshots (here and here) also still applies for this version. If you use the hack, clicking here will make sure you'll know about updates&bug fixes. It will also help me understand how many people is using the hack so please click the install button if you use it. Thank you.. Note in 6.August. 2006 : I've tested Webtemplates with vbulletin 3.6.0 gold version and they are compatible. So this hack released here is both for vb 3.5.x AND 3.6.x Note for vb 3.7.x : (29.July.2008): For vb 3.7.x, I released a new version here: https://vborg.vbsupport.ru/showthread.php?t=186644 Version Updates: 16.Dec.2005 - > Version 3.5.01 * Hack released. 16.Dec.2005 - > Version 3.5.02 * A webquery bug fix for boards which use table_prefix. To upgrade just overwrite hack .php files. 17.Dec.2005 - > Version 3.5.03 * A minor bug in WOL page fixed. To upgrade overwrite hack .php files + reinstall product XML 17.Dec.2005 - > Version 3.5.04 * A bug fix for edit webtemplate page not remembering webtemplate's showbrowsers setting.To upgrade overwrite hack .php files 16.Jan.2006 - > Version 3.5.05 * A bug fix for boards which has too many usergroups. To upgrade overwrite hack .php files + uninstall product, then reinstall (your existing webtemplates will be intact) 20.Aug.2006 - > Version 3.6.00 * A bug fix that can cause a MYSQL warning in a few servers in WT admin cp. A minor and unusual problem that happens in certain servers and you don't need to upgrade if you don't see such a message. To upgrade overwrite /includes/wt_include.php and /admincp/wt_wt.php files. 1.Oct.2006 - > Version 3.6.01 * A minor bug fix for showing user avatar and ipaddress in webtemplates. To upgrade overwrite /includes/wt_include.php and view.php files. 2.May.2007 - > Version 3.6.02 * IMPORTANT SECURITY UPDATE! A security problem has been fixed in this version. To upgrade overwrite /includes/wt_include.php and view.php files which is attached to this post. 21.June.2008 - > Version 3.6.03 * Two minor bugs (1 & 2) fixed. 29.July.2008 - > Version 3.7.00 * A new version for vbulletin 3.7.x is released in a seperate thread here: https://vborg.vbsupport.ru/showthread.php?t=186644 Show Your Support
|
Comments |
#172
|
|||
|
|||
Group,
The htaccess file that is in the forum folder... I dont see anything in the installation instructions indicating to do anything with it or what it is for. Is this file suppose to be placed anywhere, and if so what is it for or do? Thanks Doug |
#173
|
||||
|
||||
Quote:
|
#174
|
|||
|
|||
hi Logician, I'm using the latest version of this but I seem to still have permission errors for users with quite a few usergroups.
I have the main user group set to yes and the various other groups set to no, and they get a no permission error. |
#175
|
||||
|
||||
Quote:
https://vborg.vbsupport.ru/showpost....&postcount=118 |
#176
|
|||
|
|||
Logician, do you have any plans to add nested categories functionality to this great hack? It would be totally awesome for those that use vBSEO and want to build their site completely around vBulletin, and yet have it SEO'd.
For example, If I could have a site.com/view.php?cat=tutorials&subcat=php&pg=seo, using vBSEO I could turn this into site.com/page/tutorials/php/seo and so on. plus cateries would make it a lot easier to sort information when there are a lot of pages that need to be created. |
#177
|
|||
|
|||
Quote:
I have no problems with the permissions on other parts of vb, its just in the pages created with webtemplates. |
#178
|
||||
|
||||
Quote:
|
#179
|
||||
|
||||
Quote:
|
#180
|
|||
|
|||
Quote:
my situation.. its a gaming forum with different teams. The team captain has access to stuff that the rest of his team doesn't. The team captain is a member of the team captain group and his team group. Because this hack handles permissions differently than the forum the team captain can't access the team captain page because he's a member of the team group. There's also an administration page for admins. Some admins are also team members. The admins can't access their pages because they are also in the team group which can't have access to the administration pages. |
#181
|
|||
|
|||
Quote:
Here is one fix: WARNING: The following changes will completely reverse the way that Logician has set up the permissions for this Hack. DO NOT USE this unless you completely understand what it is for!!! Code:
function WT_UsergroupPermission($userinfo, $return10 = 1, $usergroupname = '') { global $WT; $permitted = 0; $WT['banusergroups'] = trim($WT['banusergroups']); if ($WT['banusergroups']) { $WT_banusergroups = explode(" ", $WT['banusergroups']); if (WTis_member_of($userinfo, $WT_banusergroups)) { $permitted = 1; } else { $permitted = 0; } if ($userinfo[userid] > 0 AND in_array('('.$userinfo[userid].')', $WT_banusergroups)) { $permitted = 1; } } if ($WT['draft'] == 1 AND !WTis_member_of($userinfo, array("6"))) //draft webtemplate { $permitted = 0; } if ($return10) //return 1 or 0 { return $permitted; } else //return usergroup name with color (permitten green, banned red) { if ($permitted) { return '<font color="#006600">'.$usergroupname.'</font>'; } else { return '<font color="#C40000">'.$usergroupname.'</font>'; } } } "Disallowed Usergroups Mark usergroups who can NOT display this page" Should now be treated as if it said "Allowed Usergroups Mark usergroups who CAN display this page" and the "Disallowed Usernames" section should be treated as if it read: "Allowed Usernames Enter usernames who CAN display this page even if their usergroup is disallowed." The above text will NOT ACTUALLY CHANGE unless you go in and edit it (I haven't bothered yet so I am not sure where it is), but you need to realize that by applying the above code you have completely changed how webtemplates processes usergroup permissions. Logician is in no way responsible for the above change, and I am officially recommending that you do not apply this change unless you completely understand exactly what it does and are willing to accept complete responsibility for anything it or you may mess up in the process. (the code does work though, I have it running on two different live sites) |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|