PHP posting script, file updated but web still shows last night's file

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default PHP posting script, file updated but web still shows last night's file

    I wrote a PHP script that allows me to post HTML entries to files on my
    server without going through FTP, yadda yadda. It works fine, and last night
    it updated both files properly.

    Today, it updated both files perfectly again, but only one file is showing
    up on the web. I checked the HTML files in my FTP folder, and both are
    updated with the new post. To double check, I copied and pasted the contents
    of the file as it should be and uploaded it to the correct location, which
    is the failproof way to do it. When viewing the file in my FTP folder, it is
    ALL THERE. However, switching over to HTTP, which simply reads that same
    file in read-only mode, it only shows last night's contents. No update for
    today.

    I've checked on different computers, so all I can think is that file
    permissions got screwed up. Anybody know what's going on?

    Thanks...


    JPM III Guest

  2. Similar Questions and Discussions

    1. Posting pdf file
      Thanks, Graffiti. Appreciate your help. Could have done without the sarcasm, though.
    2. Move on open file - not updated
      Folks: I have a file open. I use the File panel to move that file. The open file is not updated to reflect this move, but the closed one is. ...
    3. Resource file shows up
      We are using Photoshop 7 on a Mac G5 running OS10. The problem that we are having is when you save a picture as a cmyk TIFF file everything seems...
    4. shows duplicates of every file in search results
      Why does Search Companion display EXACT duplicates of every file in its search results? (same name, same path, same folder, date/time modified,etc.)
    5. Problem executing a BAT file (or EXE file) using Perl as CGI script under Apache.
      I have developed some perl code to run as a script under Windows 2000 running apache. This works GREAT on Win2k but on WinNT, perl is simply...
  3. #2

    Default PHP posting script, file updated but web still shows last night's file

    I wrote a PHP script that allows me to post HTML entries to files on my
    server without going through FTP, yadda yadda. It works fine, and last night
    it updated both files properly.

    Today, it updated both files perfectly again, but only one file is showing
    up on the web. I checked the HTML files in my FTP folder, and both are
    updated with the new post. To double check, I copied and pasted the contents
    of the file as it should be and uploaded it to the correct location, which
    is the failproof way to do it. When viewing the file in my FTP folder, it is
    ALL THERE. However, switching over to HTTP, which simply reads that same
    file in read-only mode, it only shows last night's contents. No update for
    today.

    I've checked on different computers, so all I can think is that file
    permissions got screwed up. Anybody know what's going on?

    Thanks...


    JPM III Guest

  4. #3

    Default Re: PHP posting script, file updated but web still shows last night'sfile

    JPM III wrote:
    >
    > I wrote a PHP script that allows me to post HTML entries to files on my
    > server without going through FTP, yadda yadda. It works fine, and last night
    > it updated both files properly.
    >
    > Today, it updated both files perfectly again, but only one file is showing
    > up on the web. I checked the HTML files in my FTP folder, and both are
    > updated with the new post. To double check, I copied and pasted the contents
    > of the file as it should be and uploaded it to the correct location, which
    > is the failproof way to do it. When viewing the file in my FTP folder, it is
    > ALL THERE. However, switching over to HTTP, which simply reads that same
    > file in read-only mode, it only shows last night's contents. No update for
    > today.
    So your script is making 2 copies of each file - one in your ftp directory and
    one in a web-accessable directory?

    Could you post some code?

    You're sure the file is not being cached by your browser, right?

    Shawn
    --
    Shawn Wilson
    [email]shawn@glassgiant.com[/email]
    [url]http://www.glassgiant.com[/url]
    Shawn Wilson Guest

  5. #4

    Default Re: PHP posting script, file updated but web still shows last night'sfile

    JPM III wrote:
    >
    > I wrote a PHP script that allows me to post HTML entries to files on my
    > server without going through FTP, yadda yadda. It works fine, and last night
    > it updated both files properly.
    >
    > Today, it updated both files perfectly again, but only one file is showing
    > up on the web. I checked the HTML files in my FTP folder, and both are
    > updated with the new post. To double check, I copied and pasted the contents
    > of the file as it should be and uploaded it to the correct location, which
    > is the failproof way to do it. When viewing the file in my FTP folder, it is
    > ALL THERE. However, switching over to HTTP, which simply reads that same
    > file in read-only mode, it only shows last night's contents. No update for
    > today.
    So your script is making 2 copies of each file - one in your ftp directory and
    one in a web-accessable directory?

    Could you post some code?

    You're sure the file is not being cached by your browser, right?

    Shawn
    --
    Shawn Wilson
    [email]shawn@glassgiant.com[/email]
    [url]http://www.glassgiant.com[/url]
    Shawn Wilson Guest

  6. #5

    Default Re: PHP posting script, file updated but web still shows last night's file

    > So your script is making 2 copies of each file - one in your ftp directory
    and
    > one in a web-accessable directory?
    >
    > Could you post some code?
    >
    > You're sure the file is not being cached by your browser, right?
    The php file is on the web server. The web server is updating the files on
    the web server. It's updating the files that are already on the web. I'm
    trying to figure out why the web accessible file, which is updated when i
    login via FTP, isn't updated when I login via HTTP.


    JPM III Guest

  7. #6

    Default Re: PHP posting script, file updated but web still shows last night's file

    > So your script is making 2 copies of each file - one in your ftp directory
    and
    > one in a web-accessable directory?
    >
    > Could you post some code?
    >
    > You're sure the file is not being cached by your browser, right?
    The php file is on the web server. The web server is updating the files on
    the web server. It's updating the files that are already on the web. I'm
    trying to figure out why the web accessible file, which is updated when i
    login via FTP, isn't updated when I login via HTTP.


    JPM III Guest

  8. #7

    Default Re: PHP posting script, file updated but web still shows last night's file

    > Could you post some code?
    >
    > You're sure the file is not being cached by your browser, right?
    Uhh, yeah. It's updating the files on the server, but they're not displaying
    in HTTP. It's like port 80 is waiting for something.

    [url]http://crash.neotope.com/post.txt[/url]


    JPM III Guest

  9. #8

    Default Re: PHP posting script, file updated but web still shows last night's file

    > Could you post some code?
    >
    > You're sure the file is not being cached by your browser, right?
    Uhh, yeah. It's updating the files on the server, but they're not displaying
    in HTTP. It's like port 80 is waiting for something.

    [url]http://crash.neotope.com/post.txt[/url]


    JPM III Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139