mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-06 09:22:01 +00:00
fix: replace website key for webpages in breadcrumb translate file
This commit is contained in:
parent
96b39002eb
commit
50e32ff756
12
INSTALL.md
12
INSTALL.md
@ -76,10 +76,18 @@ Castopod is built on top of Codeigniter, a PHP framework that encourages
|
|||||||
[good security practices](https://codeigniter.com/user_guide/concepts/security.html).
|
[good security practices](https://codeigniter.com/user_guide/concepts/security.html).
|
||||||
|
|
||||||
To maximize your instance safety and prevent any malicious attack, we recommend
|
To maximize your instance safety and prevent any malicious attack, we recommend
|
||||||
you update all your Castopod files permissions:
|
you update all your Castopod files permissions (after installation to avoid any
|
||||||
|
permission error):
|
||||||
|
|
||||||
- `writable/` folder must be **readable** and **writable**.
|
- `writable/` folder must be **readable** and **writable**.
|
||||||
- `public/media/` folder must be **readable** and **writable**.
|
- `public/media/` folder must be **readable** and **writable**.
|
||||||
- any other file must be set to **readonly**.
|
- any other file must be set to **readonly**.
|
||||||
|
|
||||||
// TODO: add instructions on how to set file permissions.
|
For instance, if you are using Apache or NGINX with Ubuntu you may do the
|
||||||
|
following:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo chown -R root:root /path/to/castopod
|
||||||
|
sudo chown -R www-data:www-data /path/to/castopod/writable
|
||||||
|
sudo chown -R www-data:www-data /path/to/castopod/public/media
|
||||||
|
```
|
||||||
|
@ -24,7 +24,7 @@ return [
|
|||||||
'platforms' => 'platforms',
|
'platforms' => 'platforms',
|
||||||
'analytics' => 'Analytics',
|
'analytics' => 'Analytics',
|
||||||
'locations' => 'Locations',
|
'locations' => 'Locations',
|
||||||
'website' => 'Website',
|
'webpages' => 'Web pages',
|
||||||
'unique-listeners' => 'Unique listeners',
|
'unique-listeners' => 'Unique listeners',
|
||||||
'players' => 'Players',
|
'players' => 'Players',
|
||||||
];
|
];
|
||||||
|
@ -24,7 +24,7 @@ return [
|
|||||||
'platforms' => 'plateformes',
|
'platforms' => 'plateformes',
|
||||||
'analytics' => 'Mesures d’audience',
|
'analytics' => 'Mesures d’audience',
|
||||||
'locations' => 'Localisations',
|
'locations' => 'Localisations',
|
||||||
'website' => 'Site web',
|
'webpages' => 'Pages web',
|
||||||
'unique-listeners' => 'Auditeurs uniques',
|
'unique-listeners' => 'Auditeurs uniques',
|
||||||
'players' => 'Lecteurs',
|
'players' => 'Lecteurs',
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user