execute a remote file before including it.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Nick Messick

    execute a remote file before including it.

    I'm trying to modify a banner display function so it can be including
    on remote websites. If I just include the file from a remote website
    the code isn't executed before it is put into the page. I would like
    my code (which picks a random banner) to execute on the remote site so
    when I include it a random banner show up.
  • Erwin Moller

    #2
    Re: execute a remote file before including it.

    Nick Messick wrote:
    [color=blue]
    > I'm trying to modify a banner display function so it can be including
    > on remote websites. If I just include the file from a remote website
    > the code isn't executed before it is put into the page. I would like
    > my code (which picks a random banner) to execute on the remote site so
    > when I include it a random banner show up.[/color]

    ???

    You cannot of course.

    How would you feel when I started executing MY PHP-code on your server?
    If you want some code executed on another machine, contact its owner...

    Regards,
    Erwin

    Comment

    • bugs

      #3
      Re: execute a remote file before including it.

      Organization: College of Computing, Georgia Tech

      Erwin Moller <> wrote:[color=blue]
      > Nick Messick wrote:[/color]
      [color=blue][color=green]
      >> I'm trying to modify a banner display function so it can be including
      >> on remote websites. If I just include the file from a remote website
      >> the code isn't executed before it is put into the page. I would like
      >> my code (which picks a random banner) to execute on the remote site so
      >> when I include it a random banner show up.[/color][/color]
      [color=blue]
      > ???[/color]
      [color=blue]
      > You cannot of course.[/color]
      [color=blue]
      > How would you feel when I started executing MY PHP-code on your server?
      > If you want some code executed on another machine, contact its owner...[/color]

      lets the owner of the other machine does not have a problem with me running
      a script on his server and then displaying the output on my server..

      how would I do it then??

      Comment

      • Tom Thackrey

        #4
        Re: execute a remote file before including it.


        On 9-Sep-2003, Erwin Moller
        <since_humans_r ead_this_I_am_s pammed_too_much @spamyourself.c om> wrote:
        [color=blue]
        > Nick Messick wrote:
        >[color=green]
        > > I'm trying to modify a banner display function so it can be including
        > > on remote websites. If I just include the file from a remote website
        > > the code isn't executed before it is put into the page. I would like
        > > my code (which picks a random banner) to execute on the remote site so
        > > when I include it a random banner show up.[/color]
        >
        > ???
        >
        > You cannot of course.
        >
        > How would you feel when I started executing MY PHP-code on your server?
        > If you want some code executed on another machine, contact its owner...[/color]

        What you can do is execute the php on your server to modify the banner and
        return it as an image.

        The remote server would pass HTML to the client like
        <img src="http://yourserver.com/banner.php">
        The client browser would make the request to your server where the php code
        would return the appropriate headers and the image data.


        --
        Tom Thackrey

        Comment

        • Geoff Berrow

          #5
          Re: execute a remote file before including it.

          Message-ID: <ggm7b.630$T37. 443@newssvr29.n ews.prodigy.com > from Tom
          Thackrey contained the following:
          [color=blue]
          >The remote server would pass HTML to the client like
          ><img src="http://yourserver.com/banner.php">
          >The client browser would make the request to your server where the php code
          >would return the appropriate headers and the image data.[/color]

          Is there any way of doing this so that it returns code instead of an image?
          (to create an embedded guest book or something)

          --
          Geoff Berrow
          It's only Usenet, no one dies.
          My opinions, not the committee's, mine.
          Simple RFDs http://www.ckdog.co.uk/rfdmaker/

          Comment

          • Matt

            #6
            Re: execute a remote file before including it.

            You can sort of do what you're after...

            <script language="javas cript" type="text/javascript"
            src="http://yourserver/script.php"></script>

            This tag is put on the remote website. script.php should do whatever
            work you want it to do, then send HTML output wrapped in
            document.write( ) functions. I.E. script.php would return something
            like:

            document.write( 'Look at this!<br>');
            document.write( '<img src="http://someserver/someimage.jpg"> ');

            And that code would be run by the user's browser in place where you
            had the <script> tag on the page on the remote website. Can give you
            an example if you need one. :)

            Comment

            • Randell D.

              #7
              Re: execute a remote file before including it.


              "Nick Messick" <nospam@trendwh ore.com> wrote in message
              news:24c499fd.0 309082353.76b9c 8f7@posting.goo gle.com...[color=blue]
              > I'm trying to modify a banner display function so it can be including
              > on remote websites. If I just include the file from a remote website
              > the code isn't executed before it is put into the page. I would like
              > my code (which picks a random banner) to execute on the remote site so
              > when I include it a random banner show up.[/color]

              I've read the history - you could do two things... one, have your chap who
              has the PHP server create the banner in to a 'javascript' type file - That
              way, from the remote server, you only have to include, and execute the
              javascript

              Alternativly, you could use an html <iframe> tag and just call the page from
              their server thus giving you full forms access without changing the address
              bar (which I gather is one of your issues).


              Comment

              • bugs

                #8
                Re: execute a remote file before including it.

                Matt <google@mralsto n.com> wrote:[color=blue]
                > document.write( ) functions. I.E. script.php would return something
                > like:[/color]
                [color=blue]
                > document.write( 'Look at this!<br>');
                > document.write( '<img src="http://someserver/someimage.jpg"> ');[/color]

                what If I want to return a php function, which the user can use on his page.
                Basically, I want to give only certain users access to this one function.
                So I want to authenticate them before they run that function, the only
                problem being that authentication needs to be done on the main machine and
                not where the user is using the function. Thus, I want the users to include
                this one file, which is running on the main server, and if they authenticate
                right, I return the function. Also, this authentication needs to be automatic
                i.e. on a script to script level, not a human to html page level.

                any idea how??

                Comment

                Working...