The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
I have a template that display my top nav bar (home, register, etc). Inside the template (below the nav bar) I want to call and display my photopost/index.pl
How do I do this? I know my link that gets the entire process fired off must href to a .php file and I have created a .php that does the following <?php error_reporting(7); $templatesused="photogallery"; require('./global.php'); if ($bbuserinfo['userid']!=0) { eval("dooutput(\"".gettemplate('photogallery')."\" );"); header("Location: http://www.xxx.info/photopost/index.pl"); } else { eval("dooutput(\"".show_nopermission()."\");"); } ?> I can get the template to display, but it seems as though the code will not execute the call to display the index.pl what am I doing wrong? thanks! - jeff |
#2
|
||||
|
||||
![]()
It doesn't take you to your perl file because dooutput() exits the script, and you don't want that.
You need to change that line to: Code:
eval("\$photogallery = \"".gettemplate('photogallery')."\";"); ![]() |
#3
|
||||
|
||||
![]()
Firefly, thanks for the insight. I dug deeper into the dangerous depths of doom last evening and discovered there was no holy grail in php that would give me what I wanted. I discovered the syntax shown above that binds a template to a variable and discovered that the standardredirect templates merely uses a meta refresh tag, not a lucsious bit of php programming wizardry that I had hoped for.
I am reluctantly resigned to the fact that I will actually have to (he coughs and chokes) duplicate code and"mimick" my vb page header inside an shtml file that can be called by the perl code at the top of every page. The only solace I take in this endeavor is that at least the same shtml file can be called from the perl modules. This does annoy me however since I could do exactly what I want in a java envoriment, but my hosting company does not support JRE. Oh well - a coding I go. thanks, - jeff |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|