Some changes of doc for beginning developers

Made some corrections after following this manual step by step.
This commit is contained in:
einervonvielen 2015-02-15 18:11:51 +01:00
parent 6ed8fb30b8
commit 4e6ba149d7

View File

@ -188,8 +188,7 @@ If you not want to use GIT from the command line - there is a usefull Eclipse pl
You should have created an account on github and forked the projects befor you procceed. You should have created an account on github and forked the projects befor you procceed.
Delete the directory www Delete the directory www
[code]root@debian /var/www/html $ cd .. [code]root@debian:/var# rm -R www/
rm -R www/
[/code] [/code]
Install git (and optionally git-gui a client gui) Install git (and optionally git-gui a client gui)
@ -211,7 +210,7 @@ root@debian:/var/www# mkdir -p "store/[data]/smarty3"
Create .htconfig.php and make it writable by the webserver Create .htconfig.php and make it writable by the webserver
[code] [code]
root@debian:/var# cd www/ root@debian:/var/www# touch .htconfig.php
root@debian:/var/www# chmod ou+w .htconfig.php root@debian:/var/www# chmod ou+w .htconfig.php
[/code] [/code]
@ -224,6 +223,7 @@ root@debian:/var# chown -R www-data:www-data www/
Add yourself ("surfer" in this example) to the group www-data. Why? Later you want to modify files in eclipse or in another editor. Add yourself ("surfer" in this example) to the group www-data. Why? Later you want to modify files in eclipse or in another editor.
Then make all files writable by the group www-date you are now a member of. Then make all files writable by the group www-date you are now a member of.
[code] [code]
root@debian:/var# cd www/
root@debian:/var/www# usermod -G www-data surfer root@debian:/var/www# usermod -G www-data surfer
root@debian:/var# chmod -R g+w www/ root@debian:/var# chmod -R g+w www/
[/code] [/code]