failed to open stream: Permission denied in /opt/lampp/htdocs












2















I am using Ubuntu 16.04 & xampp 5.6.30. I am trying to create a simple login program using file with validation but I am facing problem while putting my data into a file named "login.txt".



Error:



file_put_contents(login.txt): failed to open stream: Permission denied in /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.php on line 38


My code:



$input = $userName.'|'.$userPassword.'n';

$myfile = file_put_contents('login.txt', $input.PHP_EOL , FILE_APPEND | LOCK_EX);









share|improve this question

























  • That's a permission denied error...are you saving the login.txt file inside of the /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/ folder?...if not, then run this command stat theFolder and post the output.

    – Hackerman
    Mar 31 '17 at 15:33
















2















I am using Ubuntu 16.04 & xampp 5.6.30. I am trying to create a simple login program using file with validation but I am facing problem while putting my data into a file named "login.txt".



Error:



file_put_contents(login.txt): failed to open stream: Permission denied in /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.php on line 38


My code:



$input = $userName.'|'.$userPassword.'n';

$myfile = file_put_contents('login.txt', $input.PHP_EOL , FILE_APPEND | LOCK_EX);









share|improve this question

























  • That's a permission denied error...are you saving the login.txt file inside of the /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/ folder?...if not, then run this command stat theFolder and post the output.

    – Hackerman
    Mar 31 '17 at 15:33














2












2








2


2






I am using Ubuntu 16.04 & xampp 5.6.30. I am trying to create a simple login program using file with validation but I am facing problem while putting my data into a file named "login.txt".



Error:



file_put_contents(login.txt): failed to open stream: Permission denied in /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.php on line 38


My code:



$input = $userName.'|'.$userPassword.'n';

$myfile = file_put_contents('login.txt', $input.PHP_EOL , FILE_APPEND | LOCK_EX);









share|improve this question
















I am using Ubuntu 16.04 & xampp 5.6.30. I am trying to create a simple login program using file with validation but I am facing problem while putting my data into a file named "login.txt".



Error:



file_put_contents(login.txt): failed to open stream: Permission denied in /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.php on line 38


My code:



$input = $userName.'|'.$userPassword.'n';

$myfile = file_put_contents('login.txt', $input.PHP_EOL , FILE_APPEND | LOCK_EX);






php linux file login warnings






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 31 '17 at 15:40









ASGM

6,9411740




6,9411740










asked Mar 31 '17 at 15:21









AnimeshAnimesh

32128




32128













  • That's a permission denied error...are you saving the login.txt file inside of the /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/ folder?...if not, then run this command stat theFolder and post the output.

    – Hackerman
    Mar 31 '17 at 15:33



















  • That's a permission denied error...are you saving the login.txt file inside of the /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/ folder?...if not, then run this command stat theFolder and post the output.

    – Hackerman
    Mar 31 '17 at 15:33

















That's a permission denied error...are you saving the login.txt file inside of the /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/ folder?...if not, then run this command stat theFolder and post the output.

– Hackerman
Mar 31 '17 at 15:33





That's a permission denied error...are you saving the login.txt file inside of the /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/ folder?...if not, then run this command stat theFolder and post the output.

– Hackerman
Mar 31 '17 at 15:33












3 Answers
3






active

oldest

votes


















2














This error is due to file permissions. The php/apache user does not have the permissions to write in the directory. One way of fixing that is to change the mod byte of the directory with the command chmod. You need super permissions to execute this modification if your session user does not own the directory.



$ sudo chmod -R 777 /path/to/directory


The mod 777 set read/write and execution to directory for every users on the system. The R option applies recursively the modification to every files and sub-directories. So, you can change the permission of all the contents of your htdocs directory all at once.



https://linux.die.net/man/1/chmod






share|improve this answer



















  • 1





    change permission to 777 is bad idea, because it gives permission to anybody to read and write into directory. In Ubuntu, apache user usualy www-data (uid=33). Change the owner of directory to this user with: chown -R www-data /path/to/directory

    – Sofyan Thayf
    Dec 2 '18 at 11:50











  • I tried this command and its works. $sudo chmod 0422 login.txt

    – Biranchi
    Dec 18 '18 at 6:36



















0














I would recommend two things. Firstly, define the full path to your login.txt file.



$input = $userName.'|'.$userPassword.'n';

$loginFile = "/opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.txt"

$myfile = file_put_contents($loginFile, $input.PHP_EOL , FILE_APPEND | LOCK_EX);


Secondly, the directly you are trying to write to:



/opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/


Is not writable. Check what user the web server is running as and give that user read/write permissions to that folder.






share|improve this answer































    0














    Find Web Server user



    ps aux | grep httpd


    Web Server Name



    In my case its daemon, replace it with yours in next command.



    sudo chown -R daemon /opt/lampp/htdocs/[Working Project]/





    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43144325%2ffailed-to-open-stream-permission-denied-in-opt-lampp-htdocs%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      2














      This error is due to file permissions. The php/apache user does not have the permissions to write in the directory. One way of fixing that is to change the mod byte of the directory with the command chmod. You need super permissions to execute this modification if your session user does not own the directory.



      $ sudo chmod -R 777 /path/to/directory


      The mod 777 set read/write and execution to directory for every users on the system. The R option applies recursively the modification to every files and sub-directories. So, you can change the permission of all the contents of your htdocs directory all at once.



      https://linux.die.net/man/1/chmod






      share|improve this answer



















      • 1





        change permission to 777 is bad idea, because it gives permission to anybody to read and write into directory. In Ubuntu, apache user usualy www-data (uid=33). Change the owner of directory to this user with: chown -R www-data /path/to/directory

        – Sofyan Thayf
        Dec 2 '18 at 11:50











      • I tried this command and its works. $sudo chmod 0422 login.txt

        – Biranchi
        Dec 18 '18 at 6:36
















      2














      This error is due to file permissions. The php/apache user does not have the permissions to write in the directory. One way of fixing that is to change the mod byte of the directory with the command chmod. You need super permissions to execute this modification if your session user does not own the directory.



      $ sudo chmod -R 777 /path/to/directory


      The mod 777 set read/write and execution to directory for every users on the system. The R option applies recursively the modification to every files and sub-directories. So, you can change the permission of all the contents of your htdocs directory all at once.



      https://linux.die.net/man/1/chmod






      share|improve this answer



















      • 1





        change permission to 777 is bad idea, because it gives permission to anybody to read and write into directory. In Ubuntu, apache user usualy www-data (uid=33). Change the owner of directory to this user with: chown -R www-data /path/to/directory

        – Sofyan Thayf
        Dec 2 '18 at 11:50











      • I tried this command and its works. $sudo chmod 0422 login.txt

        – Biranchi
        Dec 18 '18 at 6:36














      2












      2








      2







      This error is due to file permissions. The php/apache user does not have the permissions to write in the directory. One way of fixing that is to change the mod byte of the directory with the command chmod. You need super permissions to execute this modification if your session user does not own the directory.



      $ sudo chmod -R 777 /path/to/directory


      The mod 777 set read/write and execution to directory for every users on the system. The R option applies recursively the modification to every files and sub-directories. So, you can change the permission of all the contents of your htdocs directory all at once.



      https://linux.die.net/man/1/chmod






      share|improve this answer













      This error is due to file permissions. The php/apache user does not have the permissions to write in the directory. One way of fixing that is to change the mod byte of the directory with the command chmod. You need super permissions to execute this modification if your session user does not own the directory.



      $ sudo chmod -R 777 /path/to/directory


      The mod 777 set read/write and execution to directory for every users on the system. The R option applies recursively the modification to every files and sub-directories. So, you can change the permission of all the contents of your htdocs directory all at once.



      https://linux.die.net/man/1/chmod







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Mar 31 '17 at 15:33









      Youmy001Youmy001

      1248




      1248








      • 1





        change permission to 777 is bad idea, because it gives permission to anybody to read and write into directory. In Ubuntu, apache user usualy www-data (uid=33). Change the owner of directory to this user with: chown -R www-data /path/to/directory

        – Sofyan Thayf
        Dec 2 '18 at 11:50











      • I tried this command and its works. $sudo chmod 0422 login.txt

        – Biranchi
        Dec 18 '18 at 6:36














      • 1





        change permission to 777 is bad idea, because it gives permission to anybody to read and write into directory. In Ubuntu, apache user usualy www-data (uid=33). Change the owner of directory to this user with: chown -R www-data /path/to/directory

        – Sofyan Thayf
        Dec 2 '18 at 11:50











      • I tried this command and its works. $sudo chmod 0422 login.txt

        – Biranchi
        Dec 18 '18 at 6:36








      1




      1





      change permission to 777 is bad idea, because it gives permission to anybody to read and write into directory. In Ubuntu, apache user usualy www-data (uid=33). Change the owner of directory to this user with: chown -R www-data /path/to/directory

      – Sofyan Thayf
      Dec 2 '18 at 11:50





      change permission to 777 is bad idea, because it gives permission to anybody to read and write into directory. In Ubuntu, apache user usualy www-data (uid=33). Change the owner of directory to this user with: chown -R www-data /path/to/directory

      – Sofyan Thayf
      Dec 2 '18 at 11:50













      I tried this command and its works. $sudo chmod 0422 login.txt

      – Biranchi
      Dec 18 '18 at 6:36





      I tried this command and its works. $sudo chmod 0422 login.txt

      – Biranchi
      Dec 18 '18 at 6:36













      0














      I would recommend two things. Firstly, define the full path to your login.txt file.



      $input = $userName.'|'.$userPassword.'n';

      $loginFile = "/opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.txt"

      $myfile = file_put_contents($loginFile, $input.PHP_EOL , FILE_APPEND | LOCK_EX);


      Secondly, the directly you are trying to write to:



      /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/


      Is not writable. Check what user the web server is running as and give that user read/write permissions to that folder.






      share|improve this answer




























        0














        I would recommend two things. Firstly, define the full path to your login.txt file.



        $input = $userName.'|'.$userPassword.'n';

        $loginFile = "/opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.txt"

        $myfile = file_put_contents($loginFile, $input.PHP_EOL , FILE_APPEND | LOCK_EX);


        Secondly, the directly you are trying to write to:



        /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/


        Is not writable. Check what user the web server is running as and give that user read/write permissions to that folder.






        share|improve this answer


























          0












          0








          0







          I would recommend two things. Firstly, define the full path to your login.txt file.



          $input = $userName.'|'.$userPassword.'n';

          $loginFile = "/opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.txt"

          $myfile = file_put_contents($loginFile, $input.PHP_EOL , FILE_APPEND | LOCK_EX);


          Secondly, the directly you are trying to write to:



          /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/


          Is not writable. Check what user the web server is running as and give that user read/write permissions to that folder.






          share|improve this answer













          I would recommend two things. Firstly, define the full path to your login.txt file.



          $input = $userName.'|'.$userPassword.'n';

          $loginFile = "/opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/login.txt"

          $myfile = file_put_contents($loginFile, $input.PHP_EOL , FILE_APPEND | LOCK_EX);


          Secondly, the directly you are trying to write to:



          /opt/lampp/htdocs/PHP/Practice/PHP Functions/Login Validation/


          Is not writable. Check what user the web server is running as and give that user read/write permissions to that folder.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 31 '17 at 15:39









          CrayonsCrayons

          179114




          179114























              0














              Find Web Server user



              ps aux | grep httpd


              Web Server Name



              In my case its daemon, replace it with yours in next command.



              sudo chown -R daemon /opt/lampp/htdocs/[Working Project]/





              share|improve this answer




























                0














                Find Web Server user



                ps aux | grep httpd


                Web Server Name



                In my case its daemon, replace it with yours in next command.



                sudo chown -R daemon /opt/lampp/htdocs/[Working Project]/





                share|improve this answer


























                  0












                  0








                  0







                  Find Web Server user



                  ps aux | grep httpd


                  Web Server Name



                  In my case its daemon, replace it with yours in next command.



                  sudo chown -R daemon /opt/lampp/htdocs/[Working Project]/





                  share|improve this answer













                  Find Web Server user



                  ps aux | grep httpd


                  Web Server Name



                  In my case its daemon, replace it with yours in next command.



                  sudo chown -R daemon /opt/lampp/htdocs/[Working Project]/






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 10 at 5:55









                  Attaullah KhanAttaullah Khan

                  12




                  12






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43144325%2ffailed-to-open-stream-permission-denied-in-opt-lampp-htdocs%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      MongoDB - Not Authorized To Execute Command

                      Npm cannot find a required file even through it is in the searched directory

                      in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith