help

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

    help

    I can't write and read to/from my file on IP .What is going on.

    --
    Icec


  • Philip  Olson

    #2
    Re: help

    Please ask a complete question.

    Comment

    • albury

      #3
      Re: help

      probably have access error after runing script


      Comment

      • icek

        #4
        Re: help

        Yes e.g .Permission denied in
        /home/qwertyuiop.com/public_html/asdf/werte.php


        Comment

        • Mike Willbanks

          #5
          Re: help

          > Yes e.g .Permission denied in[color=blue]
          > /home/qwertyuiop.com/public_html/asdf/werte.php[/color]

          This normally means that the webserver does not have permission to the
          file. 2 ways of doing this.

          1) Find out what the web server user is and set it as the file group or
          2) chmod the file to world writeable. (may be the easy way but the least
          secure).

          So basically:
          In a shell (that is if you have one, if you don't see step 2) all one line:
          chown yourusername:we bserver /home/qwertyuiop.com/public_html/asdf/werte.php

          step 2 is:
          chmod 0777 /home/qwertyuiop.com/public_html/asdf/werte.php
          (you can also do this in an FTP client).


          Mike

          Comment

          Working...