Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Based on your comment to deceze's answer, are you looking for something like PHP's <a href="http://us.php.net/manual/en/ref.filesystem.php" rel="nofollow noreferrer">filesystem functions</a>?</p> <p>Then, there is <a href="http://us.php.net/manual/en/function.system.php" rel="nofollow noreferrer">system</a> and its related functions, which gives access to Unix commands, but I'd recommend other ways of doing things if possible.</p> <p>Edit: In response to the comments about needing user and group functionality: </p> <ul> <li>Firstly, in case your plan is to let web users have access to the whole file system (or even just their regular log in directories), I just want to advise against that - lots of security concerns (eg. if someone else gets into a user's account, they could delete everything to which they have access).</li> <li>The little experience I have with handling users in PHP was in some beginner level training. In that class, we had our users in an SQL database and used <a href="http://us.php.net/manual/en/book.session.php" rel="nofollow noreferrer">sessions</a>. We didn't use SSL, but I'd advise some sort of crypto when passing passwords around.</li> <li>If you're using <a href="http://httpd.apache.org/" rel="nofollow noreferrer">Apache</a>, it can handle the authentication for you. Other server software can probably do the same, but Apache is all I've ever worked with. I can't address whether Apache can handle sessions itself and don't have the time to research it right now.</li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload