rejetto forum

Software => HFS ~ HTTP File Server => F.A.Q.s => Topic started by: nadzri87 on April 20, 2009, 08:56:16 AM

Title: How to use IFrame in HFS?
Post by: nadzri87 on April 20, 2009, 08:56:16 AM
Hello.. want to ask you, how to use the iframe code so that if i mask the front page with html page it can show an Iframe where the content of my HFS is in there..
Title: Re: How to use IFrame in HFS?
Post by: rejetto on April 20, 2009, 11:41:13 AM
best solution coming to my mind
1. create your "front page" as index.html
with a content like
<iframe src ="/~nodefault">Your browser does not support iframes</iframe>
2. add it to hfs, in the root/home
3. right click on it, and hide it
4. Menu > other options > enable ~nodefault
Title: Re: How to use IFrame in HFS?
Post by: BoneMan on April 27, 2009, 06:34:38 PM
Can be done very easy take a look here.

http://www.rejetto.com/forum/index.php?topic=6011.msg1035678#msg1035678
Title: Re: How to use IFrame in HFS?
Post by: CR1T1C4L on May 24, 2009, 02:16:46 PM
Do you mean use iframe like this?

http://pspjunkies.it.cx
Title: Re: How to use IFrame in HFS?
Post by: Funboss on June 06, 2009, 01:55:39 PM
I've got an Iframe embedded in my HFS template. It includes a shoutbox, using html/php. I'd like to use %user% as default nickname. Is this possible?

Template includes: <iframe src="website.com/shoutbox/index.php" (...) /iframe>
Url HFS: website.com:8080/
Title: Re: How to use IFrame in HFS?
Post by: rejetto on June 06, 2009, 06:37:58 PM
you should refer to the shoutbox's documentation,
it's up to its capabilities.
Title: Re: How to use IFrame in HFS?
Post by: Funboss on June 14, 2009, 02:32:55 PM
Thank you for the answer.

It's just a simple peace of php/html. Text input is saved in a text file. No documentation available at all.

Just a few lines (not for copy) attached.

HFS page: website:8080/
PHP Shoutbox: website/shoutbox.php

The shoutbox page is embedded in the HFS page using iframe tags. But i cannot use %user% in other pages than the HFS page. That's clear, I think? But is there another possibility to achieve it?
Title: Re: How to use IFrame in HFS?
Post by: rejetto on June 19, 2009, 02:04:53 PM
you can pass the username in the URL of the iframe,
so you'll read it by using $_GET in php
Title: Re: How to use IFrame in HFS?
Post by: Funboss on June 20, 2009, 02:29:20 PM
Rejetto, you just made my day! I'm very thankful for your solutions!