First of all, thanks to everyone for their interest in this mod.
Quote:
Originally Posted by tonynlek
LBmtb,
I need help to install it and i dunno much about PHP. care to guide me along or anyone.
I do not know how to do this part:
<< The page it's on must have a .php extension or you should setup apache to parse the page correctly. >>
What must i do first?
|
You can either rename the page with a .php extension or if your page has a .html or .htm extension add the following to your apache configuration file and restart apache:
Code:
AddType application/x-httpd-php .html .htm
Quote:
Originally Posted by saman
facing the same problem
right now i have added it on .html extension and the only thing it shows is this:
recent topics by SocalTrailRiders.org
can someone help me out with this? i really like this mod, i am testing it and if he works i will need to get the copyright removed ($5)...
btw, where should i add this html code?
HTML Code:
<ul class="vb_topics">
<li><a href="http://www.yourdomain.com/forum/showthread.php?t=4150">This is the latest thread</a> <span class="vb_last_post">(user1 @ 12/18/06 05:58 PM)</span></li>
<li><a href="http://www.yourdomain.com/forum/showthread.php?t=4138">Another recent thread</a> <span class="vb_last_post">(user2 @ 12/18/06 05:58 PM)</span></li>
</ul>
|
Same answer as previous person. Don't insert that html code into your page; it's just an example of the output that the script makes.
Quote:
Originally Posted by tonynlek
As far as i know, You need to create an inframe in HTml page to put in the site address of that PHP file and it will open in the inframe.
I hate the borderline of the inframe, so my homepage has to be index.php, in order to put the code without the inframe border.
a programmer that i paid, told me this. I wonder why the script creator dun reply.
|
That would work, or the apache method I described above, or adding the .php extension like you did.
Quote:
Originally Posted by tonynlek
How do you put the ID there?
|
Just list off the forum ID's and separate them with a comma. For example if I want to only include threads from three forums with ID's 9, 11, and 15 I would have this:
PHP Code:
// use one or the other, not both. if left blank the script will return threads from any forum
$fid_raw = "9,11,15"; // ONLY include threads from these forums. seperate each ID with a comma
$fidx_raw = ""; // Exclude threads from these forum. seperate each ID with a comma
Quote:
Originally Posted by Dave-ahfb
I am attempting to install this and it does works as designed, however I am trying to include multiple instances of the script on the same page, each instance using a different forum./
example:
top of page use only forum 14
middle of page use only forum 13
yadda yadda
I can include multiple instances of the same forum meaning I can place forum 14 in as many places of a page as I want, but I cannot get a second forum to show in a different location of the page.
|
It's possible but you would need to do some renaming of copying and renaming of variables so that variables from one of the sections don't conflict with variables from the other section.
If you need custom work done, PM me.