Highlight chmod text in README, id not needed

This commit is contained in:
mattpass
2020-11-17 17:00:15 +00:00
parent a7e1bb53a3
commit e259946dcc
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ $ git clone git@github.com:icecoder/icecoder /var/www/html/icecoder
#### Step 2: Set permissions on dirs & files
You'll need to ensure both the ICEcoder dir and the wwwroot dir have permissions to read, write and execute. This can be done by changing permissions (using chmod), but it it safer and so better, to use `chown`:
You'll need to ensure both the ICEcoder dir and the wwwroot dir have permissions to read, write and execute. This can be done by changing permissions (using `chmod`), but it it safer and so better, to use `chown`:
`chown -R www-data.www-data /var/www/html`

View File

@@ -168,7 +168,7 @@ class System
</style>
';
$content .= '
<div id="demoModeIndicator" class="demoModeIndicator" title="' . $text['demo-mode']['Demo mode'] . '">' . file_get_contents(dirname(__FILE__) . "/../assets/images/icons/lock.svg") .'</div>
<div class="demoModeIndicator" title="' . $text['demo-mode']['Demo mode'] . '">' . file_get_contents(dirname(__FILE__) . "/../assets/images/icons/lock.svg") .'</div>
';
return $content;
}