Quote:
Originally Posted by yotsume
Oh I see! So my logical next question is... Is there a list of vBulletin functions that use "THIS_SCRIPT"?...
|
At the very bottom of your "footer" template, add this code:
HTML Code:
<vb:if condition="is_member_of($bbuserinfo, 6) AND $this_script = THIS_SCRIPT">
<div style="margin-left: 15px; font-weight: bold">
<h2 class="blockhead"><b>Administrative Script/URI Information</b></h2>
<div style="margin-bottom: 1em; border: 1px solid #CCCCCC; padding: 5px">
<table>
<tr>
<td align="right">
Script Name: 
</td>
<td>
{vb:raw this_script}
</td>
</tr>
<tr>
<td align="right">
Uniform Request Identifier: 
</td>
<td>
{vb:raw $_SERVER['REQUEST_URI']}
</td>
</tr>
</table>
</div>
</div>
</vb:if>
The you and your administrators will see the value for THIS_SCRIPT and the URI data for every page.