1. download file from the first page and unzip upload the files.
2. Login in to the Admincp
3. goto vBulletin CMS --> click Widgets.
4. create new widget make PHP Direct Execution name it what you want too. add a description if you like.
5. go back to widget page. click on Configure of the new PHP Direct Execution widget. place this code in that box.
Code:
ob_start();
echo '<div align="left">';
require_once './clientscript/slider/slider.php';
echo '</div>';
$output=ob_get_contents();
ob_end_clean();
template name
vbcms_widget_slider_page
6. now add a new template called
vbcms_widget_slider_page place the code in the new template.
Code:
<div class="cms_widget">
<div class="block">
<div class="cms_widget_header">
<h3>{vb:raw title}</h3>
</div>
<div class="cms_widget_content">
<table align="center">
<tr>
<td>{vb:raw output}</td>
</tr>
</table>
</div>
</div>
</div>
7. goto vBulletin CMS -- Layout Manager --> edit the layout you are using --> select the new widget you have made. place were you like to have to showed.