Cannot open file

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

    Cannot open file

    Hi
    I have my home directory on my departments server. Somehow I am not
    able to write to a file using a php code,
    $myFile = "trial3.txt ";
    $fh = fopen($myFile, "a+") or die("can't open file");

    Instead of a+ if i use r or w or anything, it does not work. Could this
    be a permission thing? The entire directory had a 777 permission and
    even i after i created a file and chmod'ed 777 to it, the code couldnt
    open it. What could be the matter? It doesnt go away if i change it to
    'w' or 'w+' or 'r' or 'r+'.

    Rahul

  • rahulthathoo

    #2
    Re: Cannot open file

    Also I wanted to add that if i write a perl script to write to a file,
    it does it for me. But some how that is not possible in php. I gave
    write permissions to all the php files and all the text files.

    Rahul


    rahulthathoo wrote:
    Hi
    I have my home directory on my departments server. Somehow I am not
    able to write to a file using a php code,
    $myFile = "trial3.txt ";
    $fh = fopen($myFile, "a+") or die("can't open file");
    >
    Instead of a+ if i use r or w or anything, it does not work. Could this
    be a permission thing? The entire directory had a 777 permission and
    even i after i created a file and chmod'ed 777 to it, the code couldnt
    open it. What could be the matter? It doesnt go away if i change it to
    'w' or 'w+' or 'r' or 'r+'.
    >
    Rahul

    Comment

    • naixn

      #3
      Re: Cannot open file

      rahulthathoo wrote :
      Also I wanted to add that if i write a perl script to write to a file,
      it does it for me. But some how that is not possible in php. I gave
      write permissions to all the php files and all the text files.
      >
      Rahul
      >
      >
      rahulthathoo wrote:
      >Hi
      >I have my home directory on my departments server. Somehow I am not
      >able to write to a file using a php code,
      >$myFile = "trial3.txt ";
      >$fh = fopen($myFile, "a+") or die("can't open file");
      >>
      >Instead of a+ if i use r or w or anything, it does not work. Could this
      >be a permission thing? The entire directory had a 777 permission and
      >even i after i created a file and chmod'ed 777 to it, the code couldnt
      >open it. What could be the matter? It doesnt go away if i change it to
      >'w' or 'w+' or 'r' or 'r+'.
      >>
      >Rahul
      >
      Did you try running your PHP script in a shell, instead of in a browser?

      --
      Naixn

      Comment

      • rahulthathoo

        #4
        Re: Cannot open file

        No i opened up the php script in the browser. how do i parse it in the
        shell?


        rahul

        naixn wrote:
        rahulthathoo wrote :
        Also I wanted to add that if i write a perl script to write to a file,
        it does it for me. But some how that is not possible in php. I gave
        write permissions to all the php files and all the text files.

        Rahul


        rahulthathoo wrote:
        Hi
        I have my home directory on my departments server. Somehow I am not
        able to write to a file using a php code,
        $myFile = "trial3.txt ";
        $fh = fopen($myFile, "a+") or die("can't open file");
        >
        Instead of a+ if i use r or w or anything, it does not work. Could this
        be a permission thing? The entire directory had a 777 permission and
        even i after i created a file and chmod'ed 777 to it, the code couldnt
        open it. What could be the matter? It doesnt go away if i change it to
        'w' or 'w+' or 'r' or 'r+'.
        >
        Rahul
        >
        Did you try running your PHP script in a shell, instead of in a browser?
        >
        --
        Naixn
        http://fma-fr.net

        Comment

        • naixn

          #5
          Re: Cannot open file

          rahulthathoo wrote :
          No i opened up the php script in the browser. how do i parse it in the
          shell?
          >
          Symply type :
          $php your_file.php

          ( '$>' being the shell prompt, in case of )

          Not too hard, eh? :)

          --
          Naixn

          Comment

          • rahulthathoo

            #6
            Re: Cannot open file

            Alright it works in the shell, but now when i open the url in the
            browser. What could be wrong?

            Rahul

            naixn wrote:
            rahulthathoo wrote :
            No i opened up the php script in the browser. how do i parse it in the
            shell?
            >
            Symply type :
            $php your_file.php
            >
            ( '$>' being the shell prompt, in case of )
            >
            Not too hard, eh? :)
            >
            --
            Naixn
            http://fma-fr.net

            Comment

            • rahulthathoo

              #7
              Re: Cannot open file

              I meant not* - it doesnt write the file when i open the url in the
              browser

              Rahul
              rahulthathoo wrote:
              Alright it works in the shell, but now when i open the url in the
              browser. What could be wrong?
              >
              Rahul
              >
              naixn wrote:
              rahulthathoo wrote :
              No i opened up the php script in the browser. how do i parse it in the
              shell?
              >
              Symply type :
              $php your_file.php

              ( '$>' being the shell prompt, in case of )

              Not too hard, eh? :)

              --
              Naixn
              http://fma-fr.net

              Comment

              Working...