| Register | FAQ | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| |||
| |||
| I have a PHP script for displaying my photos (by just dropping the photos on my web server it will create the thumbnails and menyu structure) I can run it directly www.stulincoln.com/html/qdig.php but I want to know how I can embed that on my site - www.stulincoln.com Any thoughts? Thanks Stu |
|
#2
| |||
| |||
| Stu, Since the script generates a complete html page, the easiest way would probably be to use an iFrame. Look on the Resources page on BeyondFusion for our iFrame code generator. Embed the iFrame on a page in your site in Fusion. -- Chuck Joslin BeyondFusion.com - Your Fusion Community www.beyondfusion.com Register domain names at www.awavedomains.com "Stu" <stu@stulincoln.com> wrote in message news:evesb2$iuh2@flsun90netnews01.netobjects.com.. . >I have a PHP script for displaying my photos (by just dropping the photos >on my web server it will create the thumbnails and menyu structure) > > I can run it directly www.stulincoln.com/html/qdig.php but I want to know > how I can embed that on my site - www.stulincoln.com > > Any thoughts? > > Thanks > > Stu |
|
#3
| |||
| |||
| Would it be possible to use PHP include to include this page ?? Chris "Chuck «BeyondFusion»" <supportno@spambeyondfusion.com> wrote in message news:evesrn$hnh2@flsun90netnews01.netobjects.com.. . > Stu, > > Since the script generates a complete html page, the easiest way would > probably be to use an iFrame. > > Look on the Resources page on BeyondFusion for our iFrame code generator. > > Embed the iFrame on a page in your site in Fusion. > > -- > Chuck Joslin > BeyondFusion.com - Your Fusion Community > www.beyondfusion.com > > Register domain names at www.awavedomains.com > > "Stu" <stu@stulincoln.com> wrote in message > news:evesb2$iuh2@flsun90netnews01.netobjects.com.. . >>I have a PHP script for displaying my photos (by just dropping the photos >>on my web server it will create the thumbnails and menyu structure) >> >> I can run it directly www.stulincoln.com/html/qdig.php but I want to know >> how I can embed that on my site - www.stulincoln.com >> >> Any thoughts? >> >> Thanks >> >> Stu > |
|
#4
| |||
| |||
| Yes, of course... - Place a text box on the page where you want the include to take place. - You may also find that you need to made that text box at least as wide as you want your slideshow. - Inside the text box, either hit Control-T or click the HTML button on the Text Box Properties Pallette. - In the window that opens up, enter: <? include 'correct_path_to_your_script/your_script.php'; ?> That should do it. Laurence chrisbiggs wrote: > Would it be possible to use PHP include to include this page ?? > > > Chris > > > "Chuck «BeyondFusion»" <supportno@spambeyondfusion.com> wrote in message > news:evesrn$hnh2@flsun90netnews01.netobjects.com.. . > > Stu, > > > > Since the script generates a complete html page, the easiest way would > > probably be to use an iFrame. > > > > Look on the Resources page on BeyondFusion for our iFrame code generator. > > > > Embed the iFrame on a page in your site in Fusion. > > > > -- > > Chuck Joslin > > BeyondFusion.com - Your Fusion Community > > www.beyondfusion.com > > > > Register domain names at www.awavedomains.com > > > > "Stu" <stu@stulincoln.com> wrote in message > > news:evesb2$iuh2@flsun90netnews01.netobjects.com.. . > >>I have a PHP script for displaying my photos (by just dropping the photos > >>on my web server it will create the thumbnails and menyu structure) > >> > >> I can run it directly www.stulincoln.com/html/qdig.php but I want to know > >> how I can embed that on my site - www.stulincoln.com > >> > >> Any thoughts? > >> > >> Thanks > >> > >> Stu > > > > > |
|
#5
| |||
| |||
| It's not a good idea to include a page with headers, html, body tags and all in another html page. The Qdig gallery script doesn't generate complete html pages, so in this case, yes... an include would work fine. -- Chuck Joslin BeyondFusion.com - Your Fusion Community www.beyondfusion.com Register domain names at www.awavedomains.com "LBA" <webdesigns@no2spamabramsnet.com> wrote in message news:evg58l$n3p3@flsun90netnews01.netobjects.com.. . > Yes, of course... - Place a text box on the page where you want the > include to take place. - You may also find that you need to made that text > box at least as wide as you want your slideshow. > - Inside the text box, either hit Control-T or click the HTML button on > the Text Box Properties Pallette. > - In the window that opens up, enter: > > <? > include 'correct_path_to_your_script/your_script.php'; > ?> > > That should do it. > > Laurence > > > chrisbiggs wrote: >> Would it be possible to use PHP include to include this page ?? >> >> >> Chris >> >> >> "Chuck «BeyondFusion»" <supportno@spambeyondfusion.com> wrote in message >> news:evesrn$hnh2@flsun90netnews01.netobjects.com.. . >> > Stu, >> > >> > Since the script generates a complete html page, the easiest way would >> > probably be to use an iFrame. >> > >> > Look on the Resources page on BeyondFusion for our iFrame code >> > generator. >> > >> > Embed the iFrame on a page in your site in Fusion. >> > >> > -- >> > Chuck Joslin >> > BeyondFusion.com - Your Fusion Community >> > www.beyondfusion.com >> > >> > Register domain names at www.awavedomains.com >> > >> > "Stu" <stu@stulincoln.com> wrote in message >> > news:evesb2$iuh2@flsun90netnews01.netobjects.com.. . >> >>I have a PHP script for displaying my photos (by just dropping the >> >>photos on my web server it will create the thumbnails and menyu >> >>structure) >> >> >> >> I can run it directly www.stulincoln.com/html/qdig.php but I want to >> >> know how I can embed that on my site - www.stulincoln.com >> >> >> >> Any thoughts? >> >> >> >> Thanks >> >> >> >> Stu >> > >> >> >> |
|
#6
| |||
| |||
| Worked it out finally. I had to add .html to the httpd-php section of my httpd.conf file. Works a charm now. Thanks for all your input. Stu "Chuck «BeyondFusion»" <supportno@spambeyondfusion.com> wrote in message news:evg9et$nps3@flsun90netnews01.netobjects.com.. . > It's not a good idea to include a page with headers, html, body tags and > all in another html page. > > The Qdig gallery script doesn't generate complete html pages, so in this > case, yes... an include would work fine. > > -- > Chuck Joslin > BeyondFusion.com - Your Fusion Community > www.beyondfusion.com > > Register domain names at www.awavedomains.com > > "LBA" <webdesigns@no2spamabramsnet.com> wrote in message > news:evg58l$n3p3@flsun90netnews01.netobjects.com.. . >> Yes, of course... - Place a text box on the page where you want the >> include to take place. - You may also find that you need to made that >> text box at least as wide as you want your slideshow. >> - Inside the text box, either hit Control-T or click the HTML button on >> the Text Box Properties Pallette. >> - In the window that opens up, enter: >> >> <? >> include 'correct_path_to_your_script/your_script.php'; >> ?> >> >> That should do it. >> >> Laurence >> >> >> chrisbiggs wrote: >>> Would it be possible to use PHP include to include this page ?? >>> >>> >>> Chris >>> >>> >>> "Chuck «BeyondFusion»" <supportno@spambeyondfusion.com> wrote in message >>> news:evesrn$hnh2@flsun90netnews01.netobjects.com.. . >>> > Stu, >>> > >>> > Since the script generates a complete html page, the easiest way would >>> > probably be to use an iFrame. >>> > >>> > Look on the Resources page on BeyondFusion for our iFrame code >>> > generator. >>> > >>> > Embed the iFrame on a page in your site in Fusion. >>> > >>> > -- >>> > Chuck Joslin >>> > BeyondFusion.com - Your Fusion Community >>> > www.beyondfusion.com >>> > >>> > Register domain names at www.awavedomains.com >>> > >>> > "Stu" <stu@stulincoln.com> wrote in message >>> > news:evesb2$iuh2@flsun90netnews01.netobjects.com.. . >>> >>I have a PHP script for displaying my photos (by just dropping the >>> >>photos on my web server it will create the thumbnails and menyu >>> >>structure) >>> >> >>> >> I can run it directly www.stulincoln.com/html/qdig.php but I want to >>> >> know how I can embed that on my site - www.stulincoln.com >>> >> >>> >> Any thoughts? >>> >> >>> >> Thanks >>> >> >>> >> Stu >>> > >>> >>> >>> > |
|
#7
| |||
| |||
| Hi! I am trying to intigrate Guestbook kand Testimonials page, I did everything according to online tutorial, but every time I click on link to go to the appropiate page- I get 404 error- can not find file ( testimonial.php for example) what could be wrong? Thank you |
![]() |
| Thread Tools | |
| Display Modes | |
In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.