Adding a PHP Script

This is a discussion on Adding a PHP Script within the Net Objects Fusion forums in Application Servers & Tools category; 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...

Go Back   Application Development Forum > Application Servers & Tools > Net Objects Fusion

Object Mix

Register FAQ Calendar Search Today's Posts Mark Forums Read
  #1  
Old 04-09-2007, 10:20 PM
Stu
Guest
 
Default Adding a PHP Script

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

Reply With Quote
  #2  
Old 04-09-2007, 10:29 PM
Chuck «BeyondFusion»
Guest
 
Default Re: Adding a PHP Script

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


Reply With Quote
  #3  
Old 04-10-2007, 05:09 AM
chrisbiggs
Guest
 
Default Re: Adding a PHP Script

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

>



Reply With Quote
  #4  
Old 04-10-2007, 10:00 AM
LBA
Guest
 
Default Re: Adding a PHP Script

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

> >

>
>
>

Reply With Quote
  #5  
Old 04-10-2007, 11:04 AM
Chuck «BeyondFusion»
Guest
 
Default Re: Adding a PHP Script

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
>> >

>>
>>
>>


Reply With Quote
  #6  
Old 04-11-2007, 08:55 AM
Stu
Guest
 
Default Re: Adding a PHP Script

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
>>> >
>>>
>>>
>>>

>


Reply With Quote
  #7  
Old 04-17-2007, 07:11 PM
Leeka Rozenfeld
Guest
 
Default NOF 9 components integration

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

Reply With Quote
Reply


Thread Tools
Display Modes


All times are GMT -5. The time now is 05:04 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vB Ad Management by =RedTyger=

In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.