The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
WebTemplates 4.x: VB Integrated CMS (Content Management System) Details »» | ||||||||||||||||||||||||||||||||||||||||
WebTemplates 4.x: VB Integrated CMS (Content Management System)
Developer Last Online: Nov 2023
(This hack is for vb version 4.x and above. For vb 3.x, version see my profile for relevant threads.)
"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 4.x BASIC FEATURES:
(Most are from 3.x versions but WebTemplate look and feel didn't change much so all will give you the idea.) http://www.worldwideknights.com/view_mission.htm http://www.theadminzone.com/forums/view.php?pg=aboutus http://www.hystersisters.com/vb2/view_guidelines.htm http://www.worldwideknights.com/view_info.htm http://www.hystersisters.com/vb2/view_books.htm http://www.worldwideknights.com/view_spread.htm http://www.makeuptalk.com/forums/view.php?pg=makeuptalk-newsletter http://www.bklab.com (entire site is designed with Webtemplates only) (Actually this hack is one of the most popular vb hacks so it is used by hundreds -if not thousands- of vbulletin sites and you can easily find them if you go to google and search "Logician's WebTemplates" WITH quotation marks) 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.. Quote:
12.October.2013 - > Version 4.0.2 * Minor fixes for PHP 5.4.x (Fixes "Deprecated: Assigning the return value of new by reference is deprecated" errors in new PHP versions. 14.July.2012 - > Version 4.0.1 * Vbulletin changed WYSIWYG editor parsing in vb4.2.x so hack's editor.php is updated accordingly. 9.September.2010 - > Version 4.0.00 * Hack 4.00.00 is released. Download Now
Screenshots
Show Your Support
|
2 благодарности(ей) от: | ||
Muhammad Rahman, ryancooper |
Comments |
#42
|
||||
|
||||
Fantastic work as always Logician, thank you.
|
#43
|
|||
|
|||
Quote:
works great! |
#44
|
|||
|
|||
Hello everyone,
I'd like to integrate this script in php WebTemplate but unfortunately I can not do it? Can anyone help me? Code:
<?php if(isset($_REQUEST['idf']))$idf=$_REQUEST['idf']; else die("http://www.xxx.com/forum/?idf=ID"); $conn= mysql_connect('host','user','pass'); if(!$conn)die(mysql_error($conn)); $ris=mysql_select_db("dbnam",$conn); if(!$ris)die(mysql_error()); ?> <html> <head> <title>Lista Automatica vBulletin</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <center> <h1>Lista Automatica</h1> <a href="#0">0</a> <a href="#1">1</a> <a href="#2">2</a> <a href="#3">3</a> <a href="#4">4</a> <a href="#5">5</a> <a href="#6">6</a> <a href="#7">7</a> <a href="#8">8</a> <a href="#9">9</a> <a href="#A">A</a> <a href="#B">B</a> <a href="#C">C</a> <a href="#D">D</a> <a href="#E">E</a> <a href="#F">F</a> <a href="#G">G</a> <a href="#H">H</a> <a href="#I">I</a> <a href="#J">J</a> <a href="#K">K</a> <a href="#L">L</a> <a href="#M">M</a> <a href="#N">N</a> <a href="#O">O</a> <a href="#P">P</a> <a href="#Q">Q</a> <a href="#R">R</a> <a href="#S">S</a> <a href="#T">T</a> <a href="#U">U</a> <a href="#V">V</a> <a href="#W">W</a> <a href="#X">X</a> <a href="#Y">Y</a> <a href="#Z">Z</a> <a href="#TOP"></a> </center> <?php $msg="select * from vb_thread where forumid=$idf and sticky=0 ORDER BY title ASC"; $query= mysql_query($msg); if (!$query)die(mysql_error()); $l=""; while($riga= mysql_fetch_assoc($query)){ if(strcasecmp($l,substr($riga['title'],0,1))!=0){ $l=substr($riga['title'],0,1); ?> <br> <a name="<?php echo strtoupper ($l) ?>"><?php echo strtoupper("<font color='#4b4b4b' size='5'><strong>$l</strong></font>"); echo " <a href='#TOP'><img src='top.gif' border='0'></a>"; echo "<br>"; echo "<br>"; } ?></a> <a href="showthread.php?<?php echo $riga['threadid']."-".$riga['title'] ?>" target="_blank"><?php echo $riga['title']?></a> <br /> <?php } ?> |
#45
|
||||
|
||||
Quote:
I guess you can do it with iframe. Create a webtemplate similiar to default webtemplate theme and then in the content section run your script via iframe like: Code:
<iframe src ="http://domain.com/yourscript.php" width="100%" height="300"> <p>Your browser does not support iframes.</p> </iframe> |
#46
|
|||
|
|||
Logician Thank you so much for your support.
Unfortunately, gives me a blank page, I think the problem is in the configuration of this part of the script: Code:
<?php if(isset($_REQUEST['idf']))$idf=$_REQUEST['idf']; else die("http://www.xxx.com/forum/?idf=ID"); $conn= mysql_connect('host','user','pass'); if(!$conn)die(mysql_error($conn)); $ris=mysql_select_db("dbnam",$conn); if(!$ris)die(mysql_error()); ?> It works very well but I would like to integrate it with vb |
#47
|
||||
|
||||
Blanks screen usually means there is a PHP error in your code and server is repressing it. If you run the script (get blank page again) and then go check your error log file, you should be able to see the error message which should give you a hint to fix the problem to your external script.
As you know in iframe method your external script does not deal with other scripts running outside iframe so I don't think there is a confliction with webtemplates, it sounds like a problem on your script end. |
#48
|
|||
|
|||
Strange because the script works, you can see how it works at this link:
http://www.test.xx/forum/test.php?idf=XX I can not understand how to integrate it into your product?! |
#49
|
||||
|
||||
Best MOD ever. I am having this problem, I have a custom skin, its 1180 wide fixed, but my web template pages are 1280 , any ideas how I can fix this..
|
#50
|
||||
|
||||
Please give urls so that I can see source code.
|
#51
|
|||
|
|||
Ok I managed to integrate the php script in WebTemplate.
But I had to use the command <iframe>, I wonder if it can be dangerous malware attacks on the site? Code:
<iframe src="http://www.hardwaregame.it/forum/xxxx.php?idf=XX" width="100%" height="2000" framespacing="0" frameborder="0" border="no"> Contenuto alternativo per i browser che non leggono gli iframe. </iframe> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|