Difference between revisions of "Omen dev"

From Wiki2
Line 20: Line 20:
  chmod 644 info.php
  chmod 644 info.php


<nowiki>Numeric  Readable    Explanation
<pre>Numeric  Readable    Explanation
0        ---        No access.
0        ---        No access.
1        --x        Execute access.*
1        --x        Execute access.*
Line 29: Line 29:
6        rw-        Read and write access.
6        rw-        Read and write access.
7        rwx        Read, write and execute access.
7        rwx        Read, write and execute access.
</nowiki>
</pre>

Revision as of 20:21, 21 June 2018

omen development env

references

docker

https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiDrO6brOXbAhWrrFkKHRoDChsQFggpMAA&url=https%3A%2F%2Fblogs.msdn.microsoft.com%2Fcommandline%2F2017%2F10%2F27%2Frunning-node-js-on-wsl-from-visual-studio-code%2F&usg=AOvVaw124mrFIt0TlYoyY2rtQwtT


npm

tips

sudo -i sets you as superuser

systemctl doesn't work use

/etc/init.d/php7.0-fpm restart 

or

service nginx restart

when editng files you need to set permissions

chmod 644 info.php
Numeric  Readable    Explanation
0        ---         No access.
1        --x         Execute access.*
2        -w-         Write access.**
3        -wx         Write and execute access.***
4        r--         Read access.
5        r-x         Read and execute access.
6        rw-         Read and write access.
7        rwx         Read, write and execute access.