CinemaPress 4

This commit is contained in:
zeldaroot 2019-10-01 22:34:02 +03:00
commit 814fe8bc15
402 changed files with 119457 additions and 0 deletions

3
.prettierrc Normal file
View File

@ -0,0 +1,3 @@
{
"singleQuote": true
}

79
Dockerfile Normal file
View File

@ -0,0 +1,79 @@
FROM alpine:3.10
ARG NODE_ENV="production"
ENV NODE_ENV=${NODE_ENV}
ARG NODE_PORT="3000"
ENV NODE_PORT=${NODE_PORT}
ARG CP_DOMAIN=""
ENV CP_DOMAIN=${CP_DOMAIN}
ARG CP_DOMAIN_=""
ENV CP_DOMAIN_=${CP_DOMAIN_}
ARG CP_LANG=""
ENV CP_LANG=${CP_LANG}
ARG CP_THEME=""
ENV CP_THEME=${CP_THEME}
ARG CP_PASSWD=""
ENV CP_PASSWD=${CP_PASSWD}
ARG CP_MIRROR=""
ENV CP_MIRROR=${CP_MIRROR}
ARG CP_MIRROR_=""
ENV CP_MIRROR_=${CP_MIRROR_}
ARG CP_KEY=""
ENV CP_KEY=${CP_KEY}
ARG RCLONE_CONFIG=""
ENV RCLONE_CONFIG=${RCLONE_CONFIG}
ENV TZ=Europe/Helsinki
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
RUN mkdir -p /home/cinemapress
WORKDIR /home/cinemapress
COPY package.json /home/cinemapress/package.json
RUN set -o pipefail \
&& apk update \
# && apk add -u --no-cache libpng librsvg libgsf giflib libjpeg-turbo musl \
# && apk add vips-dev fftw-dev build-base --update-cache \
# --repository http://dl-3.alpinelinux.org/alpine/edge/community/ \
# --repository http://dl-3.alpinelinux.org/alpine/edge/main \
&& apk --no-cache add --virtual .build-dependencies make g++ gcc gtk-doc gobject-introspection expat-dev glib-dev libpng-dev libjpeg-turbo-dev giflib-dev librsvg-dev \
&& apk add -u --no-cache sudo python wget curl tar gzip unzip git sed bash nano openrc openssl dos2unix busybox-extras tzdata \
&& apk add -u --no-cache npm=10.16.3-r0 mysql-client=10.3.17-r0 sphinx=2.2.11-r1 memcached=1.5.16-r0 \
&& wget -qO - https://rclone.org/install.sh | bash \
&& cp /usr/share/zoneinfo/Europe/Helsinki /etc/localtime \
&& echo "Europe/Helsinki" > /etc/timezone \
&& npm i node-gyp -g \
&& npm i pm2 -g \
&& npm i \
&& mkdir -p \
/var/ngx_pagespeed_cache \
/etc/sphinx \
/var/lib/sphinx/data \
/var/local/images \
/var/local/balancer \
&& npm cache clean --force \
&& apk del .build-dependencies \
&& rm -rf /var/cache/apk/*
COPY . /home/cinemapress
RUN set -o pipefail \
&& rm -rf doc .dockerignore .gitignore .prettierignore .prettierrc Dockerfile LICENSE.txt README.md \
&& dos2unix /home/cinemapress/cinemapress.sh \
&& cp /home/cinemapress/cinemapress.sh /usr/bin/cinemapress && chmod +x /usr/bin/cinemapress \
&& cp -rf /home/cinemapress/themes/default/public/admin/favicon.ico /home/cinemapress/favicon.ico \
&& cp -rf /home/cinemapress/files/bbb.mp4 /var/local/balancer/bbb.mp4 \
&& cp -rf /home/cinemapress/themes/default/public/desktop/img/player$(( ( RANDOM % 7 ) + 1 )).png \
/home/cinemapress/themes/default/public/desktop/img/player.png \
&& wget -qO geo.tar.gz http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz \
&& tar xfz geo.tar.gz \
&& mv GeoLite2-City_*/GeoLite2-City.mmdb /home/cinemapress/files/GeoLite2-City.mmdb \
&& rm -rf geo.tar.gz GeoLite2-City_* \
&& wget -qO geo.tar.gz http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz \
&& tar xfz geo.tar.gz \
&& mv GeoLite2-Country_*/GeoLite2-Country.mmdb /home/cinemapress/files/GeoLite2-Country.mmdb \
&& rm -rf geo.tar.gz GeoLite2-Country_* \
&& echo -e "#!/bin/bash\n/usr/bin/cinemapress container backup > /home/\${CP_DOMAIN}/log/backup_\$(date '+%d_%m_%Y').log" \
> /etc/periodic/daily/backup \
&& chmod a+x /etc/periodic/daily/backup \
&& echo -e "#!/bin/bash\n/usr/bin/cinemapress container cron > /home/\${CP_DOMAIN}/log/cron_\$(date '+%d_%m_%Y').log" \
> /etc/periodic/hourly/cron \
&& chmod a+x /etc/periodic/hourly/cron
EXPOSE 3000
CMD ["/usr/bin/cinemapress", "container", "run"]

9
LICENSE.txt Normal file
View File

@ -0,0 +1,9 @@
The MIT License (MIT)
Copyright (c) 2014 CinemaPress
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

213
README.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Watch Movies and TV Shows Online Streaming Portal CMS Open Source Script
</center>
> Create a video streaming website to watch movies and TV shows on computer `Windows / iOS`, mobile device `iPhone / Android` and TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="100" alt="EN" title="EN">
`Choose your language`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## How to install CinemaPress?
> #### Install via website
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Install via website" alt="Install via website"></a>
> #### Install via terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Install via terminal" alt="Install via terminal">
## Where to buy a VPS server?
> The OS should be **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** without control panels!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECT**</a>
</center>
> `*` - **15%** discount, promo code: `CinemaPress15`
## Where to buy a domain name?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECT**</a>
</center>
> `*` - data is not sent to public WHOIS database
## Theme «hodor»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Template «hodor»"></a>
## Theme «sansa»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Template «sansa»"></a>
## Theme «robb»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Template «robb»"></a>
## Theme «ramsay»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Template «ramsay»"></a>
## Theme «tyrion»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Template «tyrion»"></a>
## Theme «cersei»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Template «cersei»"></a>
## Theme «joffrey»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Template «joffrey»"></a>
## Theme «drogo»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Template «drogo»"></a>
## Theme «bran»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Template «bran»"></a>
## Theme «arya»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Template «arya»"></a>
## Theme «mormont»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Template «mormont»"></a>
## Theme «tarly»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Template «tarly»"></a>
## Theme «daenerys»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Template «daenerys»"></a>
## Options and modules CinemaPress
Detailed information on all options and system modules can be found in the <a href="https://cinemapress.io/admin/admin.html">documentation</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

131
app.js Normal file
View File

@ -0,0 +1,131 @@
'use strict';
process.env['UV_THREADPOOL_SIZE'] = '128';
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '0';
process.env['CP_VER'] = new Date().getTime().toString();
/**
* Configuration dependencies.
*/
var config = require('./config/production/config');
/**
* Node dependencies.
*/
var path = require('path');
var lookup = {};
try {
var MaxMindReader = require('maxmind').Reader;
lookup = new MaxMindReader(
require('fs').readFileSync(
path.join(path.dirname(__filename), 'files', 'GeoLite2-Country.mmdb')
)
);
} catch (err) {
console.log('NOT FILE GeoLite2-Country.mmdb');
}
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var express = require('express');
var app = express();
/**
* Route dependencies.
*/
var proxy = require('./routes/proxy');
var iframe = require('./routes/iframe');
var player = require('./routes/player');
var episode = require('./routes/episode');
var robots = require('./routes/robots');
var rss = require('./routes/rss');
var admin = require('./routes/admin');
var website = require('./routes/website');
/**
* Middleware dependencies.
*/
var userinfo = require('./lib/CP_userinfo');
var loadavg = require('./lib/CP_loadavg');
var nginx = require('./lib/CP_nginx');
/**
* Port.
*/
var port =
process.env.PORT || parseInt(config.nginx.addr.split(':')[1]) || 3000;
/**
* Template engine.
*/
app.set('views', [
path.join(__dirname, 'themes', 'default', 'views'),
path.join(__dirname, 'themes', config.theme, 'views')
]);
app.set('view engine', 'ejs');
/**
* Middleware functions.
*/
app.enable('trust proxy');
app.use(cookieParser());
app.use(bodyParser.json({ limit: '64mb' }));
app.use(bodyParser.urlencoded({ limit: '64mb', extended: true }));
app.use(function(req, res, next) {
process.on('SIGINT', function() {
next({
status: 503,
message: 'Site under maintenance.'
});
setTimeout(function() {
process.exit();
}, 3000);
});
next();
});
app.use(nginx());
app.use(
/^(?:\/mobile-version|\/tv-version|)?/,
express.static(path.join(path.dirname(__filename), '/'))
);
app.use(userinfo(lookup));
app.use(/^(?:\/k\.1poster\.net|\/t\.1poster\.net)?/, proxy);
app.use(/^(?:\/mobile-version|\/tv-version|)?\/iframe\.player.*$/, player);
app.use(/^(?:\/mobile-version|\/tv-version|)?\/episode\.json.*$/, episode);
app.use(/^(?:\/mobile-version|\/tv-version|)?\/robots\.txt$/, robots);
app.use(/^(?:\/mobile-version|\/tv-version|)?\/iframe.*$/, iframe);
app.use(/^(?:\/mobile-version|\/tv-version|)?\/rss\.xml.*$/, rss);
app.use('/' + config.urls.admin, admin);
app.use(loadavg());
app.use(/^(?:\/mobile-version|\/tv-version|)?/, website);
app.use(function(err, req, res, next) {
err.status = err.status ? err.status : 404;
err.message = err.message ? err.message : 'Not Found';
return res.status(err.status).render('error', {
search: config.urls.search,
status: err.status,
message: err.message,
language: config.language
});
});
app.use(function(req, res) {
return res.status(404).render('error', {
search: config.urls.search,
status: 404,
message: 'Not Found',
language: config.language
});
});
app.listen(port);

1574
cinemapress.sh Normal file

File diff suppressed because it is too large Load Diff

0
config/binlog/.gitkeep Normal file
View File

0
config/comment/.gitkeep Normal file
View File

0
config/content/.gitkeep Normal file
View File

View File

@ -0,0 +1,3 @@
FROM crazymax/fail2ban:0.10.4
CMD ["fail2ban-server", "-f", "-x", "-v", "start"]
HEALTHCHECK --interval=10s --timeout=5s CMD fail2ban-client ping || exit 1

View File

@ -0,0 +1,94 @@
# /etc/fail2ban/action.d/blacklist.conf
# Fail2Ban Blacklist for Repeat Offenders (action.d)
#
# Author: Mitchell Krog <mitchellkrog@gmail.com>
# Version: 1.1
# GitHub: https://github.com/mitchellkrogza/Fail2Ban-Blacklist-JAIL-for-Repeat-Offenders-with-Perma-Extended-Banning
# Tested On: 0.8.13
# Server: Debian Jessie 8.1
# Firewall: IPTables
#
# Dependancies: requires blacklist.conf in /etc/fail2ban/filter.d folder
# requires jail settings called [blacklist]
# requires ip.blacklist file in /etc/fail2ban
# create with sudo touch /etc/fail2ban/ip.blacklist
#
# Drawbacks: Only works with IPTables
#
# Based on: the Recidive Jail from Fail2Ban
#
# This custom action requires a custom jail in your
# jail.local file for Fail2Ban
#
# Your jail file would be configured as follows
#
# [blacklist]
# enabled = true
# logpath = /var/log/fail2ban.*
# filter = blacklist
# banaction = blacklist
# bantime = 31536000 ; 1 year
# findtime = 31536000 ; 1 year
# maxretry = 10
#
[INCLUDES]
before = iptables-common.conf
[Definition]
# Option: actionstart
# Notes.: command executed once at the start of Fail2Ban.
# Values: CMD
#
actionstart = iptables -N f2b-<name>
iptables -A f2b-<name> -j RETURN
iptables -I <chain> -p <protocol> -j f2b-<name>
# Sort and Check for Duplicate IPs in our text file and Remove Them
sort -u /etc/fail2ban/ip.blacklist -o /etc/fail2ban/ip.blacklist
# Persistent banning of IPs reading from our ip.blacklist text file
# and adding them to IPTables on our jail startup command
cat /etc/fail2ban/ip.blacklist | while read IP; do iptables -I f2b-<name> 1 -s $IP -j DROP; done
# Option: actionstop
# Notes.: command executed once at the end of Fail2Ban
# Values: CMD
#
actionstop = iptables -D <chain> -p <protocol> -j f2b-<name>
iptables -F f2b-<name>
iptables -X f2b-<name>
# Option: actioncheck
# Notes.: command executed once before each actionban command
# Values: CMD
#
actioncheck = iptables -n -L <chain> | grep -q 'f2b-<name>[ \t]'
# Option: actionban
# Notes.: command executed when banning an IP. Take care that the
# command is executed with Fail2Ban user rights.
# Tags: See jail.conf(5) man page
# Values: CMD
#
actionban = iptables -I f2b-<name> 1 -s <ip> -j DROP
# Add the new IP ban to our ip.blacklist file
echo '<ip>' >> /etc/fail2ban/ip.blacklist
# I don't want reporting on any badboys service
# curl http://www.badips.com/add/badbots/<ip>/
# Option: actionunban
# Notes.: command executed when unbanning an IP. Take care that the
# command is executed with Fail2Ban user rights.
# Tags: See jail.conf(5) man page
# Values: CMD
#
actionunban = iptables -D f2b-<name> -s <ip> -j DROP
# Remove IP from our ip.blacklist file
sed -i -e '/<ip>/d' /etc/fail2ban/ip.blacklist
[Init]

View File

@ -0,0 +1,106 @@
# /etc/fail2ban/action.d/nginxrepeatoffender.conf
# Fail2Ban Blacklist for Repeat Offenders of Nginx (action.d)
#
# Author: Mitchell Krog <mitchellkrog@gmail.com>
# Version: 1.1
#
# Add on for Nginx Bad Bot blocker
# GitHub: https://github.com/mariusv/nginx-badbot-blocker
#
# Contributed by: Mitchell Krog
# Github: https://github.com/mitchellkrogza
#
# Tested On: Fail2Ban 0.9.3
# Server: Ubuntu 16.04
# Firewall: IPTables
#
# Dependancies: requires nginxrepeatoffender.conf in /etc/fail2ban/filter.d folder
# requires jail settings called [nginxrepeatoffender]
# requires nginx.repeatoffender file in /etc/fail2ban
# create with sudo touch /etc/fail2ban/nginx.repeatoffender
# chmod +x /etc/fail2ban/nginx.repeatoffender
#
# Drawbacks: Only works with IPTables
#
# Based on: The Recidive Jail from Fail2Ban
# This custom filter and action will monitor your Nginx logs and perma-ban
# any IP address that has generated far too many 403 or 444 errors over a 1 week period
# and ban them for 1 day. This works like a charm as an add-on for the Nginx Bad
# Bot Blocker which takes care of generating the 444 and 403 errors based on the extensive
# list of Bad Referers, Bots, Scrapers and IP addresses it covers.
# Thus custom Fail2Ban filter helps prevent the agressive one's from constantly filling
# up your Nginx server logs.
#
# This custom action requires a custom jail in your
# jail.local file for Fail2Ban
#
# Your jail file would be configured as follows
#
# [nginxrepeatoffender]
# enabled = true
# logpath = %(nginx_access_log)s
# filter = nginxrepeatoffender
# banaction = nginxrepeatoffender
# bantime = 86400 ; 1 day
# findtime = 604800 ; 1 week
# maxretry = 20
#
[INCLUDES]
before = iptables-common.conf
[Definition]
# Option: actionstart
# Notes.: command executed once at the start of Fail2Ban.
# Values: CMD
#
actionstart = <iptables> -N f2b-<name>
<iptables> -A f2b-<name> -j <returntype>
<iptables> -I <chain> -p <protocol> -j f2b-<name>
# Sort and Check for Duplicate IPs in our text file and Remove Them
sort -u /etc/fail2ban/nginx.repeatoffender -o /etc/fail2ban/nginx.repeatoffender
# Persistent banning of IPs reading from our nginx.repeatoffender text file
# and adding them to IPTables on our jail startup command
cat /etc/fail2ban/nginx.repeatoffender | while read IP; do iptables -I f2b-<name> 1 -s $IP -j DROP; done
# Option: actionstop
# Notes.: command executed once at the end of Fail2Ban
# Values: CMD
#
actionstop = <iptables> -D <chain> -p <protocol> -j f2b-<name>
<iptables> -F f2b-<name>
<iptables> -X f2b-<name>
# Option: actioncheck
# Notes.: command executed once before each actionban command
# Values: CMD
#
actioncheck = <iptables> -n -L <chain> | grep -q 'f2b-<name>[ \t]'
# Option: actionban
# Notes.: command executed when banning an IP. Take care that the
# command is executed with Fail2Ban user rights.
# Tags: See jail.conf(5) man page
# Values: CMD
#
actionban = <iptables> -I f2b-<name> 1 -s <ip> -j DROP
# Add the new IP ban to our nginx.repeatoffender file
echo '<ip>' >> /etc/fail2ban/nginx.repeatoffender
# Option: actionunban
# Notes.: command executed when unbanning an IP. Take care that the
# command is executed with Fail2Ban user rights.
# Tags: See jail.conf(5) man page
# Values: CMD
#
actionunban = <iptables> -D f2b-<name> -s <ip> -j DROP
# Remove IP from our nginx.repeatoffender file
sed -i -e '/<ip>/d' /etc/fail2ban/nginx.repeatoffender
[Init]

View File

@ -0,0 +1,68 @@
# /etc/fail2ban/filter.d/blacklist.conf
# Fail2Ban Blacklist for Repeat Offenders (filter.d)
#
# Author: Mitchell Krog <mitchellkrog@gmail.com>
# Version: 1.1
# GitHub: https://github.com/mitchellkrogza/Fail2Ban-Blacklist-JAIL-for-Repeat-Offenders-with-Perma-Extended-Banning
# Tested On: Fail2Ban 0.91
# Server: Ubuntu 16.04
# Firewall: IPTables
#
# Dependancies: requires blacklist.conf in /etc/fail2ban/action.d folder
# requires jail settings called [blacklist]
# requires ip.blacklist file in /etc/fail2ban
# create with sudo touch /etc/fail2ban/ip.blacklist
#
# Drawbacks: Only works with IPTables
#
# Based on: the Recidive Jail from Fail2Ban
#
# This filter based on the recidive filter, monitors the fail2ban log file,
# and enables you to add long time bans for ip addresses that get banned
# by fail2ban multiple times.
#
# Reasons to use this: Block persistent attackers for very long periods of time.
# Controlled through a simple ip.blocklist text file
#
# Only works with IPTables
# Your settings for this custom jail [blacklist] in jail.conf should have higher
# 'findtime' and 'bantime' parameters set to a higher value than all the other jails.
#
# This custom action requires a custom jail in your
# jail.local file for Fail2Ban
#
# Your jail file would be configured as follows
#
# [blacklist]
# enabled = true
# logpath = /var/log/fail2ban.*
# filter = blacklist
# banaction = blacklist
# bantime = 31536000 ; 1 year
# findtime = 31536000 ; 1 year
# maxretry = 10
#
[INCLUDES]
# Read common prefixes. If any customizations available -- read them from
# common.local
before = common.conf
[Definition]
_daemon = fail2ban\.actions\s*
# The name of the jail that this filter is used for. In jail.conf, name the
# jail using this filter 'blacklist', or change this line!
_jailname = blacklist
failregex = ^(%(__prefix_line)s| %(_daemon)s%(__pid_re)s?:\s+)NOTICE\s+\[(?!%(_jailname)s\])(?:.*)\]\s+Ban\s+<HOST>\s*$
ignoreregex =
[Init]
journalmatch = _SYSTEMD_UNIT=fail2ban.service PRIORITY=5
# Author: Mitchell Krog

View File

@ -0,0 +1,4 @@
[Definition]
failregex = ^<HOST> .* ".*\\x.*" .*$
ignoreregex =

View File

@ -0,0 +1,66 @@
# /etc/fail2ban/filter.d/nginxrepeatoffender.conf
# Fail2Ban Blacklist for Repeat Offenders of Nginx (filter.d)
#
# Author: Mitchell Krog <mitchellkrog@gmail.com>
# Version: 1.1
#
# Add on for Nginx Bad Bot blocker
# GitHub: https://github.com/mariusv/nginx-badbot-blocker
#
# Contributed by: Mitchell Krog
# Github: https://github.com/mitchellkrogza
#
# Tested On: Fail2Ban 0.9.3
# Server: Ubuntu 16.04
# Firewall: IPTables
#
# Dependancies: requires nginxrepeatoffender.conf in /etc/fail2ban/filter.d folder
# requires jail settings called [nginxrepeatoffender]
# requires nginx.repeatoffender file in /etc/fail2ban
# create with sudo touch /etc/fail2ban/nginx.repeatoffender
# chmod +x /etc/fail2ban/nginx.repeatoffender
#
# Drawbacks: Only works with IPTables
#
# Based on: The Recidive Jail from Fail2Ban
# This custom filter and action will monitor your Nginx logs and perma-ban
# any IP address that has generated far too many 403 or 444 errors over a 1 week period
# and ban them for 1 day. This works like a charm as an add-on for the Nginx Bad
# Bot Blocker which takes care of generating the 444 and 403 errors based on the extensive
# list of Bad Referers, Bots, Scrapers and IP addresses it covers.
# Thus custom Fail2Ban filter helps prevent the agressive one's from constantly filling
# up your Nginx server logs.
#
# This custom action requires a custom jail in your
# jail.local file for Fail2Ban
#
# Your jail file would be configured as follows
#
# [nginxrepeatoffender]
# enabled = true
# logpath = %(nginx_access_log)s
# filter = nginxrepeatoffender
# banaction = nginxrepeatoffender
# bantime = 86400 ; 1 day
# findtime = 604800 ; 1 week
# maxretry = 20
#
[Definition]
_daemon = fail2ban\.actions\s*
# The name of the jail that this filter is used for. In jail.conf, name the
# jail using this filter 'nginxrepeatoffender', or change this line!
_jailname = nginxrepeatoffender
failregex = ^<HOST> \- \S+ \[\] \"(GET|POST|HEAD) .* \S+\" (?:403|444) .+$
ignoreregex =
[Init]
journalmatch = _SYSTEMD_UNIT=fail2ban.service PRIORITY=5
# Author: Mitchell Krog

View File

@ -0,0 +1,298 @@
# Fail2Ban Web Exploits Filter
# Author & Copyright: Mitchell Krog - mitchellkrog@gmail.com
# REPO: https://github.com/mitchellkrogza/Fail2Ban.WebExploits
# V0.1.27
# Last Updated: Tue May 8 11:08:42 SAST 2018
[Definition]
failregex = ^<HOST> -.*(GET|POST|HEAD).*(/.git/config)
^<HOST> -.*(GET|POST|HEAD).*(/:8880/)
^<HOST> -.*(GET|POST|HEAD).*(/addons/theme/stv1/_static/image/favicon.ico)
^<HOST> -.*(GET|POST|HEAD).*(/addons/theme/stv1/_static/ts2/layout.css)
^<HOST> -.*(GET|POST|HEAD).*(/addons/theme/stv2/_static/ts2/layout.css)
^<HOST> -.*(GET|POST|HEAD).*(/Admin/Common/HelpLinks.xml)
^<HOST> -.*(GET|POST|HEAD).*(/admin-console)
^<HOST> -.*(GET|POST|HEAD).*(/admin/inc/xml.xslt)
^<HOST> -.*(GET|POST|HEAD).*(/admin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/administrator/components/com_xcloner-backupandrestore/index2.php)
^<HOST> -.*(GET|POST|HEAD).*(/administrator/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/administrator/manifests/files/joomla.xml)
^<HOST> -.*(GET|POST|HEAD).*(/admin/mysql2/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/admin/mysql/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/admin/phpmyadmin2/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/admin/phpmyadmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/admin/phpMyAdmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/admin/pma/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/admin/PMA/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/admin/SouthidcEditor/ButtonImage/standard/componentmenu.gif)
^<HOST> -.*(GET|POST|HEAD).*(/admin/SouthidcEditor/Dialog/dialog.js)
^<HOST> -.*(GET|POST|HEAD).*(/admin/SouthidcEditor/ewebeditor.asp)
^<HOST> -.*(GET|POST|HEAD).*(/API/DW/Dwplugin/SystemLabel/SiteConfig.htm)
^<HOST> -.*(GET|POST|HEAD).*(/API/DW/Dwplugin/TemplateManage/login_site.htm)
^<HOST> -.*(GET|POST|HEAD).*(/API/DW/Dwplugin/TemplateManage/manage_site.htm)
^<HOST> -.*(GET|POST|HEAD).*(/API/DW/Dwplugin/TemplateManage/save_template.htm)
^<HOST> -.*(GET|POST|HEAD).*(/API/DW/Dwplugin/ThirdPartyTags/SiteFactory.xml)
^<HOST> -.*(GET|POST|HEAD).*(/app/home/skins/default/style.css)
^<HOST> -.*(GET|POST|HEAD).*(/app/js/source/wcmlib/WCMConstants.js)
^<HOST> -.*(GET|POST|HEAD).*(/apple-app-site-association)
^<HOST> -.*(GET|POST|HEAD).*(/app/Tpl/fanwe_1/js/)
^<HOST> -.*(GET|POST|HEAD).*(/_asterisk/)
^<HOST> -.*(GET|POST|HEAD).*(/bencandy.php)
^<HOST> -.*(GET|POST|HEAD).*(/blog/administrator/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/cgi-bin/php)
^<HOST> -.*(GET|POST|HEAD).*(/cgi-bin/php5)
^<HOST> -.*(GET|POST|HEAD).*(/cgi/common.cgi)
^<HOST> -.*(GET|POST|HEAD).*(/CGI/Execute)
^<HOST> -.*(GET|POST|HEAD).*(/check.proxyradar.com/azenv.php)
^<HOST> -.*(GET|POST|HEAD).*(/ckeditor/ckfinder/ckfinder.html)
^<HOST> -.*(GET|POST|HEAD).*(/ckeditor/ckfinder/install.txt)
^<HOST> -.*(GET|POST|HEAD).*(/ckfinder/ckfinder.html)
^<HOST> -.*(GET|POST|HEAD).*(/ckfinder/install.txt)
^<HOST> -.*(GET|POST|HEAD).*(/ckupload.php)
^<HOST> -.*(GET|POST|HEAD).*(/claroline/phpMyAdmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/clases.gone.php)
^<HOST> -.*(GET|POST|HEAD).*(/cms/administrator)
^<HOST> -.*(GET|POST|HEAD).*(/command.php)
^<HOST> -.*(GET|POST|HEAD).*(/components/com_adsmanager/js/fullnoconflict.js)
^<HOST> -.*(GET|POST|HEAD).*(/components/com_b2jcontact/css/b2jcontact.css)
^<HOST> -.*(GET|POST|HEAD).*(/components/com_b2jcontact/router.php)
^<HOST> -.*(GET|POST|HEAD).*(/components/com_foxcontact/js/jtext.js)
^<HOST> -.*(GET|POST|HEAD).*(/components/com_sexycontactform/assets/js/index.html)
^<HOST> -.*(GET|POST|HEAD).*(/console/auth/reg_newuser.jsp)
^<HOST> -.*(GET|POST|HEAD).*(/console/include/not_login.htm)
^<HOST> -.*(GET|POST|HEAD).*(/console/js/CTRSRequestParam.js)
^<HOST> -.*(GET|POST|HEAD).*(/console/js/CWCMDialogHead.js)
^<HOST> -.*(GET|POST|HEAD).*(/currentsetting.htm)
^<HOST> -.*(GET|POST|HEAD).*(/CuteSoft_Client/CuteEditor/Help/default.htm)
^<HOST> -.*(GET|POST|HEAD).*(/CuteSoft_Client/CuteEditor/ImageEditor/listfiles.aspx)
^<HOST> -.*(GET|POST|HEAD).*(/CuteSoft_Client/CuteEditor/Images/log.gif)
^<HOST> -.*(GET|POST|HEAD).*(/data/admin/ver.txt)
^<HOST> -.*(GET|POST|HEAD).*(/datacenter/downloadApp/showDownload.do)
^<HOST> -.*(GET|POST|HEAD).*(/db/)
^<HOST> -.*(GET|POST|HEAD).*(/dbadmin/)
^<HOST> -.*(GET|POST|HEAD).*(/dbadmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/db/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/deptWebsiteAction.do)
^<HOST> -.*(GET|POST|HEAD).*(/eams/static/scripts/grade/course/input.js)
^<HOST> -.*(GET|POST|HEAD).*(/editor/js/fckeditorcode_ie.js)
^<HOST> -.*(GET|POST|HEAD).*(/examples/file-manager.html)
^<HOST> -.*(GET|POST|HEAD).*(/examples/index.html)
^<HOST> -.*(GET|POST|HEAD).*(/fckeditor/editor/dtd/fck_dtd_test.html)
^<HOST> -.*(GET|POST|HEAD).*(/fckeditor/editor/js/fckeditorcode_ie.js)
^<HOST> -.*(GET|POST|HEAD).*(/FCK/editor/js/fckeditorcode_ie.js)
^<HOST> -.*(GET|POST|HEAD).*(/fckeditor/license.txt)
^<HOST> -.*(GET|POST|HEAD).*(/getcfg.php)
^<HOST> -.*(GET|POST|HEAD).*(/get_password.php)
^<HOST> -.*(GET|POST|HEAD).*(/.git/info/)
^<HOST> -.*(GET|POST|HEAD).*(/Hello.World)
^<HOST> -.*(GET|POST|HEAD).*(/hndUnblock.cgi)
^<HOST> -.*(GET|POST|HEAD).*(/images/login9/login_33.jpg)
^<HOST> -.*(GET|POST|HEAD).*(/include/dialog/config.php)
^<HOST> -.*(GET|POST|HEAD).*(/include/install_ocx.aspx)
^<HOST> -.*(GET|POST|HEAD).*(/includes/css/styles-2014-06-25.css)
^<HOST> -.*(GET|POST|HEAD).*(/includes/facebox/facebox.css)
^<HOST> -.*(GET|POST|HEAD).*(/index.action)
^<HOST> -.*(GET|POST|HEAD).*(/ip_js.php)
^<HOST> -.*(GET|POST|HEAD).*(/issmall/)
^<HOST> -.*(GET|POST|HEAD).*(/jenkins/script)
^<HOST> -.*(GET|POST|HEAD).*(/jm-ajax/upload_file/)
^<HOST> -.*(GET|POST|HEAD).*(/jmx-console)
^<HOST> -.*(GET|POST|HEAD).*(/Joomla/administrator)
^<HOST> -.*(GET|POST|HEAD).*(/joomla/administrator/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/js/tools.js)
^<HOST> -.*(GET|POST|HEAD).*(/libraries/sfn.php)
^<HOST> -.*(GET|POST|HEAD).*(/license.txt)
^<HOST> -.*(GET|POST|HEAD).*(/License.txt)
^<HOST> -.*(GET|POST|HEAD).*(login.destroy.session)
^<HOST> -.*(GET|POST|HEAD).*(/login/Jeecms.do)
^<HOST> -.*(GET|POST|HEAD).*(/logo_img.php)
^<HOST> -.*(GET|POST|HEAD).*(/maintlogin.jsp)
^<HOST> -.*(GET|POST|HEAD).*(/manager/html)
^<HOST> -.*(GET|POST|HEAD).*(/manager/status)
^<HOST> -.*(GET|POST|HEAD).*(/master/login.aspx)
^<HOST> -.*(GET|POST|HEAD).*(/media/com_hikashop/js/hikashop.js)
^<HOST> -.*(GET|POST|HEAD).*(/misc/drupal.js)
^<HOST> -.*(GET|POST|HEAD).*(/modules/attributewizardpro/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/modules/columnadverts/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/modules/fieldvmegamenu/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/modules/homepageadvertise2/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/modules/homepageadvertise/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/modules/index.html)
^<HOST> -.*(GET|POST|HEAD).*(/modules/mod_simplefileuploadv1.3/elements/udd.php)
^<HOST> -.*(GET|POST|HEAD).*(/modules/pk_flexmenu/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/modules/pk_vertflexmenu/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/modules/wdoptionpanel/config.xml)
^<HOST> -.*(GET|POST|HEAD).*(/msd)
^<HOST> -.*(GET|POST|HEAD).*(/msd1.24.4)
^<HOST> -.*(GET|POST|HEAD).*(/msd1.24stable)
^<HOST> -.*(GET|POST|HEAD).*(mstshash=NCRACK_USER)
^<HOST> -.*(GET|POST|HEAD).*(/muieblackcat)
^<HOST> -.*(GET|POST|HEAD).*(/myadmin2/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/myadmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/myadmin/scripts/setup.php)
^<HOST> -.*(GET|POST|HEAD).*(/MyAdmin/scripts/setup.php)
^<HOST> -.*(GET|POST|HEAD).*(/mysql-admin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/mysqladmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/mysqldumper)
^<HOST> -.*(GET|POST|HEAD).*(/mySqlDumper)
^<HOST> -.*(GET|POST|HEAD).*(/MySQLDumper)
^<HOST> -.*(GET|POST|HEAD).*(/mysql/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpadmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpma/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin/)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin0/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin1/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin2/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpMyadmin_bak/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpMyAdmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin-old/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin/phpmyadmin/index.ph)
^<HOST> -.*(GET|POST|HEAD).*(/phpMyAdmin/phpMyAdmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpmyadmin/scripts/setup.php)
^<HOST> -.*(GET|POST|HEAD).*(/phpMyAdmin/scripts/setup.php)
^<HOST> -.*(GET|POST|HEAD).*(/plugins/anchor/anchor.js)
^<HOST> -.*(GET|POST|HEAD).*(/plugins/filemanager/filemanager/js)
^<HOST> -.*(GET|POST|HEAD).*(/plus/download.php)
^<HOST> -.*(GET|POST|HEAD).*(/plus/heightsearch.php)
^<HOST> -.*(GET|POST|HEAD).*(/plus/rssmap.html)
^<HOST> -.*(GET|POST|HEAD).*(/plus/sitemap.html)
^<HOST> -.*(GET|POST|HEAD).*(/pma/)
^<HOST> -.*(GET|POST|HEAD).*(/PMA/)
^<HOST> -.*(GET|POST|HEAD).*(/PMA2/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/pma/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/PMA/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/pmamy2/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/pmamy/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/pma-old/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/pma/scripts/setup.php)
^<HOST> -.*(GET|POST|HEAD).*(/pmd/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/privacy.txt)
^<HOST> -.*(GET|POST|HEAD).*(/resources/style/images/login/btn.png)
^<HOST> -.*(GET|POST|HEAD).*(/Scripts/jquery/maticsoft.jquery.min.js)
^<HOST> -.*(GET|POST|HEAD).*(/script/valid_formdata.js)
^<HOST> -.*(GET|POST|HEAD).*(/siteserver/login.aspx)
^<HOST> -.*(GET|POST|HEAD).*(/siteserver/upgrade/default.aspx)
^<HOST> -.*(GET|POST|HEAD).*(soap:Envelope)
^<HOST> -.*(GET|POST|HEAD).*(/stalker_portal/server/adm/tv-channels/iptv-list-json)
^<HOST> -.*(GET|POST|HEAD).*(/stalker_portal/server/adm/users/users-list-json)
^<HOST> -.*(GET|POST|HEAD).*(/stssys.htm)
^<HOST> -.*(GET|POST|HEAD).*(/sys.cache.php)
^<HOST> -.*(GET|POST|HEAD).*(/system/assets/jquery/jquery-2.x.min.js)
^<HOST> -.*(GET|POST|HEAD).*(/template/1/bluewise/_files/jspxcms.css)
^<HOST> -.*(GET|POST|HEAD).*(/templates/jsn_glass_pro/ext/hikashop/jsn_ext_hikashop.css)
^<HOST> -.*(GET|POST|HEAD).*(/test_404_page/)
^<HOST> -.*(GET|POST|HEAD).*(/test_for_404/)
^<HOST> -.*(GET|POST|HEAD).*(:Test Wuz Here)
^<HOST> -.*(GET|POST|HEAD).*(/tmUnblock.cgi)
^<HOST> -.*(GET|POST|HEAD).*(/tools/phpMyAdmin/index.ph)
^<HOST> -.*(GET|POST|HEAD).*(/typo3/phpmyadmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/uc_server/control/admin/db.php)
^<HOST> -.*(GET|POST|HEAD).*(/update.php)
^<HOST> -.*(GET|POST|HEAD).*(/upload/bank-icons/)
^<HOST> -.*(GET|POST|HEAD).*(/UserCenter/css/admin/bgimg/admin_all_bg.png)
^<HOST> -.*(GET|POST|HEAD).*(/.user.ini)
^<HOST> -.*(GET|POST|HEAD).*(/user/register?element_parents=account)
^<HOST> -.*(GET|POST|HEAD).*(/user/themes/antimatter/js/antimatter.js)
^<HOST> -.*(GET|POST|HEAD).*(/user/themes/antimatter/js/modernizr.custom.71422.js)
^<HOST> -.*(GET|POST|HEAD).*(/user/themes/antimatter/js/slidebars.min.js)
^<HOST> -.*(GET|POST|HEAD).*(/w00tw00t.at.blackhats.romanian.anti-sec)
^<HOST> -.*(GET|POST|HEAD).*(/w00tw00t.at.ISC.SANS.DFind)
^<HOST> -.*(GET|POST|HEAD).*(/webbuilder/script/locale/wb-lang-zh_CN.js)
^<HOST> -.*(GET|POST|HEAD).*(/web-console)
^<HOST> -.*(GET|POST|HEAD).*(/webdav)
^<HOST> -.*(GET|POST|HEAD).*(/web/phpMyAdmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/.well-known/apple-app-site-association)
^<HOST> -.*(GET|POST|HEAD).*(/.well-known/assetlinks.json)
^<HOST> -.*(GET|POST|HEAD).*(/.well-known/security.txt)
^<HOST> -.*(GET|POST|HEAD).*(/whir_system/login.aspx)
^<HOST> -.*(GET|POST|HEAD).*(/whir_system/module/security/login.aspx)
^<HOST> -.*(GET|POST|HEAD).*(/wls-wsat/CoordinatorPortType)
^<HOST> -.*(GET|POST|HEAD).*(/wpbase/url.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/accesspress-anonymous-post-pro/js/admin-extra.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/advanced-ajax-page-loader/reload_code.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/another-wordpress-classifieds-plugin/AWPCP.po)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/apikey/apikey.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/apikey/debug-wp.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/boxit/upload.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/cacheformwp.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/cardoza-facebook-like-box/admin_cardozafacebook.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/category-grid-view-gallery/cat_grid.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/cherry-plugin/admin/css/cherry-admin-plugin.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/cherry-plugin/admin/js/cherry-admin-plugin.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/cimy-user-extra-fields/README_OFFICIAL.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/contact-form-7/license.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/custom-content-type-manager/index.html)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/delete-all-comments/backup/bp.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/delete-all-comments/delete-all-comments.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/dzs-videogallery/admin/admin_global.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/dzs-zoomsounds/admin/upload.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/font-uploader/fontFunctions/fu_script.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/font-uploader/font-uploader-free.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/formidable/css/frm_fonts.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/front-end-upload/destination.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/front-file-manager/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/gallery-plugin/css/stylesheet.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/gallery-plugin/gallery-plugin.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/gallery-slider/register.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/gravityforms/css/preview.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/jetpack/class.jetpack-ixr-client.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/jssor-slider/assets/css/system-message.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/mac-dock-gallery/bugslist.tx)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/mac-dock-gallery/bugslist.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/magic-fields/MF_Constant.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/mailpress/mp-includes/action.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/mailpress/mp-includes/js/mp_thickbox.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/nextgen-gallery/changelog.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/ninja-forms/ninja_forms.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/nmedia-user-file-uploader/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/php-event-calendar/js/file-uploader/app.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/real3d-flipbook/js/share.min.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/resume-submissions-job-postings/installer.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/showbiz/css/post_settings.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/simple-dropbox-upload-form/index.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/user-avatar/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/user-meta/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/userpro/css/userpro-editor.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/website-contact-form-with-file-upload/js/nm-global.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/woocommerce-catalog-enquiry/assets/frontend/css/frontend.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/woocommerce-catalog-enquiry/assets/frontend/js/chosen.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/woocommerce-product-addon/js/nm-global.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-copysafe-pdf/lib/uploadify/uploadify.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-e-commerce/license.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-editor/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-filemanager/fm.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-handy-lightbox/begin.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-homepage-slideshow/functions.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-image-news-slider/functions.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wpmarketplace/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-property/action_hooks.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-ps.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wpstorecart/lgpl.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/js/admin.js)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wp-symposium/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/plugins/wysija-newsletters/readme.txt)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/themes/deep-blue/megaframe/megapanel/inc/functions.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/themes/directorypress/thumbs/67-43-2013-05-14517625.pdf)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/themes/kahuna/resources/images/headers/lunch.jpg)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/themes/twentyeleven/404.php)
^<HOST> -.*(GET|POST|HEAD).*(/wp-content/themes/u-design/style.css)
^<HOST> -.*(GET|POST|HEAD).*(/wp-includes/wlwmanifest.xml)
^<HOST> -.*(GET|POST|HEAD).*(/wp-login.php)
^<HOST> -.*(GET|POST|HEAD).*(/www/phpMyAdmin/index.php)
^<HOST> -.*(GET|POST|HEAD).*(\x00Cookie:)
^<HOST> -.*(GET|POST|HEAD).*(\x22cache_name_function)
^<HOST> -.*(GET|POST|HEAD).*(\x22JDatabaseDriverMysqli)
^<HOST> -.*(GET|POST|HEAD).*(\x22JSimplepieFactory)
^<HOST> -.*(GET|POST|HEAD).*(\x22sanitize)
^<HOST> -.*(GET|POST|HEAD).*(\x22SimplePie)
^<HOST> -.*(GET|POST|HEAD).*(\x5C0disconnectHandlers)
^<HOST> -.*(GET|POST|HEAD).*(/xampp/phpmyadmin/index.php)
ignoreregex =

View File

View File

@ -0,0 +1,42 @@
[DEFAULT]
port = 0:65535
filter = %(__name__)s
[blacklist]
enabled = true
logpath = /var/log/fail2ban.*
filter = blacklist
banaction = blacklist
bantime = 31536000 ; 1 year
findtime = 31536000 ; 1 year
maxretry = 10
[ssh]
enabled = true
[ssh-ddos]
enabled = true
[nginx-http-auth]
enabled = true
[proftpd]
enabled = true
[nginxrepeatoffender]
enabled = true
port = http,https
logpath = /var/log/nginx/access*.log
filter = nginxrepeatoffender
banaction = nginxrepeatoffender
bantime = 86400
findtime = 86400
maxretry = 10
[nginx-x00]
enabled = true
port = http,https
filter = nginx-x00
logpath = /var/log/nginx/access*.log
bantime = 86400
findtime = 86400
maxretry = 2
[webexploits]
enabled = true
port = http,https
filter = webexploits
logpath = /var/log/nginx/access*.log
maxretry = 3

View File

@ -0,0 +1,13 @@
FROM pagespeed/nginx-pagespeed:1.13.35.2-alpine3.8-ngx1.15
RUN mkdir -p \
/var/log/nginx \
/etc/nginx \
/var/run
WORKDIR /etc/nginx
COPY . /etc/nginx
RUN rm -rf \
/etc/nginx/conf.d/nginx.conf \
/etc/nginx/cloudflare.ini \
/etc/nginx/Dockerfile
EXPOSE 80 443
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]

View File

@ -0,0 +1,92 @@
# EDIT THIS FILE AS YOU LIKE TO ADD OR REMOVE ANY BAD WORDS YOU WANT TO SCAN FOR ###
# VERSION INFORMATION #
#----------------------
# Version: V4.2019.11
# Updated: 2019-07-05
#----------------------
# VERSION INFORMATION #
##############################################################################
# _ __ _ #
# / |/ /__ _(_)__ __ __ #
# / / _ `/ / _ \\ \ / #
# /_/|_/\_, /_/_//_/_\_\ #
# __/___/ __ ___ __ ___ __ __ #
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
# #
##############################################################################
# This is merely an example and gets auto included as since Version 2.2017.07 introduced on 2017-04-20
# This file must exist on your system or Nginx will fail a reload due to a missing file
# For all intensive purpose you can delete everything inside this file and leave it
# completely blank if you do not want your Nginx Blocker to include scanning for bad words within urls or referrer string
# Only add one entry per line
# -------------------------------
# !!! WARNING WARNING WARNING !!!
# -------------------------------
# ---------------------------------------
# PLEASE BE VERY CAREFUL HOW YOU USE THIS
# ---------------------------------------
# Here is an example of how one supposed bad word can cause your whole site to go down.
# An issue was logged where the users own domain name was specialisteparquet.com
# Because this list contained the word "cialis" it was detected within his domain name causing
# his entire site to go down and not server any assets.
# That one entry would even cause any site containing a word like "specialist" anywhere in any
# of their sites pages to cause them to be blocked and whitelisting your own domain name in the
# whitelist-domains.conf file will not even bypass this, SO BE CAREFUL PLEASE
# Think very carefully before you add any word here
# -----------------------------------------------------------------------------------------
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
# -----------------------------------------------------------------------------------------
# BY DEFAULT ALL THE EXAMPLES BELOW ARE COMMENTED OUT AND HENCE NOT ENABLED
# As you can see in the examples below the word "adultgalls" is entered with a preceding (?:\b) and an ending (?:\b)
# this makes it now "(?:\b)adultgalls(?:\b)". It is crucial to use the word boundaries regex formatting.
# ---------
# EXAMPLES:
# ---------
# "~*(?:\b)adultgalls(?:\b)" 1;
# "~*(?:\b)amateurxpass(?:\b)" 1;
# "~*(?:\b)bigblackbooty(?:\b)" 1;
# "~*(?:\b)blacktits(?:\b)" 1;
# "~*(?:\b)cookie\-law\-enforcement(?:\b)" 1;
# "~*(?:\b)free\-share\-buttons(?:\b)" 1;
# "~*(?:\b)free\-social\-buttons(?:\b)" 1;
# "~*(?:\b)fuck\-paid\-share\-buttons(?:\b)" 1;
# "~*(?:\b)ilovevitaly(?:\b)" 1;
# "~*(?:\b)law\-enforcement\-bot(?:\b)" 1;
# "~*(?:\b)law\-enforcement\-check(?:\b)" 1;
# "~*(?:\b)share\-buttons\-for\-free(?:\b)" 1;
# "~*(?:\b)webfuck(?:\b)" 1;
# "~*(?:\b)xxxrus(?:\b)" 1;
# "~*(?:\b)zeroredirect(?:\b)" 1;
# "~*(?:\b|)x22(?:\b)" 1; (in this string if your own domain name was sex22.com it would be blocked)
# Here is a list of unsanitary words used in referrer strings - used in various injection attacks
# THE RULES BELOW ARE ENABLED BY DEFAULT
# You can disable this default list by switching the values to 0
"~*(?:\b|)mb_ereg_replace(?:\b|)" 1;
# -----------
# PLEASE NOTE
# -----------
# If you whitelist your own domain in whitelist-domains.conf and your own domain is passed in the referrer string with an attack string it will NOT be blocked.
# --------
# EXAMPLE:
# --------
# This string "http://yourwebsite.com/?s=/index/%5Cthink%5Capp/invokefunction&function=call_user_func_array&vars[0]=file_put_contents&vars[1][]=gqopu.php&vars[1][]=<?php mb_ereg_replace('.*',@$_REQUEST[_], '', 'e');?>$"
# contains the above 'mb_ereg_replace" attack string
# If your domain is whitelisted in whitelist-domains.conf this string will NOT be detected

View File

@ -0,0 +1,103 @@
# EDIT THIS FILE AS YOU LIKE TO ADD OR REMOVE ANY BAD IP ADDRESSES OR IP RANGES YOU WANT TO BLOCK ###
# VERSION INFORMATION #
#----------------------
# Version: V4.2019.09
# Updated: 2019-06-28
#----------------------
# VERSION INFORMATION #
##############################################################################
# _ __ _ #
# / |/ /__ _(_)__ __ __ #
# / / _ `/ / _ \\ \ / #
# /_/|_/\_, /_/_//_/_\_\ #
# __/___/ __ ___ __ ___ __ __ #
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
# #
##############################################################################
# This is merely an example and gets auto included as since Version 2.2017.07 introduced on 2017-04-20
# This file must exist on your system or Nginx will fail a reload due to a missing file
# For all intensive purpose you can delete everything inside this file and leave it
# completely blank if you do not want your Nginx Blocker to do any blocking of bad IP's
# Add IP's you want to blacklist below this line, one per line as per example
# Nginx [warn] notices may be reported when you try reload Nginx if you happen to include an
# IP here that may already be included by the blocker with it's daily updates
# NOTE: It is only an Nginx Warning message and will not cause Nginx to fail a reload.
# 111.111.111.111 1;
# -------------------------------------------
# Cyveillance / Qwest Communications / PSINET
# -------------------------------------------
# I am extensively researching this subject - appears to be US government involved
# and also appears to be used by all sorts of law enforcement agencies. For one they
# do not obey robots.txt and continually disguise their User-Agent strings. Time will
# tell if this is all correct or not.
# For now see - https://en.wikipedia.org/wiki/Cyveillance
# IMPORTANT UPDATE ON Cyveillance / Qwest Communications !!!
# **********************************************************
# I have done a lot of research on Cyveillance now and through monitoring my logs I know
# for sure what companies are using them and what they are actually looking for.
# My research has led me to understand that Cyveillance services are used by hundreds
# of companies to help them dicsover theft of copyrighted materials like images, movies
# music and other materials. I personally believe a lot of block lists who originally recommended
# blocking Cyveillance have done so to protect their torrent or p2p sites from being scanned.
# I personally have now unblocked them as image theft is a big problem of mine but if you
# do want to block Cyveillance you can simply modify the entries in the block below from "0" to "1"
# Getty Images is one such company who appears to use Cyveillance to help monitor for copyright theft.
# If you really do want to block them change all the 0's below to 1.
# Use this section at YOUR OWN RISK, you may block some legitimate networks but after many hours of
# Research this is now the completely updated list of all IP ranges IPV4 and IPV6 owned Qwest Communications
# PSINET and Cyveillance
# IMPORTANT NOTE: If you really want to keeps bot and things out of certain parts of your web site
# Rather implement a comlex Google Re-Captcha to reach sections of your sites and for people to be able
# to access download links. Google Re-Captcha with images is too complex for any bot.
38.0.0.0/8 0;
206.2.138.0/23 0;
208.71.164.0/22 0;
4.17.135.32/27 0;
63.144.0.0/13 0;
65.112.0.0/12 0;
65.192.0.0/11 0;
65.213.208.128/27 0;
65.222.176.96/27 0;
65.222.185.72/29 0;
# ---------------
# Berkely Scanner
# ---------------
# The Berkeley University has a scanner testing all over the web sending a complex
# payload an expecting a reply from servers who are infected or who just respond to such
# a payload. The payload looks similar to this
# "$\xC9\xE1\xDC\x9B+\x8F\x1C\xE71\x99\xA8\xDB6\x1E#\xBB\x19#Hx\xA7\xFD\x0F9-"
# and is sometime VERY long. You may have noticed this in your logs.
# I support research projects and all my servers respond with an error to this type of
# string so I do not block them but if you want to block just uncomment the following line
# or email them asking them not to scan your server. They do respond.
# Visit http://169.229.3.91/ for more info
# If you really do want to block them change all the 0 below to 1.
169.229.3.91 0;
# ------------
# MY BLACKLIST
# ------------
# 111.111.111.111 1;
# NOTE: If you blacklist your own IP by mistake whitelist-ips.conf will completely over-ride this.
# whitelist-ips.conf will always WIN and over-ride anything here and in the blocker

View File

@ -0,0 +1,79 @@
# EDIT THIS FILE AS YOU LIKE TO BLACKLIST OR WHITELIST ANY BAD USER-AGENT STRINGS YOU WANT TO SCAN FOR
# ****************************************************************************************************
# THIS IS BOTH YOUR WHITELIST AND BLACKLIST FOR USER-AGENTS
# VERSION INFORMATION #
#----------------------
# Version: V4.2019.08
# Updated: 2019-07-05
#----------------------
# VERSION INFORMATION #
##############################################################################
# _ __ _ #
# / |/ /__ _(_)__ __ __ #
# / / _ `/ / _ \\ \ / #
# /_/|_/\_, /_/_//_/_\_\ #
# __/___/ __ ___ __ ___ __ __ #
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
# #
##############################################################################
# Add One Entry Per Line - List all the extra bad User-Agents you want to permanently block or whitelist.
# This is for User-Agents that are not included in the main list of the bot blocker
# This file must exist on your system or Nginx will fail a reload due to a missing file
# This allows you finer control of keeping certain bots blocked and automatic updates will
# Never be able to remove this custom list of yours
# Please note this include file loads first before any of the already whitelisted User-Agents
# in the bad bot blocker. By loading first in line it over-rides anything below it so for instance
# if you want to block Baidu, Google or Bing for any reason you add them to this file which loads
# first and takes precedence over anything below it. This now allows even finer control over the
# bad bot blocker. Enjoy !!!
# Even though this file is called blacklist-user-agents, as mentioned it can also be used to whitelist user agents
# By adding them below and setting the 3; to 0; this will permanently whitelist the User-Agent.
# Make sure any words that contain special characters are escaped and include word boundaries as per the Regex examples below.
# Example the User-Agent name "someverybaduseragentname1" is entered as "(?:\b)someverybaduseragentname1(?:\b)"
# Example the User-Agent name "some-very-bad-useragentname2" is entered as "(?:\b)some\-very\-bad\-useragentname1(?:\b)"
# the "(?:\b)" and "(?:\b)" are word boundaries which prevents partial matching and false positives.
# BY DEFAULT ALL THE EXAMPLES BELOW ARE COMMENTED OUT AND HENCE NOT ENABLED
# ---------------------
# WHITELISTING EXAMPLES
# ---------------------
# "~*(?:\b)someverygooduseragentname1(?:\b)" 0;
# "~*(?:\b)someverygooduseragentname2(?:\b)" 0;
# "~*(?:\b)some\-very\-good\-useragentname2(?:\b)" 0;
# ---------------------
# BLACKLISTING EXAMPLES
# ---------------------
# "~*(?:\b)someverybaduseragentname1(?:\b)" 3;
# "~*(?:\b)someverybaduseragentname2(?:\b)" 3;
# "~*(?:\b)some\-very\-bad\-useragentname2(?:\b)" 3;
# Here are some default things I block on my own server, these appear in various types of injection attacks
# You can disable them if you have problems or don't agree by switching thir value to 0 or moving them into the whitelist section first and then making their value 0
# ------------
# MY WHITELIST
# ------------
# ------------
# MY BLACKLIST
# ------------
"~*(?:\b)x22(?:\b)" 3;
"~*(?:\b){|}(?:\b)" 3;
"~*(?:\b)mb_ereg_replace(?:\b)" 3;
"~*(?:\b)file_put_contents(?:\b)" 3;

View File

@ -0,0 +1,84 @@
# Author/Copyright: Mitchell Krog <mitchellkrog@gmail.com> - https://github.com/mitchellkrogza/
# VERSION INFORMATION #
#----------------------
# Version: V4.2019.04
# Updated: 2019-06-28
#----------------------
# VERSION INFORMATION #
##############################################################################
# _ __ _ #
# / |/ /__ _(_)__ __ __ #
# / / _ `/ / _ \\ \ / #
# /_/|_/\_, /_/_//_/_\_\ #
# __/___/ __ ___ __ ___ __ __ #
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
# #
##############################################################################
# Include this in a vhost file within a server {} block using and include statement like below
# Place it near the top of your server {} block before any location / statements and it will block everywhere on your site.
# server {
# #Config stuff here
# include /etc/nginx/bots.d/blockbots.conf
# include /etc/nginx/bots.d/ddos.conf
# #Other config stuff here
# }
#######################################################################
# -----------------------------------
# OVER-RIDE BLOCKER / SUPER WHITELIST
# -----------------------------------
# In this block you can allow any IP address specified here to over-ride any bad bot or IP blocking of the blocker.
# This is useful for testing or allowing only specific IP's (ie. Internal ranges) to never be blocked.
# More IP's can be added example > "(127.0.0.1)|(192.168.0.1)|(192.168.1.1)"
# If you even blacklisted 127.0.0.1 or your own IP by giving it a value of 1 in any of the includes, this will over-ride that block.
# UNCOMMENT THE NEXT 4 LINES TO ACTIVATE THE SUPER WHITELIST
#if ($remote_addr ~ "(127.0.0.1)|(192.168.0.1)" ) {
#set $bad_bot '0'; #Uncommenting this line will disable bad_bots functionality for specified IP(s)
#set $validate_client '0'; #Uncommenting this line will disable validate_client ip blocking functionality for specified IP(s)
#}
# --------------
# BLOCK BAD BOTS
# --------------
# Section bot_1 Unused
#limit_conn bot1_connlimit 100;
#limit_req zone=bot1_reqlimitip burst=50;
limit_conn bot2_connlimit 10;
limit_req zone=bot2_reqlimitip burst=10;
if ($bad_bot = '3') {
return 444;
}
# ---------------------
# BLOCK BAD REFER WORDS
# ---------------------
if ($bad_words) {
return 444;
}
# ------------------
# BLOCK BAD REFERERS
# ------------------
if ($bad_referer) {
return 444;
}
# -----------------------------
# BLOCK IP ADDRESSES and RANGES
# -----------------------------
if ($validate_client) {
return 444;
}

View File

@ -0,0 +1,60 @@
# EDIT THIS FILE AS YOU LIKE TO ADD ANY ADDITIONAL BAD REFERRER DOMAINS YOU WANT TO SCAN FOR ###
# THIS IS BOTH YOUR WHITELIST AND BLACKLIST FOR REFERRERS and DOMAINS
# VERSION INFORMATION #
#----------------------
# Version: V4.2019.09
# Updated: 2019-07-05
#----------------------
# VERSION INFORMATION #
##############################################################################
# _ __ _ #
# / |/ /__ _(_)__ __ __ #
# / / _ `/ / _ \\ \ / #
# /_/|_/\_, /_/_//_/_\_\ #
# __/___/ __ ___ __ ___ __ __ #
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
# #
##############################################################################
# This is merely an example and gets auto included as since Version 2.2017.07 introduced on 2017-04-20
# This file must exist on your system or Nginx will fail a reload due to a missing file
# Only add one entry per line
# Make sure any domains have dots and special characters escaped as per the Regex examples below.
# For example some-veryvery-randomwebsitename-thatdoesnotexist4.com should be entered as
# some\-veryvery\-randomwebsitename\-thatdoesnotexist4\.com
# *****************************************************************************************
# PLEASE MAKE SURE that you use word regex boundaries to avoid false positive detection !!!
# *****************************************************************************************
# As you can see in the examples below the domain "someveryveryrandomwebsitenamethatdoesnotexist1\.com"
# is entered with a preceding (?:\b) and an ending (?:\b)
# this makes it now "(?:\b)someveryveryrandomwebsitenamethatdoesnotexist1\.com(?:\b)".
# It is crucial to use the word boundaries regex formatting.
# ---------
# EXAMPLES:
# ---------
# BY DEFAULT ALL THE EXAMPLES BELOW ARE COMMENTED OUT AND HENCE NOT ENABLED
# "~*(?:\b)someveryveryrandomwebsitenamethatdoesnotexist1\.com(?:\b)" 1;
# "~*(?:\b)someveryveryrandomwebsitenamethatdoesnotexist2\.com(?:\b)" 1;
# "~*(?:\b)someveryveryrandomwebsitenamethatdoesnotexist3\.com(?:\b)" 1;
# "~*(?:\b)some\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com(?:\b)" 1;
# ------------
# MY WHITELIST
# ------------
# "~*(?:\b)mywebsite\.com(?:\b)" 0;
# ------------
# MY BLACKLIST
# ------------
# "~*(?:\b)someotherwebsite\.com(?:\b)" 1;

View File

@ -0,0 +1,36 @@
#######################################################################
### VERSION INFORMATION #
###################################################
### Version: V4.2019.02
### Updated: 2019-06-24
###################################################
### VERSION INFORMATION ##
##############################################################################
# _ __ _ #
# / |/ /__ _(_)__ __ __ #
# / / _ `/ / _ \\ \ / #
# /_/|_/\_, /_/_//_/_\_\ #
# __/___/ __ ___ __ ___ __ __ #
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
# #
##############################################################################
# Author: Mitchell Krog <mitchellkrog@gmail.com> - https://github.com/mitchellkrogza/
# Include this in a vhost file within a server {} block using and include statement like below
# server {
# #Config stuff here
# include /etc/nginx/bots.d/blockbots.conf
# include /etc/nginx/bots.d/ddos.conf
# #Other config stuff here
# }
#######################################################################
limit_conn addr 200;
limit_req zone=flood burst=200 nodelay;

View File

@ -0,0 +1,2 @@
# Add One Entry Per Line - List all the domains of the web sites you run on your Nginx to spare them from referrer checking
"~*example.com" 0;

View File

@ -0,0 +1,2 @@
# Add One Entry Per Line - Can Include Ranges like 127.0.0.1/32
127.0.0.1 0;

View File

@ -0,0 +1,2 @@
dns_cloudflare_email = ""
dns_cloudflare_api_key = ""

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,188 @@
upstream example.com {
server 127.0.0.1:3000 max_fails=0 fail_timeout=30s;
keepalive 8;
}
server {
listen 80;
listen [::]:80;
#ssl listen 443 ssl;
#ssl listen [::]:443 ssl;
#ssl ssl_certificate /home/example.com/config/production/nginx/ssl.d/live/example.com/fullchain.pem;
#ssl ssl_certificate_key /home/example.com/config/production/nginx/ssl.d/live/example.com/privkey.pem;
#ssl ssl_dhparam /home/example.com/config/production/nginx/ssl.d/live/example.com/dhparam.pem;
#ssl ssl_session_cache shared:SSL:10m;
#ssl ssl_session_timeout 1d;
#ssl ssl_stapling on;
#ssl ssl_stapling_verify on;
#ssl ssl_prefer_server_ciphers on;
#ssl ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#ssl ssl_ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS;
#ssl resolver 1.1.1.1;
#ssl resolver_timeout 10s;
#ssl add_header X-Content-Type-Options "nosniff";
#ssl add_header Strict-Transport-Security "max-age=31536000";
root /home/example.com;
server_name example.com *.example.com;
access_log /var/log/nginx/access_example.com.log;
include /etc/nginx/bots.d/ddos.conf;
include /etc/nginx/bots.d/blockbots.conf;
keepalive_timeout 10;
client_max_body_size 64m;
if ( $request_method !~ ^(GET|POST)$ ) {
return 444;
}
if ( $request_uri ~ "/index.html" ) {
rewrite ^(.*)/ $1/ permanent;
}
location ~ "\.pagespeed\.([a-z]\.)?[a-z]{2}\.[^.]{10}\.[^.]+" {add_header "" "";}
location ~ "^/pagespeed_static/" { }
location ~ "^/ngx_pagespeed_beacon$" { }
location ~* ^/(files|themes/.*/public|favicon.*|android-chrome.*|apple-touch-icon\.png|mstile-150x150\.png|browserconfig\.xml|safari-pinned-tab\.svg|site\.webmanifest) {
expires 30d;
access_log off;
autoindex off;
add_header Cache-Control "public, no-transform";
proxy_cache_valid 404 500 502 503 504 1m;
proxy_cache_valid any 30d;
proxy_max_temp_file_size 0;
}
location ~* ^/images/ {
rewrite "^\/images\/(poster|picture)\/(medium|small)\/.*img([0-9]+).*\.jpg$" "/$1/$2/$3.jpg" break;
root /var/local/images;
expires 30d;
access_log off;
autoindex off;
add_header Cache-Control "public, no-transform";
proxy_cache_valid 404 500 502 503 504 1m;
proxy_cache_valid any 30d;
try_files $uri /poster/no-poster.jpg /poster/small/629951.jpg =404;
}
location ~* ^/balancer/ {
rewrite "^\/balancer\/([0-9]+)\.mp4" "/$1.mp4" break;
root /var/local/balancer;
expires 30d;
access_log off;
autoindex off;
add_header Cache-Control "public, no-transform";
proxy_cache_valid 404 500 502 503 504 1m;
proxy_cache_valid any 30d;
limit_rate_after 1m;
limit_rate 150k;
try_files $uri /bbb.mp4 =404;
}
location ~* ^/(doc|Dockerfile|config|modules|lib|routes|core|app\.js|package\.json|package-lock\.json|process\.json|restart\.server|LICENSE\.txt|README\.md|.*\.sh|.*\.conf|.*\.jade|.*\.ejs)($|\/) {
return 404;
}
location / {
if ($host ~* "^(m\.example.com)$") {
rewrite ^(.*)$ /mobile-version$1 break;
}
if ($host ~* "^(tv\.example.com)$") {
rewrite ^(.*)$ /tv-version$1 break;
}
#if ($http_cookie ~* ".+" ) {
# set $do_not_cache 1;
#}
expires 1h;
limit_req zone=cinemapress burst=50;
proxy_max_temp_file_size 0;
proxy_next_upstream error timeout http_500 http_502 http_503 http_504;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_pass http://example.com;
}
location ~* ^/(episode\.json|iframe\.player|rss\.xml) {
if ($host ~* "^(m\.example.com)$") {
rewrite ^(.*)$ /mobile-version$1 break;
}
if ($host ~* "^(tv\.example.com)$") {
rewrite ^(.*)$ /tv-version$1 break;
}
#if ($http_cookie ~* ".+" ) {
# set $do_not_cache 1;
#}
access_log off;
autoindex off;
expires 1h;
limit_req zone=cinemapress burst=50;
proxy_max_temp_file_size 0;
proxy_next_upstream error timeout http_500 http_502 http_503 http_504;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_pass http://example.com;
}
location ~* ^/admin {
auth_basic "Login Admin page!";
auth_basic_user_file /home/example.com/config/production/nginx/pass.d/example.com.pass;
proxy_max_temp_file_size 0;
proxy_next_upstream error timeout http_500 http_502 http_503 http_504;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_pass http://example.com;
}
error_page 500 502 503 504 520 /50x.html;
location = /50x.html {
root /etc/nginx/html;
access_log off;
autoindex off;
internal;
}
error_page 404 /404.html;
location = /404.html {
root /etc/nginx/html;
access_log off;
autoindex off;
internal;
}
error_page 403 /403.html;
location = /403.html {
root /etc/nginx/html;
access_log off;
autoindex off;
internal;
}
error_page 401 /401.html;
location = /401.html {
root /etc/nginx/html;
access_log off;
autoindex off;
internal;
}
}

View File

@ -0,0 +1,84 @@
# Localhost
set_real_ip_from 127.0.0.1;
# DDoS-Guard range IPs list
set_real_ip_from 186.2.160.0/24;
# CloudFlare range IPs list
set_real_ip_from 103.21.244.0/22;
set_real_ip_from 103.22.200.0/22;
set_real_ip_from 103.31.4.0/22;
set_real_ip_from 104.16.0.0/12;
set_real_ip_from 108.162.192.0/18;
set_real_ip_from 131.0.72.0/22;
set_real_ip_from 141.101.64.0/18;
set_real_ip_from 162.158.0.0/15;
set_real_ip_from 172.64.0.0/13;
set_real_ip_from 173.245.48.0/20;
set_real_ip_from 188.114.96.0/20;
set_real_ip_from 190.93.240.0/20;
set_real_ip_from 197.234.240.0/22;
set_real_ip_from 198.41.128.0/17;
set_real_ip_from 2400:cb00::/32;
set_real_ip_from 2606:4700::/32;
set_real_ip_from 2803:f800::/32;
set_real_ip_from 2405:b500::/32;
set_real_ip_from 2405:8100::/32;
set_real_ip_from 2c0f:f248::/32;
set_real_ip_from 2a06:98c0::/29;
# CloudFront range IPs list
set_real_ip_from 13.32.0.0/15;
set_real_ip_from 13.35.0.0/16;
set_real_ip_from 13.54.63.128/26;
set_real_ip_from 13.59.250.0/26;
set_real_ip_from 13.113.203.0/24;
set_real_ip_from 13.124.199.0/24;
set_real_ip_from 13.228.69.0/24;
set_real_ip_from 18.216.170.128/25;
set_real_ip_from 34.195.252.0/24;
set_real_ip_from 34.216.51.0/25;
set_real_ip_from 34.226.14.0/24;
set_real_ip_from 34.232.163.208/29;
set_real_ip_from 35.158.136.0/24;
set_real_ip_from 35.162.63.192/26;
set_real_ip_from 35.167.191.128/26;
set_real_ip_from 52.15.127.128/26;
set_real_ip_from 52.46.0.0/18;
set_real_ip_from 52.47.139.0/24;
set_real_ip_from 52.52.191.128/26;
set_real_ip_from 52.56.127.0/25;
set_real_ip_from 52.57.254.0/24;
set_real_ip_from 52.66.194.128/26;
set_real_ip_from 52.78.247.128/26;
set_real_ip_from 52.84.0.0/15;
set_real_ip_from 52.124.128.0/17;
set_real_ip_from 52.199.127.192/26;
set_real_ip_from 52.212.248.0/26;
set_real_ip_from 52.220.191.0/26;
set_real_ip_from 52.222.128.0/17;
set_real_ip_from 54.182.0.0/16;
set_real_ip_from 54.192.0.0/16;
set_real_ip_from 54.230.0.0/16;
set_real_ip_from 54.233.255.128/26;
set_real_ip_from 54.239.128.0/18;
set_real_ip_from 54.239.192.0/19;
set_real_ip_from 54.240.128.0/18;
set_real_ip_from 64.252.64.0/18;
set_real_ip_from 70.132.0.0/18;
set_real_ip_from 71.152.0.0/17;
set_real_ip_from 143.204.0.0/16;
set_real_ip_from 204.246.164.0/22;
set_real_ip_from 204.246.168.0/22;
set_real_ip_from 204.246.174.0/23;
set_real_ip_from 204.246.176.0/20;
set_real_ip_from 205.251.192.0/19;
set_real_ip_from 205.251.249.0/24;
set_real_ip_from 205.251.250.0/23;
set_real_ip_from 205.251.252.0/23;
set_real_ip_from 205.251.254.0/24;
set_real_ip_from 216.137.32.0/19;
set_real_ip_from 2600:9000::/28;
real_ip_header X-Forwarded-For;
real_ip_recursive on;

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8]> <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if gt IE 9]> <html class="no-js"> <![endif]-->
<!--[if !IE]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>401 - CinemaPress</title>
<link rel='shortcut icon' type='image/x-icon' href='/themes/default/public/admin/favicon.ico'>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="/themes/default/public/admin/css/bootstrap.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/font-awesome.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/all.min.css">
<script src="/themes/default/public/admin/js/all.min.js"></script>
<style>
html{height:100%;min-height:100%;margin:0;padding:0}body{position:relative;height:100%;min-height:100%;margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:20px}#error-container{height:100%;min-height:100%;width:100%;background-image: url("/themes/default/public/admin/images/404.jpg");background-size:cover;} #error-box{height:100%;min-height:100%;width:380px;padding:60px 40px 40px} header h1{width:100%;float:left;font-size:80px;font-weight:700;line-height:80px;margin:5px 0} header h2{width:100%;float:left;font-size:16px;font-weight:400;margin:0} .error-content{float:left;width:100%;margin:30px 0} .breadcrumb{float:left;width:100%;margin:30px 0 0} .breadcrumb a:hover{text-decoration:underline}
</style>
</head>
<body>
<div id="error-container" class="clearfix">
<div id="error-box">
<header>
<h1>401</h1>
<h2>Error</h2>
<ul class="breadcrumb">
<li><a href="/">Home</a></li>
<li><a href="javascript:void(0)" onclick="window.history.back();">Back</a></li>
</ul>
</header>
<div class="error-content">
<form action="/search" method="get">
<div class="input-group">
<input class="form-control" placeholder="Search" type="text" name="q">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><span class="fa fa-search"></span> Search</button>
</span>
</div>
</form>
</div>
<div class="error-content">
You have not logged in. The username or password you entered is incorrect. Please try again.
</div>
</div>
<div id="particles-top" style="left:380px;z-index:1000"></div>
</div>
<script src="/themes/default/public/admin/js/particles.min.js"></script>
<script>
particlesJS("particles-top", {"particles":{"number":{"value":160,"density":{"enable":true,"value_area":800}},"color":{"value":"#ffffff"},"shape":{"type":"circle","stroke":{"width":0,"color":"#000000"},"polygon":{"nb_sides":5},"image":{"src":"img/github.svg","width":100,"height":100}},"opacity":{"value":1,"random":true,"anim":{"enable":true,"speed":1,"opacity_min":0,"sync":false}},"size":{"value":3,"random":true,"anim":{"enable":false,"speed":4,"size_min":0.3,"sync":false}},"line_linked":{"enable":false,"distance":150,"color":"#ffffff","opacity":0.4,"width":1},"move":{"enable":true,"speed":1,"direction":"none","random":true,"straight":false,"out_mode":"out","bounce":false,"attract":{"enable":false,"rotateX":600,"rotateY":600}}},"interactivity":{"detect_on":"canvas","events":{"onhover":{"enable":false,"mode":"bubble"},"onclick":{"enable":false,"mode":"repulse"},"resize":true},"modes":{"grab":{"distance":400,"line_linked":{"enable":false,"opacity":1}},"bubble":{"distance":250,"size":0,"duration":2,"opacity":0,"speed":3},"repulse":{"distance":400,"duration":0.4},"push":{"particles_nb":4},"remove":{"particles_nb":2}}},"retina_detect":true});
</script>
</body>
</html>

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8]> <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if gt IE 9]> <html class="no-js"> <![endif]-->
<!--[if !IE]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>403 - CinemaPress</title>
<link rel='shortcut icon' type='image/x-icon' href='/themes/default/public/admin/favicon.ico'>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="/themes/default/public/admin/css/bootstrap.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/font-awesome.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/all.min.css">
<script src="/themes/default/public/admin/js/all.min.js"></script>
<style>
html{height:100%;min-height:100%;margin:0;padding:0}body{position:relative;height:100%;min-height:100%;margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:20px}#error-container{height:100%;min-height:100%;width:100%;background-image: url("/themes/default/public/admin/images/404.jpg");background-size:cover;} #error-box{height:100%;min-height:100%;width:380px;padding:60px 40px 40px} header h1{width:100%;float:left;font-size:80px;font-weight:700;line-height:80px;margin:5px 0} header h2{width:100%;float:left;font-size:16px;font-weight:400;margin:0} .error-content{float:left;width:100%;margin:30px 0} .breadcrumb{float:left;width:100%;margin:30px 0 0} .breadcrumb a:hover{text-decoration:underline}
</style>
</head>
<body>
<div id="error-container" class="clearfix">
<div id="error-box">
<header>
<h1>403</h1>
<h2>Error</h2>
<ul class="breadcrumb">
<li><a href="/">Home</a></li>
<li><a href="javascript:void(0)" onclick="window.history.back();">Back</a></li>
</ul>
</header>
<div class="error-content">
<form action="/search" method="get">
<div class="input-group">
<input class="form-control" placeholder="Search" type="text" name="q">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><span class="fa fa-search"></span> Search</button>
</span>
</div>
</form>
</div>
<div class="error-content">
Access to this page is denied. You are redirected to a page for which you do not have sufficient access rights.
</div>
</div>
<div id="particles-top" style="left:380px;z-index:1000"></div>
</div>
<script src="/themes/default/public/admin/js/particles.min.js"></script>
<script>
particlesJS("particles-top", {"particles":{"number":{"value":160,"density":{"enable":true,"value_area":800}},"color":{"value":"#ffffff"},"shape":{"type":"circle","stroke":{"width":0,"color":"#000000"},"polygon":{"nb_sides":5},"image":{"src":"img/github.svg","width":100,"height":100}},"opacity":{"value":1,"random":true,"anim":{"enable":true,"speed":1,"opacity_min":0,"sync":false}},"size":{"value":3,"random":true,"anim":{"enable":false,"speed":4,"size_min":0.3,"sync":false}},"line_linked":{"enable":false,"distance":150,"color":"#ffffff","opacity":0.4,"width":1},"move":{"enable":true,"speed":1,"direction":"none","random":true,"straight":false,"out_mode":"out","bounce":false,"attract":{"enable":false,"rotateX":600,"rotateY":600}}},"interactivity":{"detect_on":"canvas","events":{"onhover":{"enable":false,"mode":"bubble"},"onclick":{"enable":false,"mode":"repulse"},"resize":true},"modes":{"grab":{"distance":400,"line_linked":{"enable":false,"opacity":1}},"bubble":{"distance":250,"size":0,"duration":2,"opacity":0,"speed":3},"repulse":{"distance":400,"duration":0.4},"push":{"particles_nb":4},"remove":{"particles_nb":2}}},"retina_detect":true});
</script>
</body>
</html>

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8]> <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if gt IE 9]> <html class="no-js"> <![endif]-->
<!--[if !IE]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>404 - CinemaPress</title>
<link rel='shortcut icon' type='image/x-icon' href='/themes/default/public/admin/favicon.ico'>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="/themes/default/public/admin/css/bootstrap.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/font-awesome.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/all.min.css">
<script src="/themes/default/public/admin/js/all.min.js"></script>
<style>
html{height:100%;min-height:100%;margin:0;padding:0}body{position:relative;height:100%;min-height:100%;margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:20px}#error-container{height:100%;min-height:100%;width:100%;background-image: url("/themes/default/public/admin/images/404.jpg");background-size:cover;} #error-box{height:100%;min-height:100%;width:380px;padding:60px 40px 40px} header h1{width:100%;float:left;font-size:80px;font-weight:700;line-height:80px;margin:5px 0} header h2{width:100%;float:left;font-size:16px;font-weight:400;margin:0} .error-content{float:left;width:100%;margin:30px 0} .breadcrumb{float:left;width:100%;margin:30px 0 0} .breadcrumb a:hover{text-decoration:underline}
</style>
</head>
<body>
<div id="error-container" class="clearfix">
<div id="error-box">
<header>
<h1>404</h1>
<h2>Error</h2>
<ul class="breadcrumb">
<li><a href="/">Home</a></li>
<li><a href="javascript:void(0)" onclick="window.history.back();">Back</a></li>
</ul>
</header>
<div class="error-content">
<form action="/search" method="get">
<div class="input-group">
<input class="form-control" placeholder="Search" type="text" name="q">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><span class="fa fa-search"></span> Search</button>
</span>
</div>
</form>
</div>
<div class="error-content">
This page is not on the site. Perhaps you made a mistake in the URL or this is an internal error of the site that the administrator already knows about and is taking steps to eliminate it.
</div>
</div>
<div id="particles-top" style="left:380px;z-index:1000"></div>
</div>
<script src="/themes/default/public/admin/js/particles.min.js"></script>
<script>
particlesJS("particles-top", {"particles":{"number":{"value":160,"density":{"enable":true,"value_area":800}},"color":{"value":"#ffffff"},"shape":{"type":"circle","stroke":{"width":0,"color":"#000000"},"polygon":{"nb_sides":5},"image":{"src":"img/github.svg","width":100,"height":100}},"opacity":{"value":1,"random":true,"anim":{"enable":true,"speed":1,"opacity_min":0,"sync":false}},"size":{"value":3,"random":true,"anim":{"enable":false,"speed":4,"size_min":0.3,"sync":false}},"line_linked":{"enable":false,"distance":150,"color":"#ffffff","opacity":0.4,"width":1},"move":{"enable":true,"speed":1,"direction":"none","random":true,"straight":false,"out_mode":"out","bounce":false,"attract":{"enable":false,"rotateX":600,"rotateY":600}}},"interactivity":{"detect_on":"canvas","events":{"onhover":{"enable":false,"mode":"bubble"},"onclick":{"enable":false,"mode":"repulse"},"resize":true},"modes":{"grab":{"distance":400,"line_linked":{"enable":false,"opacity":1}},"bubble":{"distance":250,"size":0,"duration":2,"opacity":0,"speed":3},"repulse":{"distance":400,"duration":0.4},"push":{"particles_nb":4},"remove":{"particles_nb":2}}},"retina_detect":true});
</script>
</body>
</html>

View File

@ -0,0 +1,65 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8]> <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if gt IE 9]> <html class="no-js"> <![endif]-->
<!--[if !IE]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>500 - CinemaPress</title>
<link rel='shortcut icon' type='image/x-icon' href='/themes/default/public/admin/favicon.ico'>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="/themes/default/public/admin/css/bootstrap.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/font-awesome.min.css">
<link rel="stylesheet" href="/themes/default/public/admin/css/all.min.css">
<script src="/themes/default/public/admin/js/all.min.js"></script>
<style>
html{height:100%;min-height:100%;margin:0;padding:0}body{position:relative;height:100%;min-height:100%;margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;font-size:13px;line-height:20px}#error-container{height:100%;min-height:100%;width:100%;background-image: url("/themes/default/public/admin/images/404.jpg");background-size:cover;} #error-box{height:100%;min-height:100%;width:380px;padding:60px 40px 40px} header h1{width:100%;float:left;font-size:80px;font-weight:700;line-height:80px;margin:5px 0} header h2{width:100%;float:left;font-size:16px;font-weight:400;margin:0} .error-content{float:left;width:100%;margin:30px 0} .breadcrumb{float:left;width:100%;margin:30px 0 0} .breadcrumb a:hover{text-decoration:underline}
</style>
</head>
<body>
<div id="error-container" class="clearfix">
<div id="error-box">
<header>
<h1>500</h1>
<h2>Error</h2>
<ul class="breadcrumb">
<li><a href="/">Home</a></li>
<li><a href="javascript:void(0)" onclick="window.history.back();">Back</a></li>
</ul>
</header>
<div class="error-content">
<form action="/search" method="get">
<div class="input-group">
<input class="form-control" placeholder="Search" type="text" name="q">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><span class="fa fa-search"></span> Search</button>
</span>
</div>
</form>
</div>
<div class="error-content">
Internal Server Error. The site administrator is already taking action to resolve it. Please visit this page a little later.
</div>
</div>
<div id="particles-top" style="left:380px;z-index:1000"></div>
</div>
<script src="/themes/default/public/admin/js/particles.min.js"></script>
<script>
particlesJS("particles-top", {"particles":{"number":{"value":160,"density":{"enable":true,"value_area":800}},"color":{"value":"#ffffff"},"shape":{"type":"circle","stroke":{"width":0,"color":"#000000"},"polygon":{"nb_sides":5},"image":{"src":"img/github.svg","width":100,"height":100}},"opacity":{"value":1,"random":true,"anim":{"enable":true,"speed":1,"opacity_min":0,"sync":false}},"size":{"value":3,"random":true,"anim":{"enable":false,"speed":4,"size_min":0.3,"sync":false}},"line_linked":{"enable":false,"distance":150,"color":"#ffffff","opacity":0.4,"width":1},"move":{"enable":true,"speed":1,"direction":"none","random":true,"straight":false,"out_mode":"out","bounce":false,"attract":{"enable":false,"rotateX":600,"rotateY":600}}},"interactivity":{"detect_on":"canvas","events":{"onhover":{"enable":false,"mode":"bubble"},"onclick":{"enable":false,"mode":"repulse"},"resize":true},"modes":{"grab":{"distance":400,"line_linked":{"enable":false,"opacity":1}},"bubble":{"distance":250,"size":0,"duration":2,"opacity":0,"speed":3},"repulse":{"distance":400,"duration":0.4},"push":{"particles_nb":4},"remove":{"particles_nb":2}}},"retina_detect":true});
</script>
</body>
</html>

View File

@ -0,0 +1,54 @@
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
server_names_hash_bucket_size 256;
server_names_hash_max_size 4096;
variables_hash_max_size 4096;
variables_hash_bucket_size 4096;
limit_req_zone $binary_remote_addr zone=flood:50m rate=90r/s;
limit_conn_zone $binary_remote_addr zone=addr:50m;
limit_req_zone $binary_remote_addr zone=cinemapress:10m rate=30r/s;
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
gzip on;
gzip_disable "msie6";
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss image/svg+xml text/javascript application/javascript;
gzip_vary on;
gzip_proxied any;
gzip_http_version 1.1;
pagespeed on;
pagespeed FileCachePath /var/ngx_pagespeed_cache;
pagespeed EnableFilters collapse_whitespace,remove_comments,dedup_inlined_images;
pagespeed DisableFilters rewrite_css,add_head;
pagespeed ReportUnloadTime off;
pagespeed Statistics off;
pagespeed StatisticsLogging off;
pagespeed Disallow "*/admin*";
include /etc/nginx/conf.d/*.conf;
include /home/*/config/production/nginx/conf.d/nginx.conf;
}

View File

View File

View File

@ -0,0 +1,421 @@
source config_example_com
{
type = xmlpipe2
xmlpipe_command = cat /etc/sphinx/source.xml
}
source xmlpipe2_example_com : config_example_com
{
xmlpipe_attr_uint = kp_id
xmlpipe_attr_uint = rating
xmlpipe_attr_uint = vote
xmlpipe_attr_uint = kp_rating
xmlpipe_attr_uint = kp_vote
xmlpipe_attr_uint = imdb_rating
xmlpipe_attr_uint = imdb_vote
xmlpipe_attr_uint = premiere
xmlpipe_attr_uint = type
xmlpipe_attr_string = poster
xmlpipe_attr_string = title_ru
xmlpipe_attr_string = title_en
xmlpipe_attr_string = title_page
xmlpipe_attr_string = description
xmlpipe_attr_string = description_short
xmlpipe_attr_string = pictures
xmlpipe_attr_json = custom
xmlpipe_field_string = query_id
xmlpipe_field_string = search
xmlpipe_field_string = year
xmlpipe_field_string = country
xmlpipe_field_string = director
xmlpipe_field_string = genre
xmlpipe_field_string = actor
xmlpipe_field_string = player
xmlpipe_field_string = translate
xmlpipe_field_string = quality
xmlpipe_field_string = all_movies
}
index xmlpipe2_example_com
{
source = xmlpipe2_example_com
path = /var/lib/sphinx/data/movies_example_com
ondisk_attrs = pool
morphology = stem_enru, stem_ar
html_strip = 1
min_word_len = 2
expand_keywords = 1
blend_chars = +
index_exact_words = 1
charset_table = U+FF10..U+FF19->0..9, 0..9, U+FF41..U+FF5A->a..z, U+FF21..U+FF3A->a..z, A..Z->a..z, a..z, _, \
U+410..U+42F->U+430..U+44F, U+401->U+435, U+451->U+435, U+430..U+44F, \
U+0149, U+017F, U+0138, U+00DF, U+00FF, U+00C0..U+00D6->U+00E0..U+00F6, \
U+00E0..U+00F6, U+00D8..U+00DE->U+00F8..U+00FE, U+00F8..U+00FE, U+0100->U+0101, U+0101, \
U+0102->U+0103, U+0103, U+0104->U+0105, U+0105, U+0106->U+0107, U+0107, U+0108->U+0109, \
U+0109, U+010A->U+010B, U+010B, U+010C->U+010D, U+010D, U+010E->U+010F, U+010F, \
U+0110->U+0111, U+0111, U+0112->U+0113, U+0113, U+0114->U+0115, U+0115, U+0116->U+0117, \
U+0117, U+0118->U+0119, U+0119, U+011A->U+011B, U+011B, U+011C->U+011D, U+011D, \
U+011E->U+011F, U+011F, U+0130->U+0131, U+0131, U+0132->U+0133, U+0133, U+0134->U+0135, \
U+0135, U+0136->U+0137, U+0137, U+0139->U+013A, U+013A, U+013B->U+013C, U+013C, \
U+013D->U+013E, U+013E, U+013F->U+0140, U+0140, U+0141->U+0142, U+0142, U+0143->U+0144, \
U+0144, U+0145->U+0146, U+0146, U+0147->U+0148, U+0148, U+014A->U+014B, U+014B, \
U+014C->U+014D, U+014D, U+014E->U+014F, U+014F, U+0150->U+0151, U+0151, U+0152->U+0153, \
U+0153, U+0154->U+0155, U+0155, U+0156->U+0157, U+0157, U+0158->U+0159, U+0159, \
U+015A->U+015B, U+015B, U+015C->U+015D, U+015D, U+015E->U+015F, U+015F, U+0160->U+0161, \
U+0161, U+0162->U+0163, U+0163, U+0164->U+0165, U+0165, U+0166->U+0167, U+0167, \
U+0168->U+0169, U+0169, U+016A->U+016B, U+016B, U+016C->U+016D, U+016D, U+016E->U+016F, \
U+016F, U+0170->U+0171, U+0171, U+0172->U+0173, U+0173, U+0174->U+0175, U+0175, \
U+0176->U+0177, U+0177, U+0178->U+00FF, U+00FF, U+0179->U+017A, U+017A, U+017B->U+017C, \
U+017C, U+017D->U+017E, U+017E, U+0410..U+042F->U+0430..U+044F, U+0430..U+044F, \
U+05D0..U+05EA, U+0531..U+0556->U+0561..U+0586, U+0561..U+0587, U+0621..U+063A, U+01B9, \
U+01BF, U+0640..U+064A, U+0660..U+0669, U+066E, U+066F, U+0671..U+06D3, U+06F0..U+06FF, \
U+0904..U+0939, U+0958..U+095F, U+0960..U+0963, U+0966..U+096F, U+097B..U+097F, \
U+0985..U+09B9, U+09CE, U+09DC..U+09E3, U+09E6..U+09EF, U+0A05..U+0A39, U+0A59..U+0A5E, \
U+0A66..U+0A6F, U+0A85..U+0AB9, U+0AE0..U+0AE3, U+0AE6..U+0AEF, U+0B05..U+0B39, \
U+0B5C..U+0B61, U+0B66..U+0B6F, U+0B71, U+0B85..U+0BB9, U+0BE6..U+0BF2, U+0C05..U+0C39, \
U+0C66..U+0C6F, U+0C85..U+0CB9, U+0CDE..U+0CE3, U+0CE6..U+0CEF, U+0D05..U+0D39, U+0D60, \
U+0D61, U+0D66..U+0D6F, U+0D85..U+0DC6, U+1900..U+1938, U+1946..U+194F, U+A800..U+A805, \
U+A807..U+A822, U+0386->U+03B1, U+03AC->U+03B1, U+0388->U+03B5, U+03AD->U+03B5, \
U+0389->U+03B7, U+03AE->U+03B7, U+038A->U+03B9, U+0390->U+03B9, U+03AA->U+03B9, \
U+03AF->U+03B9, U+03CA->U+03B9, U+038C->U+03BF, U+03CC->U+03BF, U+038E->U+03C5, \
U+03AB->U+03C5, U+03B0->U+03C5, U+03CB->U+03C5, U+03CD->U+03C5, U+038F->U+03C9, \
U+03CE->U+03C9, U+03C2->U+03C3, U+0391..U+03A1->U+03B1..U+03C1, \
U+03A3..U+03A9->U+03C3..U+03C9, U+03B1..U+03C1, U+03C3..U+03C9, U+0E01..U+0E2E, \
U+0E30..U+0E3A, U+0E40..U+0E45, U+0E47, U+0E50..U+0E59, U+A000..U+A48F, U+4E00..U+9FBF, \
U+3400..U+4DBF, U+20000..U+2A6DF, U+F900..U+FAFF, U+2F800..U+2FA1F, U+2E80..U+2EFF, \
U+2F00..U+2FDF, U+3100..U+312F, U+31A0..U+31BF, U+3040..U+309F, U+30A0..U+30FF, \
U+31F0..U+31FF, U+AC00..U+D7AF, U+1100..U+11FF, U+3130..U+318F, U+A000..U+A48F, \
U+A490..U+A4CF
}
index rt_example_com
{
type = rt
path = /home/example.com/config/rt/rt_example_com
ondisk_attrs = pool
morphology = stem_enru, stem_ar
html_strip = 1
min_word_len = 2
expand_keywords = 1
blend_chars = +
index_exact_words = 1
charset_table = U+FF10..U+FF19->0..9, 0..9, U+FF41..U+FF5A->a..z, U+FF21..U+FF3A->a..z, A..Z->a..z, a..z, _, \
U+410..U+42F->U+430..U+44F, U+401->U+435, U+451->U+435, U+430..U+44F, \
U+0149, U+017F, U+0138, U+00DF, U+00FF, U+00C0..U+00D6->U+00E0..U+00F6, \
U+00E0..U+00F6, U+00D8..U+00DE->U+00F8..U+00FE, U+00F8..U+00FE, U+0100->U+0101, U+0101, \
U+0102->U+0103, U+0103, U+0104->U+0105, U+0105, U+0106->U+0107, U+0107, U+0108->U+0109, \
U+0109, U+010A->U+010B, U+010B, U+010C->U+010D, U+010D, U+010E->U+010F, U+010F, \
U+0110->U+0111, U+0111, U+0112->U+0113, U+0113, U+0114->U+0115, U+0115, U+0116->U+0117, \
U+0117, U+0118->U+0119, U+0119, U+011A->U+011B, U+011B, U+011C->U+011D, U+011D, \
U+011E->U+011F, U+011F, U+0130->U+0131, U+0131, U+0132->U+0133, U+0133, U+0134->U+0135, \
U+0135, U+0136->U+0137, U+0137, U+0139->U+013A, U+013A, U+013B->U+013C, U+013C, \
U+013D->U+013E, U+013E, U+013F->U+0140, U+0140, U+0141->U+0142, U+0142, U+0143->U+0144, \
U+0144, U+0145->U+0146, U+0146, U+0147->U+0148, U+0148, U+014A->U+014B, U+014B, \
U+014C->U+014D, U+014D, U+014E->U+014F, U+014F, U+0150->U+0151, U+0151, U+0152->U+0153, \
U+0153, U+0154->U+0155, U+0155, U+0156->U+0157, U+0157, U+0158->U+0159, U+0159, \
U+015A->U+015B, U+015B, U+015C->U+015D, U+015D, U+015E->U+015F, U+015F, U+0160->U+0161, \
U+0161, U+0162->U+0163, U+0163, U+0164->U+0165, U+0165, U+0166->U+0167, U+0167, \
U+0168->U+0169, U+0169, U+016A->U+016B, U+016B, U+016C->U+016D, U+016D, U+016E->U+016F, \
U+016F, U+0170->U+0171, U+0171, U+0172->U+0173, U+0173, U+0174->U+0175, U+0175, \
U+0176->U+0177, U+0177, U+0178->U+00FF, U+00FF, U+0179->U+017A, U+017A, U+017B->U+017C, \
U+017C, U+017D->U+017E, U+017E, U+0410..U+042F->U+0430..U+044F, U+0430..U+044F, \
U+05D0..U+05EA, U+0531..U+0556->U+0561..U+0586, U+0561..U+0587, U+0621..U+063A, U+01B9, \
U+01BF, U+0640..U+064A, U+0660..U+0669, U+066E, U+066F, U+0671..U+06D3, U+06F0..U+06FF, \
U+0904..U+0939, U+0958..U+095F, U+0960..U+0963, U+0966..U+096F, U+097B..U+097F, \
U+0985..U+09B9, U+09CE, U+09DC..U+09E3, U+09E6..U+09EF, U+0A05..U+0A39, U+0A59..U+0A5E, \
U+0A66..U+0A6F, U+0A85..U+0AB9, U+0AE0..U+0AE3, U+0AE6..U+0AEF, U+0B05..U+0B39, \
U+0B5C..U+0B61, U+0B66..U+0B6F, U+0B71, U+0B85..U+0BB9, U+0BE6..U+0BF2, U+0C05..U+0C39, \
U+0C66..U+0C6F, U+0C85..U+0CB9, U+0CDE..U+0CE3, U+0CE6..U+0CEF, U+0D05..U+0D39, U+0D60, \
U+0D61, U+0D66..U+0D6F, U+0D85..U+0DC6, U+1900..U+1938, U+1946..U+194F, U+A800..U+A805, \
U+A807..U+A822, U+0386->U+03B1, U+03AC->U+03B1, U+0388->U+03B5, U+03AD->U+03B5, \
U+0389->U+03B7, U+03AE->U+03B7, U+038A->U+03B9, U+0390->U+03B9, U+03AA->U+03B9, \
U+03AF->U+03B9, U+03CA->U+03B9, U+038C->U+03BF, U+03CC->U+03BF, U+038E->U+03C5, \
U+03AB->U+03C5, U+03B0->U+03C5, U+03CB->U+03C5, U+03CD->U+03C5, U+038F->U+03C9, \
U+03CE->U+03C9, U+03C2->U+03C3, U+0391..U+03A1->U+03B1..U+03C1, \
U+03A3..U+03A9->U+03C3..U+03C9, U+03B1..U+03C1, U+03C3..U+03C9, U+0E01..U+0E2E, \
U+0E30..U+0E3A, U+0E40..U+0E45, U+0E47, U+0E50..U+0E59, U+A000..U+A48F, U+4E00..U+9FBF, \
U+3400..U+4DBF, U+20000..U+2A6DF, U+F900..U+FAFF, U+2F800..U+2FA1F, U+2E80..U+2EFF, \
U+2F00..U+2FDF, U+3100..U+312F, U+31A0..U+31BF, U+3040..U+309F, U+30A0..U+30FF, \
U+31F0..U+31FF, U+AC00..U+D7AF, U+1100..U+11FF, U+3130..U+318F, U+A000..U+A48F, \
U+A490..U+A4CF
rt_attr_uint = kp_id
rt_attr_uint = rating
rt_attr_uint = vote
rt_attr_uint = kp_rating
rt_attr_uint = kp_vote
rt_attr_uint = imdb_rating
rt_attr_uint = imdb_vote
rt_attr_uint = premiere
rt_attr_uint = type
rt_attr_json = custom
rt_attr_string = poster
rt_attr_string = title_ru
rt_attr_string = title_en
rt_attr_string = title_page
rt_attr_string = description
rt_attr_string = description_short
rt_attr_string = pictures
rt_attr_string = query_id
rt_attr_string = search
rt_attr_string = year
rt_attr_string = country
rt_attr_string = director
rt_attr_string = genre
rt_attr_string = actor
rt_attr_string = player
rt_attr_string = translate
rt_attr_string = quality
rt_attr_string = all_movies
rt_field = query_id
rt_field = search
rt_field = year
rt_field = country
rt_field = director
rt_field = genre
rt_field = actor
rt_field = player
rt_field = translate
rt_field = quality
rt_field = all_movies
}
index user_example_com
{
type = rt
path = /home/example.com/config/user/user_example_com
ondisk_attrs = pool
morphology = stem_enru, stem_ar
html_strip = 1
min_word_len = 2
expand_keywords = 1
blend_chars = +
index_exact_words = 1
charset_table = U+FF10..U+FF19->0..9, 0..9, U+FF41..U+FF5A->a..z, U+FF21..U+FF3A->a..z, A..Z->a..z, a..z, _, \
U+410..U+42F->U+430..U+44F, U+401->U+435, U+451->U+435, U+430..U+44F, \
U+0149, U+017F, U+0138, U+00DF, U+00FF, U+00C0..U+00D6->U+00E0..U+00F6, \
U+00E0..U+00F6, U+00D8..U+00DE->U+00F8..U+00FE, U+00F8..U+00FE, U+0100->U+0101, U+0101, \
U+0102->U+0103, U+0103, U+0104->U+0105, U+0105, U+0106->U+0107, U+0107, U+0108->U+0109, \
U+0109, U+010A->U+010B, U+010B, U+010C->U+010D, U+010D, U+010E->U+010F, U+010F, \
U+0110->U+0111, U+0111, U+0112->U+0113, U+0113, U+0114->U+0115, U+0115, U+0116->U+0117, \
U+0117, U+0118->U+0119, U+0119, U+011A->U+011B, U+011B, U+011C->U+011D, U+011D, \
U+011E->U+011F, U+011F, U+0130->U+0131, U+0131, U+0132->U+0133, U+0133, U+0134->U+0135, \
U+0135, U+0136->U+0137, U+0137, U+0139->U+013A, U+013A, U+013B->U+013C, U+013C, \
U+013D->U+013E, U+013E, U+013F->U+0140, U+0140, U+0141->U+0142, U+0142, U+0143->U+0144, \
U+0144, U+0145->U+0146, U+0146, U+0147->U+0148, U+0148, U+014A->U+014B, U+014B, \
U+014C->U+014D, U+014D, U+014E->U+014F, U+014F, U+0150->U+0151, U+0151, U+0152->U+0153, \
U+0153, U+0154->U+0155, U+0155, U+0156->U+0157, U+0157, U+0158->U+0159, U+0159, \
U+015A->U+015B, U+015B, U+015C->U+015D, U+015D, U+015E->U+015F, U+015F, U+0160->U+0161, \
U+0161, U+0162->U+0163, U+0163, U+0164->U+0165, U+0165, U+0166->U+0167, U+0167, \
U+0168->U+0169, U+0169, U+016A->U+016B, U+016B, U+016C->U+016D, U+016D, U+016E->U+016F, \
U+016F, U+0170->U+0171, U+0171, U+0172->U+0173, U+0173, U+0174->U+0175, U+0175, \
U+0176->U+0177, U+0177, U+0178->U+00FF, U+00FF, U+0179->U+017A, U+017A, U+017B->U+017C, \
U+017C, U+017D->U+017E, U+017E, U+0410..U+042F->U+0430..U+044F, U+0430..U+044F, \
U+05D0..U+05EA, U+0531..U+0556->U+0561..U+0586, U+0561..U+0587, U+0621..U+063A, U+01B9, \
U+01BF, U+0640..U+064A, U+0660..U+0669, U+066E, U+066F, U+0671..U+06D3, U+06F0..U+06FF, \
U+0904..U+0939, U+0958..U+095F, U+0960..U+0963, U+0966..U+096F, U+097B..U+097F, \
U+0985..U+09B9, U+09CE, U+09DC..U+09E3, U+09E6..U+09EF, U+0A05..U+0A39, U+0A59..U+0A5E, \
U+0A66..U+0A6F, U+0A85..U+0AB9, U+0AE0..U+0AE3, U+0AE6..U+0AEF, U+0B05..U+0B39, \
U+0B5C..U+0B61, U+0B66..U+0B6F, U+0B71, U+0B85..U+0BB9, U+0BE6..U+0BF2, U+0C05..U+0C39, \
U+0C66..U+0C6F, U+0C85..U+0CB9, U+0CDE..U+0CE3, U+0CE6..U+0CEF, U+0D05..U+0D39, U+0D60, \
U+0D61, U+0D66..U+0D6F, U+0D85..U+0DC6, U+1900..U+1938, U+1946..U+194F, U+A800..U+A805, \
U+A807..U+A822, U+0386->U+03B1, U+03AC->U+03B1, U+0388->U+03B5, U+03AD->U+03B5, \
U+0389->U+03B7, U+03AE->U+03B7, U+038A->U+03B9, U+0390->U+03B9, U+03AA->U+03B9, \
U+03AF->U+03B9, U+03CA->U+03B9, U+038C->U+03BF, U+03CC->U+03BF, U+038E->U+03C5, \
U+03AB->U+03C5, U+03B0->U+03C5, U+03CB->U+03C5, U+03CD->U+03C5, U+038F->U+03C9, \
U+03CE->U+03C9, U+03C2->U+03C3, U+0391..U+03A1->U+03B1..U+03C1, \
U+03A3..U+03A9->U+03C3..U+03C9, U+03B1..U+03C1, U+03C3..U+03C9, U+0E01..U+0E2E, \
U+0E30..U+0E3A, U+0E40..U+0E45, U+0E47, U+0E50..U+0E59, U+A000..U+A48F, U+4E00..U+9FBF, \
U+3400..U+4DBF, U+20000..U+2A6DF, U+F900..U+FAFF, U+2F800..U+2FA1F, U+2E80..U+2EFF, \
U+2F00..U+2FDF, U+3100..U+312F, U+31A0..U+31BF, U+3040..U+309F, U+30A0..U+30FF, \
U+31F0..U+31FF, U+AC00..U+D7AF, U+1100..U+11FF, U+3130..U+318F, U+A000..U+A48F, \
U+A490..U+A4CF
rt_attr_uint = user_id
rt_attr_json = user_custom
rt_attr_string = user_login
rt_attr_string = user_avatar
rt_attr_string = user_email
rt_attr_string = user_confirm
rt_attr_string = user_date
rt_attr_string = user_text
rt_attr_string = all_users
rt_field = user_id
rt_field = user_login
rt_field = all_users
}
index content_example_com
{
type = rt
path = /home/example.com/config/content/content_example_com
ondisk_attrs = pool
morphology = stem_enru, stem_ar
html_strip = 1
min_word_len = 2
expand_keywords = 1
blend_chars = +
index_exact_words = 1
charset_table = U+FF10..U+FF19->0..9, 0..9, U+FF41..U+FF5A->a..z, U+FF21..U+FF3A->a..z, A..Z->a..z, a..z, _, \
U+410..U+42F->U+430..U+44F, U+401->U+435, U+451->U+435, U+430..U+44F, \
U+0149, U+017F, U+0138, U+00DF, U+00FF, U+00C0..U+00D6->U+00E0..U+00F6, \
U+00E0..U+00F6, U+00D8..U+00DE->U+00F8..U+00FE, U+00F8..U+00FE, U+0100->U+0101, U+0101, \
U+0102->U+0103, U+0103, U+0104->U+0105, U+0105, U+0106->U+0107, U+0107, U+0108->U+0109, \
U+0109, U+010A->U+010B, U+010B, U+010C->U+010D, U+010D, U+010E->U+010F, U+010F, \
U+0110->U+0111, U+0111, U+0112->U+0113, U+0113, U+0114->U+0115, U+0115, U+0116->U+0117, \
U+0117, U+0118->U+0119, U+0119, U+011A->U+011B, U+011B, U+011C->U+011D, U+011D, \
U+011E->U+011F, U+011F, U+0130->U+0131, U+0131, U+0132->U+0133, U+0133, U+0134->U+0135, \
U+0135, U+0136->U+0137, U+0137, U+0139->U+013A, U+013A, U+013B->U+013C, U+013C, \
U+013D->U+013E, U+013E, U+013F->U+0140, U+0140, U+0141->U+0142, U+0142, U+0143->U+0144, \
U+0144, U+0145->U+0146, U+0146, U+0147->U+0148, U+0148, U+014A->U+014B, U+014B, \
U+014C->U+014D, U+014D, U+014E->U+014F, U+014F, U+0150->U+0151, U+0151, U+0152->U+0153, \
U+0153, U+0154->U+0155, U+0155, U+0156->U+0157, U+0157, U+0158->U+0159, U+0159, \
U+015A->U+015B, U+015B, U+015C->U+015D, U+015D, U+015E->U+015F, U+015F, U+0160->U+0161, \
U+0161, U+0162->U+0163, U+0163, U+0164->U+0165, U+0165, U+0166->U+0167, U+0167, \
U+0168->U+0169, U+0169, U+016A->U+016B, U+016B, U+016C->U+016D, U+016D, U+016E->U+016F, \
U+016F, U+0170->U+0171, U+0171, U+0172->U+0173, U+0173, U+0174->U+0175, U+0175, \
U+0176->U+0177, U+0177, U+0178->U+00FF, U+00FF, U+0179->U+017A, U+017A, U+017B->U+017C, \
U+017C, U+017D->U+017E, U+017E, U+0410..U+042F->U+0430..U+044F, U+0430..U+044F, \
U+05D0..U+05EA, U+0531..U+0556->U+0561..U+0586, U+0561..U+0587, U+0621..U+063A, U+01B9, \
U+01BF, U+0640..U+064A, U+0660..U+0669, U+066E, U+066F, U+0671..U+06D3, U+06F0..U+06FF, \
U+0904..U+0939, U+0958..U+095F, U+0960..U+0963, U+0966..U+096F, U+097B..U+097F, \
U+0985..U+09B9, U+09CE, U+09DC..U+09E3, U+09E6..U+09EF, U+0A05..U+0A39, U+0A59..U+0A5E, \
U+0A66..U+0A6F, U+0A85..U+0AB9, U+0AE0..U+0AE3, U+0AE6..U+0AEF, U+0B05..U+0B39, \
U+0B5C..U+0B61, U+0B66..U+0B6F, U+0B71, U+0B85..U+0BB9, U+0BE6..U+0BF2, U+0C05..U+0C39, \
U+0C66..U+0C6F, U+0C85..U+0CB9, U+0CDE..U+0CE3, U+0CE6..U+0CEF, U+0D05..U+0D39, U+0D60, \
U+0D61, U+0D66..U+0D6F, U+0D85..U+0DC6, U+1900..U+1938, U+1946..U+194F, U+A800..U+A805, \
U+A807..U+A822, U+0386->U+03B1, U+03AC->U+03B1, U+0388->U+03B5, U+03AD->U+03B5, \
U+0389->U+03B7, U+03AE->U+03B7, U+038A->U+03B9, U+0390->U+03B9, U+03AA->U+03B9, \
U+03AF->U+03B9, U+03CA->U+03B9, U+038C->U+03BF, U+03CC->U+03BF, U+038E->U+03C5, \
U+03AB->U+03C5, U+03B0->U+03C5, U+03CB->U+03C5, U+03CD->U+03C5, U+038F->U+03C9, \
U+03CE->U+03C9, U+03C2->U+03C3, U+0391..U+03A1->U+03B1..U+03C1, \
U+03A3..U+03A9->U+03C3..U+03C9, U+03B1..U+03C1, U+03C3..U+03C9, U+0E01..U+0E2E, \
U+0E30..U+0E3A, U+0E40..U+0E45, U+0E47, U+0E50..U+0E59, U+A000..U+A48F, U+4E00..U+9FBF, \
U+3400..U+4DBF, U+20000..U+2A6DF, U+F900..U+FAFF, U+2F800..U+2FA1F, U+2E80..U+2EFF, \
U+2F00..U+2FDF, U+3100..U+312F, U+31A0..U+31BF, U+3040..U+309F, U+30A0..U+30FF, \
U+31F0..U+31FF, U+AC00..U+D7AF, U+1100..U+11FF, U+3130..U+318F, U+A000..U+A48F, \
U+A490..U+A4CF
rt_attr_bigint = content_publish
rt_attr_string = content_url
rt_attr_string = content_title
rt_attr_string = content_description
rt_attr_string = content_image
rt_attr_string = content_tags
rt_attr_string = content_movies
rt_attr_string = all_contents
rt_field = content_url
rt_field = content_title
rt_field = content_tags
rt_field = content_movies
rt_field = all_contents
}
index comment_example_com
{
type = rt
path = /home/example.com/config/comment/comment_example_com
ondisk_attrs = pool
morphology = stem_enru, stem_ar
html_strip = 1
min_word_len = 2
expand_keywords = 1
blend_chars = +
index_exact_words = 1
charset_table = U+FF10..U+FF19->0..9, 0..9, U+FF41..U+FF5A->a..z, U+FF21..U+FF3A->a..z, A..Z->a..z, a..z, _, \
U+410..U+42F->U+430..U+44F, U+401->U+435, U+451->U+435, U+430..U+44F, \
U+0149, U+017F, U+0138, U+00DF, U+00FF, U+00C0..U+00D6->U+00E0..U+00F6, \
U+00E0..U+00F6, U+00D8..U+00DE->U+00F8..U+00FE, U+00F8..U+00FE, U+0100->U+0101, U+0101, \
U+0102->U+0103, U+0103, U+0104->U+0105, U+0105, U+0106->U+0107, U+0107, U+0108->U+0109, \
U+0109, U+010A->U+010B, U+010B, U+010C->U+010D, U+010D, U+010E->U+010F, U+010F, \
U+0110->U+0111, U+0111, U+0112->U+0113, U+0113, U+0114->U+0115, U+0115, U+0116->U+0117, \
U+0117, U+0118->U+0119, U+0119, U+011A->U+011B, U+011B, U+011C->U+011D, U+011D, \
U+011E->U+011F, U+011F, U+0130->U+0131, U+0131, U+0132->U+0133, U+0133, U+0134->U+0135, \
U+0135, U+0136->U+0137, U+0137, U+0139->U+013A, U+013A, U+013B->U+013C, U+013C, \
U+013D->U+013E, U+013E, U+013F->U+0140, U+0140, U+0141->U+0142, U+0142, U+0143->U+0144, \
U+0144, U+0145->U+0146, U+0146, U+0147->U+0148, U+0148, U+014A->U+014B, U+014B, \
U+014C->U+014D, U+014D, U+014E->U+014F, U+014F, U+0150->U+0151, U+0151, U+0152->U+0153, \
U+0153, U+0154->U+0155, U+0155, U+0156->U+0157, U+0157, U+0158->U+0159, U+0159, \
U+015A->U+015B, U+015B, U+015C->U+015D, U+015D, U+015E->U+015F, U+015F, U+0160->U+0161, \
U+0161, U+0162->U+0163, U+0163, U+0164->U+0165, U+0165, U+0166->U+0167, U+0167, \
U+0168->U+0169, U+0169, U+016A->U+016B, U+016B, U+016C->U+016D, U+016D, U+016E->U+016F, \
U+016F, U+0170->U+0171, U+0171, U+0172->U+0173, U+0173, U+0174->U+0175, U+0175, \
U+0176->U+0177, U+0177, U+0178->U+00FF, U+00FF, U+0179->U+017A, U+017A, U+017B->U+017C, \
U+017C, U+017D->U+017E, U+017E, U+0410..U+042F->U+0430..U+044F, U+0430..U+044F, \
U+05D0..U+05EA, U+0531..U+0556->U+0561..U+0586, U+0561..U+0587, U+0621..U+063A, U+01B9, \
U+01BF, U+0640..U+064A, U+0660..U+0669, U+066E, U+066F, U+0671..U+06D3, U+06F0..U+06FF, \
U+0904..U+0939, U+0958..U+095F, U+0960..U+0963, U+0966..U+096F, U+097B..U+097F, \
U+0985..U+09B9, U+09CE, U+09DC..U+09E3, U+09E6..U+09EF, U+0A05..U+0A39, U+0A59..U+0A5E, \
U+0A66..U+0A6F, U+0A85..U+0AB9, U+0AE0..U+0AE3, U+0AE6..U+0AEF, U+0B05..U+0B39, \
U+0B5C..U+0B61, U+0B66..U+0B6F, U+0B71, U+0B85..U+0BB9, U+0BE6..U+0BF2, U+0C05..U+0C39, \
U+0C66..U+0C6F, U+0C85..U+0CB9, U+0CDE..U+0CE3, U+0CE6..U+0CEF, U+0D05..U+0D39, U+0D60, \
U+0D61, U+0D66..U+0D6F, U+0D85..U+0DC6, U+1900..U+1938, U+1946..U+194F, U+A800..U+A805, \
U+A807..U+A822, U+0386->U+03B1, U+03AC->U+03B1, U+0388->U+03B5, U+03AD->U+03B5, \
U+0389->U+03B7, U+03AE->U+03B7, U+038A->U+03B9, U+0390->U+03B9, U+03AA->U+03B9, \
U+03AF->U+03B9, U+03CA->U+03B9, U+038C->U+03BF, U+03CC->U+03BF, U+038E->U+03C5, \
U+03AB->U+03C5, U+03B0->U+03C5, U+03CB->U+03C5, U+03CD->U+03C5, U+038F->U+03C9, \
U+03CE->U+03C9, U+03C2->U+03C3, U+0391..U+03A1->U+03B1..U+03C1, \
U+03A3..U+03A9->U+03C3..U+03C9, U+03B1..U+03C1, U+03C3..U+03C9, U+0E01..U+0E2E, \
U+0E30..U+0E3A, U+0E40..U+0E45, U+0E47, U+0E50..U+0E59, U+A000..U+A48F, U+4E00..U+9FBF, \
U+3400..U+4DBF, U+20000..U+2A6DF, U+F900..U+FAFF, U+2F800..U+2FA1F, U+2E80..U+2EFF, \
U+2F00..U+2FDF, U+3100..U+312F, U+31A0..U+31BF, U+3040..U+309F, U+30A0..U+30FF, \
U+31F0..U+31FF, U+AC00..U+D7AF, U+1100..U+11FF, U+3130..U+318F, U+A000..U+A48F, \
U+A490..U+A4CF
rt_attr_uint = comment_id
rt_attr_uint = movie_id
rt_attr_uint = user_id
rt_attr_uint = reply_id
rt_attr_uint = comment_like
rt_attr_uint = comment_dislike
rt_attr_uint = comment_publish
rt_attr_string = comment_text
rt_attr_string = all_comments
rt_field = comment_id
rt_field = movie_id
rt_field = user_id
rt_field = all_comments
}
indexer
{
mem_limit = 128M
max_file_field_buffer = 16M
}
searchd
{
listen = 127.0.0.1:9312
listen = 127.0.0.1:9306:mysql41
log = /home/example.com/log/searchd.log
pid_file = /home/example.com/log/searchd.pid
read_timeout = 5
max_children = 30
seamless_rotate = 1
preopen_indexes = 1
unlink_old = 1
thread_stack = 8192K
binlog_path = /home/example.com/config/binlog
rt_flush_period = 18000
collation_server = utf8_general_ci
}

View File

@ -0,0 +1,373 @@
module.exports = {
"database": {
"key": "FREE",
"date": ""
},
"protocol": "http://",
"subdomain": "",
"domain": "example.com",
"email": "support@example.com",
"theme": "default",
"country": "US",
"language": "en",
"geolite2": {
"countries": [],
"ips": []
},
"image": {
"addr": "k.1poster.net",
"size": 180,
"proxy": 0
},
"cache": {
"time": 3600,
"addr": "127.0.0.1:11211"
},
"sphinx": {
"addr": "127.0.0.1:9306"
},
"nginx": {
"addr": "127.0.0.1:3000"
},
"loadavg": {
"one": 480,
"five": 360,
"fifteen": 240,
"message": "The server is overloaded by <i>[percent]%</i> please check back later."
},
"publish": {
"start": 400000,
"stop": 1100000,
"every" : {
"hours": 1,
"movies": 2
},
"text": 0,
"required": [
"poster"
],
"thematic": {
"type": "",
"year": "",
"genre": "",
"country": "",
"actor": "",
"director": "",
"query_id": "",
"search": "",
"kp_vote": "",
"imdb_vote": ""
}
},
"default": {
"count": 15,
"sorting": "kinopoisk-vote-up",
"pages": 4,
"lastpage": 0,
"days": 0,
"image": "/themes/default/public/desktop/img/player.png",
"votes": {
"kp": 5000,
"imdb": 5000
},
"donotuse": ["actor","director","search"],
"categories": {
"countries": ["USA","France","Japan","Britain","Spain","Italy","Canada","India","Germany","Poland"],
"genres": ['anime','biography','action','western','military','detective','children','adults','documentary','drama','game','history','comedy','concert','short film','crime','melodrama','music','cartoon','musical','news','adventure','real TV','family','sport','talk show','thriller','horrors','fantastic','film-noir','fantasy','ceremony'],
"years": ["2019","2018","2017","2016","2015","2014","2013","2012","2011","2010"]
},
"types": {
"movie": "!cartoon !anime !short !show !news !real !ceremony !concert !children !documentary",
"serial": "!anime !short",
"mult": "cartoon | children !anime !short",
"multserial": "cartoon | children !anime !short",
"anime": "anime",
"tv": "show | news | real | ceremony | concert"
},
"moment": "DD MMM YYYY"
},
"codes": {
"head": "",
"footer": "",
"robots": "User-agent: *\nDisallow: /\nDisallow: /type/*/*\nDisallow: /movie/*/*\nDisallow: /year/*/*\nDisallow: /genre/*/*\nDisallow: /country/*/*\nDisallow: /director/*/*\nDisallow: /actor/*/*\nDisallow: /search\nDisallow: /*?sorting*\nDisallow: /*?tag*\nDisallow: /*?q*\nDisallow: /*?random*\nDisallow: /*?PageSpeed*\nDisallow: /*?desktop*\nDisallow: /iframe\nDisallow: /noindex\nDisallow: /admin*"
},
"index": {
"type": {
"name": "Top [type]",
"keys": "",
"sorting": "kinopoisk-rating-up",
"count": 15,
"order": 2
},
"year": {
"name": "Top movies from [year]",
"keys": "2019",
"sorting": "premiere-up",
"count": 15,
"order": 3
},
"genre": {
"name": "Top movies from [genre]",
"keys": "",
"sorting": "imdb-vote-up",
"count": 10,
"order": 4
},
"country": {
"name": "Top movies from [country]",
"keys": "",
"sorting": "imdb-rating-up",
"count": 10,
"order": 5
},
"actor": {
"name": "Top movies with [actor]",
"keys": "",
"sorting": "kinopoisk-vote-up",
"count": 10,
"order": 6
},
"director": {
"name": "Top movies with [director]",
"keys": "",
"sorting": "kinopoisk-vote-up",
"count": 10,
"order": 7
},
"ids": {
"name": "New movies",
"keys": "",
"count": 10,
"order": 1
},
"count": {
"type": "year",
"key": "2019",
"sorting": "premiere-up"
},
"link": 0
},
"titles": {
"index": "Legal catalog of movies",
"year" : "Movies from [year] [sorting] [page]",
"years" : "Movies by year",
"genre": "Movies from [genre] [sorting] [page]",
"genres" : "Movies by genre",
"country": "Movies from [country] [sorting] [page]",
"countries": "Films by country",
"actor": "Movies with [actor] [sorting] [page]",
"actors": "Most popular actors",
"director": "Movies that directed [director] [sorting] [page]",
"directors": "Most popular directors",
"type": "[type] [sorting] [page]",
"search" : "Search «[search]» [sorting] [page]",
"num": "on page [num]",
"movie": {
"movie": "[title]",
"online": "[title] online",
"download": "[title] download",
"trailer": "[title] trailer",
"picture": "[title] picture"
},
"sorting": {
"kinopoisk-rating-up": "sorted by rating KP",
"kinopoisk-rating-down": "sorted by rating KP",
"imdb-rating-up": "sorted by rating IMDb",
"imdb-rating-down": "sorted by rating IMDb",
"kinopoisk-vote-up": "sorted by popularity on KP",
"kinopoisk-vote-down": "sorted by popularity on KP",
"imdb-vote-up": "sorted by popularity on IMDb",
"imdb-vote-down": "sorted by popularity on IMDb",
"year-up": "sorted by year",
"year-down": "sorted by year",
"premiere-up": "sorted by premiere",
"premiere-down": "sorted by premiere"
}
},
"h1": {
"index": "All movies in the world",
"year" : "Movies from [year] [sorting] [page]",
"years" : "Movies by year",
"genre": "Movies from [genre] [sorting] [page]",
"genres" : "Movies by genre",
"country": "Movies from [country] [sorting] [page]",
"countries": "Films by country",
"actor": "Movies with [actor] [sorting] [page]",
"actors": "Most popular actors",
"director": "Movies that directed [director] [sorting] [page]",
"directors": "Most popular directors",
"type": "[type] [sorting] [page]",
"search" : "Search «[search]» [sorting] [page]",
"num": "on page [num]",
"movie": {
"movie": "[title] [year]",
"online": "[title] [year] online",
"download": "[title] [year] download",
"trailer": "[title] [year] trailer",
"picture": "[title] [year] picture"
},
"sorting": {
"kinopoisk-rating-up": "sorted by rating KP",
"kinopoisk-rating-down": "sorted by rating KP",
"imdb-rating-up": "sorted by rating IMDb",
"imdb-rating-down": "sorted by rating IMDb",
"kinopoisk-vote-up": "sorted by popularity on KP",
"kinopoisk-vote-down": "sorted by popularity on KP",
"imdb-vote-up": "sorted by popularity on IMDb",
"imdb-vote-down": "sorted by popularity on IMDb",
"year-up": "sorted by year",
"year-down": "sorted by year",
"premiere-up": "sorted by premiere",
"premiere-down": "sorted by premiere"
}
},
"descriptions": {
"index": "How many films have you seen at the moment? Most likely, quite a few, several hundred, and maybe thousands, if you are an avid moviegoer and do not imagine an evening, without viewing one or several films. Either you probably very much like serials and spend the evenings watching several series of an entertaining series. Whatever it was, We are very pleased that you have chosen our site as a platform for discussion and discussion with the same film enthusiasts as you. Sit back comfortably, make tea and start <span style='text-decoration:line-through'>screaming</span> criticism :)",
"year" : "Movies from [year]",
"years" : "Movies by year",
"genre": "Movies from [genre]",
"genres" : "Movies by genre",
"country": "Movies from [country]",
"countries": "Films by country",
"actor": "Movies with [actor]",
"actors": "Most popular actors",
"director": "Movies that directed [director]",
"directors": "Most popular directors",
"type": "[type]",
"search" : "Search «[search]»",
"movie": {
"movie": "The picture «[title]» was released in [year] year and immediately won the attention of viewers in different parts of the earth. Film genre [genre] has always been very popular, moreover, when they are shot by such eminent directors as [director]. The country that put a hand to this film is considered [country], because viewers can already approximately imagine the level of [color|logic|art|pictures] for similar creations.",
"online": "[title] online",
"download": "[title] download",
"trailer": "[title] trailer",
"picture": "[title] picture"
}
},
"sorting": {
"kinopoisk-rating-up": "Rated KP ⬆",
"kinopoisk-rating-down": "Rated KP ⬇",
"imdb-rating-up": "Rated IMDb ⬆",
"imdb-rating-down": "Rated IMDb ⬇",
"kinopoisk-vote-up": "Popularity KP ⬆",
"kinopoisk-vote-down": "Popularity KP ⬇",
"imdb-vote-up": "Popularity IMDb ⬆",
"imdb-vote-down": "Popularity IMDb ⬇",
"year-up": "Year ⬆",
"year-down": "Year ⬇",
"premiere-up": "Premiere ⬆",
"premiere-down": "Premiere ⬇"
},
"urls": {
"prefix_id": "id",
"unique_id": 0,
"separator": "-",
"translit": 0,
"movie_url": "[prefix_id][separator][title]",
"movie": "movie",
"year" : "year",
"genre": "genre",
"country": "country",
"actor": "actor",
"director": "director",
"type": "type",
"search" : "search",
"sitemap" : "sitemap",
"admin": "admin-secret",
"types": {
"serial": "series",
"movie": "movies",
"mult": "cartoons",
"multserial": "animated",
"tv": "tv",
"anime": "anime"
},
"movies": {
"online": "",
"download": "",
"trailer": "",
"picture": ""
},
"noindex": ""
},
"l": {
"more": "More",
"home": "Home",
"information": "Information",
"online": "Online",
"download": "Download",
"trailer": "Trailer",
"picture": "Picture",
"episode": "Episode",
"movies": "Movies",
"series": "Series",
"cartoons": "Cartoons",
"tv": "TV",
"anime": "Anime",
"collections": "Collections",
"year": "Year",
"years": "Years",
"genre": "Genre",
"genres": "Genres",
"actor": "Actor",
"actors": "Actors",
"director": "Director",
"directors": "Directors",
"country": "Country",
"countries": "Countries",
"quality": "Quality",
"translate": "Translate",
"premiere": "Premiere",
"rating": "Rating",
"kp": "KP",
"imdb": "IMDb",
"episodes": "episodes",
"storyline": "Storyline",
"later": "Watch later",
"continue": "Continue",
"saved": "Saved",
"allCategories": "All categories",
"allYears": "All years",
"allGenres": "All genres",
"allCountries": "All countries",
"allActors": "All actors",
"allDirectors": "All directors",
"watched": "You recently watched",
"search": "Search",
"share": "Share",
"subscribe": "Subscribe",
"vk": "VK",
"facebook": "facebook",
"twitter": "Twitter",
"google": "Google",
"telegram": "Telegram",
"youtube": "YouTube",
"instagram": "Instagram",
"up": "Up",
"soon": "Coming soon",
"contacts": "Contacts",
"news": "News",
"menu": "Menu",
"comments": "Comments",
"movieTitle": "Movie title",
"votes": "votes",
"hide": "Hide",
"navigation": "Navigation",
"and": "and",
"overall": "Overall",
"premieres": "Premieres",
"popular": "Popular",
"top": "Top",
"sorting": "Sorting",
"tags": "Tags",
"mentions": "Mentions",
"said": "said",
"full": "Full version",
"original": "Original",
"notFound": "This page is not on the site. Maybe you made a mistake in the URL or it is an internal site error, which the administrator already knows and is taking steps to fix it.",
"notMobile": "Mobile version of the site is not activated. The site adapts to the screen and is equally beautifully displayed, both on large screens and on mobile devices running iOS, Android or WindowsPhone.",
"notTv": "TV version of the site is not activated.",
"lucky": "I'm Feeling Lucky",
"random": "Random movie from category",
"results": "All results"
}
};

View File

@ -0,0 +1,518 @@
module.exports = {
"comments": {
"status": true,
"data": {
"cackle": {
"id": "",
"siteApiKey": "",
"accountApiKey": ""
},
"hypercomments": {
"widget_id": "",
"sekretkey": "",
"recent": {
"num_items": 0,
"excerpt_length": 250,
"display": [
"index"
]
}
},
"disqus": {
"shortname": "cinemapress-en",
"api_key": "",
"recent": {
"num_items": 5,
"excerpt_length": 250,
"hide_avatars": 0,
"display": [
"index"
]
}
},
"facebook": {
"admins": ""
},
"vk": {
"app_id": ""
},
"sigcomments": {
"host_id": ""
}
}
},
"slider": {
"status": true,
"data": {
"count": 0,
"url": "",
"movies": ["1047883","460586","843650","843859","840372","1044601","1008445","1009536","1007049","994864","1005878","846824","706655","840045","843649","961715","924311","935940","926540","839650","840829","843479","843790"]
}
},
"abuse": {
"status": true,
"data": {
"imap": {
"user": "",
"password": "",
"host": "",
"port": 993,
"tls": 1
},
"country": 0,
"status_code_country": 200,
"status_code_list": 404,
"message": "Viewing is prohibited, the site is subject<br>to copyright law in the digital age!<br><br><img src=\"/themes/default/public/desktop/img/dmca.png\" alt=\"DMCA\">",
"movies": ["957762","927771","893880","893520","861616","838952","882285","948999","840818","932512","843821","908406","840234","839818"]
}
},
"top": {
"status": true,
"data": {
"sorting": "imdb-vote-up",
"count": 15
}
},
"soon": {
"status": true,
"data": {
"count": 2,
"movies": []
}
},
"social": {
"status": false,
"data": {
"vk": "https://vk.com/CinemaPress",
"facebook": "https://www.facebook.com/CinemaPress.io",
"twitter": "https://twitter.com/CinemaPress_org",
"telegram": "https://t.me/CinemaPress_org",
"instagram": "https://www.instagram.com/CinemaPressOrg",
"youtube": "https://www.youtube.com/channel/UCRW63_nu-cWw2obv6k04Pow"
}
},
"related": {
"status": true,
"data": {
"display": [
"year"
],
"types": {
"year": {
"count": 6,
"name": "[year] Movies",
"sorting": "kinopoisk-vote-up"
},
"genre": {
"count": 5,
"name": "Movies in the genre of [genre]",
"sorting": "kinopoisk-vote-up"
},
"country": {
"count": 10,
"name": "Films from [country]",
"sorting": "kinopoisk-vote-up"
},
"actor": {
"count": 15,
"name": "Best actor movies - [actor]",
"sorting": "kinopoisk-vote-up"
},
"director": {
"count": 5,
"name": "Best director movies - [director]",
"sorting": "kinopoisk-vote-up"
}
},
"same": 1,
"link": 0
}
},
"schema": {
"status": false
},
"continue": {
"status": false
},
"viewed": {
"status": true,
"data": {
"count": 20
}
},
"player": {
"status": true,
"data": {
"display": "yohoho",
"yohoho": {
"player": "moonwalk,hdgo,kodik,iframe,videocdn,trailer,videospider",
"trailer": "",
"bg": "#14181C",
"button": ""
},
"moonwalk": {
"token": ""
},
"hdgo": {
"token": ""
},
"iframe": {
"token": ""
},
"kodik": {
"token": ""
},
"youtube": {
"token": ""
},
"videocdn": {
"token": ""
}
}
},
"blocking": {
"status": true,
"data": {
"display": "legal",
"share": {
"time": 60,
"message": "Share the movie with one of the social networks to start watching or wait [timer] seconds and the message disappears."
},
"sub": {
"keys": ["CP06368342850052267","CP10020891099182505","CP46955642915431706"],
"message": "Viewing is available only by subscription. Get a subscription and activate the key. <p><a href=\"https://digiseller.ru/\" target=\"_blank\" style=\"color:white;\">Buy subscription</a></p>"
},
"adv": {
"time": 10,
"code": "<div class=rklma>Block with your advertisement in the player</div>",
"message": "Advertising allows you to watch movies for free. Please treat this with understanding. You can start viewing in [timer] seconds.",
"skip": ""
},
"adblock": {
"time": 60,
"message": "You use AdBlock or other ad blockers. Please disable them on our website in order not to wait. You can start viewing in [timer] seconds."
},
"legal": {
"time": 20,
"countries": [],
"message": "The trailer will appear after [timer] seconds. To display the movie player on this location, turn off the <a href=\"/admin/blocking\" target=\"_blank\" style=\"color:white;\">in the admin panel, the «Blocking» module</a>.\n\n<br><br>\n\n<div class=search-ggl onclick=\"window.open('https://href.li/?https://google.com/search?&tbm=vid&q=[title] [year] watch online','_blank')\">Watch online in <span class=g>G</span><span class=o>o</span><span class=o>o</span><span class=g>g</span><span class=l>l</span><span class=e>e</span></div>\n\n<div class=search-ynd onclick=\"window.open('https://href.li/?https://yandex.fr/video/search?text=[title] [year] watch online','_blank')\">Watch online in <span class=y>Y</span>andex</div>"
}
}
},
"mobile": {
"status": false,
"data": {
"theme": "light",
"custom": {
"a": "#99AABB",
"hover": "#FFFFFF",
"body_color": "#FFFFFF",
"body_bg": "#14181C",
"title_color": "#FFFFFF",
"title_bg": "#445566",
"description_color": "#FFFFFF",
"description_bg": "#242D35",
"block": "#2C3641",
"form": "#2C3641",
"btn_color": "#FFFFFF",
"btn_bg": "#14181C"
},
"subdomain": 0
}
},
"episode": {
"status": false,
"data": {
"title": "[title] [season] season [episode] episode in voice [translate]",
"h1": "[title] [season] season [episode] episode in voice [translate]",
"description": "[title] [season] season [episode] episode in voice [translate]",
"season": "season",
"episode": "episode",
"translate": "Translate:",
"default": "Original",
"source": "moonwalk",
"index": {
"name": "New series of serials",
"count": 12,
"order": 2,
"latest": 0
}
}
},
"adv": {
"status": false,
"data": {
"target": 0,
"desktop": {
"all": {
"over": "<div class=rklma>Block with your advertisement above the player</div>",
"under": "<div class=rklma>Block with your advertisement under the player</div>",
"top": "<div class=rklma>Block with your advertisement at the top of the page</div>",
"bottom": "<div class=rklma>Block with your advertisement at the bottom of the page</div>",
"left": "<div class=rklma>Block with your advertisement on the left of the page</div>",
"right": "<div class=rklma>Block with your advertisement on the right of the page</div>"
},
"index": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"category": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"categories": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"movie": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"online": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"download": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"picture": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"trailer": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"episode": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
}
},
"mobile": {
"all": {
"over": "<div class=rklma>Block with your advertisement above the player</div>",
"under": "<div class=rklma>Block with your advertisement under the player</div>",
"top": "<div class=rklma>Block with your advertisement at the top of the page</div>",
"bottom": "<div class=rklma>Block with your advertisement at the bottom of the page</div>",
"left": "<div class=rklma>Block with your advertisement on the left of the page</div>",
"right": "<div class=rklma>Block with your advertisement on the right of the page</div>"
},
"index": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"category": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"categories": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"movie": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"online": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"download": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"picture": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"trailer": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"episode": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
}
}
}
},
"content": {
"status": true,
"data": {
"title": "Site pages",
"h1": "Site pages",
"description": "Site pages",
"url": "content",
"news": {
"count": 2,
"tags": "News"
},
"index": {
"count": 12,
"url": "latest-movie-updates",
"order": 2
},
"movie": {
"count": 2,
"tags": "Updates"
},
"auto": {
"moonwalk_movies": {
"count": 12,
"url": "latest-movie-updates",
"quality": 0,
"translate": 0
},
"moonwalk_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
},
"hdgo_movies": {
"count": 12,
"url": "latest-movie-updates",
"quality": 0,
"translate": 0
},
"hdgo_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
},
"kodik_movies": {
"count": 12,
"url": "latest-movie-updates",
"quality": 0,
"translate": 0
},
"kodik_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
},
"iframe_movies": {
"count": 12,
"url": "latest-movie-updates",
"quality": 0,
"translate": 0
},
"iframe_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
}
},
"scraper": ""
}
},
"rss": {
"status": false
},
"rewrite": {
"status": false,
"data": {
"token": "",
"double": 1,
"unique": 0,
"publish": 1
}
},
"voting": {
"status": false
},
"bots": {
"status": false,
"data": {
"token": ""
}
},
"tv": {
"status": false,
"data": {
"theme": "default",
"custom": {
"body_bg": "#000000",
"contents_color": "#FFFFFF",
"contents_active_bg": "#000000",
"categories_color": "#FFFFFF",
"categories_current_bg": "#22454c",
"categories_active_bg": "#2af8ff"
},
"subdomain": 0
}
},
"random": {
"status": true,
"data": {
"category": ["year","country","genre","type","content"],
"menu": "latest-movie-updates",
"index": 1,
"related": 1
}
}
};

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,143 @@
{
"movies": [
{
"kp_id": 843859,
"title_page": "Captain Marvel, superheroine 2019",
"description": "The lot of the brave girl Carol Danvers had a lot of tests. They were all on her shoulder and she became the best in her business. It would seem that in such a difficult profession as a pilot, not a place for the female sex, but not for our heroine. On one of the tasks, she is faced with something inexplicable and alien. Because of this intersection, Carol gains super strength and invulnerability. Great power and as a result, great responsibility now falls entirely on her, the powerful enemy is already close and only she can cope with it. © CinemaPress.io"
},
{
"kp_id": 840372,
"title_page": "Shazam!, superhero movie of 2019",
"description": "The protagonist of the film, a teenager with a rather nasty character. All his life he lived in different families and ran away from each house. And now fate gives him another chance to live in a loving family, which already has a disabled child. They go to the same school together and treat each other as friends, who obviously will not be friends for a long time. Everything changes when a disabled boy began to be offended and he stood up for his in a sense, step-brother. On the way home, he finds himself in an unusual place to the magician, who gives him an unusual ability. After uttering the word «Shazam!», He turns into a superhero. © CinemaPress.io"
},
{
"kp_id": 829407,
"title_page": "The Lego Movie 2: The Second Part in 2019",
"description": "5 years have passed since the events of the first Lego Film. The whole fictional world lived its wonderful life, until the moment when a new threat hung over their world. It came from the alien space invader LEGO DUPLO. The world in Lego Movie 2 does not have time to build up, as LEGO DUPLO destroys everything in its path. © CinemaPress.io"
},
{
"kp_id": 846824,
"title_page": "Toy Story 4, romantic adventure of 2019",
"description": "Woody and Baz set off on a truly courageous journey with one sole purpose, to find the love of Woody's whole life, namely, in the search for Bo Pip. This is a porcelain cowgirl, who played supporting roles in the first two parts, and in the third - minor ones. Now she will be the main motivator in the love story of the toy universe. © CinemaPress.io"
},
{
"kp_id": 1044601,
"title_page": "Glass, fantastic thriller of 2019",
"description": "The man with an incredibly large IQ - Mr. Glass, the injured psychiatrist Ellie Staple, David Dan - thinks he is a superhero who can feel and see all the sins of a man once he touches him, and finally the guy who fit 24 people in his body. What unites these people and what is their motivation? © CinemaPress.io"
}
],
"contents": [
{
"content_url": "order-table",
"content_title": "Order table",
"content_description": "Order table",
"content_tags": "Pages",
"content_image": "",
"content_movies": ""
},
{
"content_url": "chat-for-users",
"content_title": "Chat for users",
"content_description": "Chat for users",
"content_tags": "Pages",
"content_image": "",
"content_movies": ""
},
{
"content_url": "information-for-the-copyright",
"content_title": "Information for the copyright",
"content_description": "This movie site is an informational catalog of films that is generated automatically. All information is obtained from open sources and is not protected by copyright. Movie players are located on third-party video hosting (YouTube, etc.) and the site administration is not responsible for what is in them. For questions about copyright, contact the owners of video hosting sites directly.",
"content_tags": "Pages,NoComment",
"content_image": "",
"content_movies": ""
},
{
"content_url": "contact-information",
"content_title": "Contact information",
"content_description": "To contact the administration write to the email address listed at the bottom of the page.",
"content_tags": "Pages,NoComment",
"content_image": "",
"content_movies": ""
},
{
"content_url": "date-of-the-premiere-of-toy-story-4",
"content_title": "Date of the premiere of «Toy Story 4»",
"content_description": "Disney and Pixar announced when Toy Story 4 will be available in theaters. According to the official post on Facebook, the fourth part of the popular series will be released on June 21, 2019.<br><br>The plot details are not disclosed at the moment. If you believe the rumors, the «Toy Story 4» will not be a direct continuation of the third film, where the Buzz, Woody and the company remained with the girl. Instead, the fourth part focuses on the relationship between Bo Pip and Woody and describes how the porcelain cowgirl reunited with other toys.<br><br>Bo Pip performed by actress Annie Potts appeared in the first two films of the series, but she is present in Toy Story 3 only in flashback and devoid of replicas.",
"content_tags": "News",
"content_image": "/files/content/news7.png",
"content_movies": "482,405,258328"
},
{
"content_url": "hi-and-i-m-a-superhero",
"content_title": "Hi, and I'm a superhero!",
"content_description": "14-year-old Billy Batson (Asher Angel) once met the 3,000-year-old wizard Shazam (Jimon Khonsu). The old man told Billy about the magic word, thanks to which the boy had the opportunity to turn into a mighty warrior, called to protect the world from the forces of evil.<br><br>Having received incredible opportunities and an adult body, Billy begins to amuse himself while Freddies best friend (Jack Dylan Grazer) tries to teach him be a real superhero. But the appearance of a flying man in a bright red suit does not go unnoticed. A mad scientist, Dr. Sivana (Mark Strong), who dreams of taking Shazam's magic under control, begins to be interested in him.<br><br>Official Trailer:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/go6GEIrcvFY' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "News",
"content_image": "/files/content/news8.png",
"content_movies": "840372"
},
{
"content_url": "glass-cinema-universe-in-2019",
"content_title": "«Glass» Cinema Universe in 2019",
"content_description": "Multiple personality disorder Kevin (James McAvoy) and disabled terrorist Mr. Glass (Samuel L. Jackson) go out to their long-time opponents - the injured Casey girl (Anya Taylor-Joy) and the aging «superhero» David Dunn (Bruce Willis).<br><br>Jackson, Willis, Taylor-Joy and Sarah Paulson arrived in San Diego with the director. M. Night Shyamalan told that the film «Split» was born at Comic-Con. The director came to one of the parties during the convention, and James McAvoy approached him with the words «I love your movies». «Then I understood: here is my hero, this is how he looks», the director said.<br><br>It is interesting that when the film «Invulnerable» was released, Disney Studio was so afraid of the negative about the comic book adaptations that it was forbidden to mention superheroes or advertisements.<br><br>Official Trailer:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/95ghQs5AmNk' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "News",
"content_image": "/files/content/news9.png",
"content_movies": "1044601,930534,866"
},
{
"content_url": "space-battle-before-the-final-battle",
"content_title": "Space battle before the final battle",
"content_description": "1990s Carol Danvers (Bree Larson), a pilot of the United States Air Force, finds himself in a strange situation: as a result of an experiment with an unknown alien device, her DNA is mixed with the genetic code of a newcomer from the warlike Cree race. Danvers becomes super strong and almost invulnerable, gets the opportunity to fly and absorb energy.<br><br>So Danvers is in a special squad of Cree, who, under the command of the fearless Mar-Vella (Jude Law), defends the galactic Empire. Leaving her post makes the threat looming over the Earth: a race of scrubbers under the leadership of the bloodthirsty Talos (Ben Mendelsohn) began an operation to invisibly capture the planet. Danvers plans to stop the invasion and travels to Earth, where he meets the young operative Nick Fury (Samuel L. Jackson).<br><br>«Captain Marvel» is an important project for Marvel. The studio is going to present a new character that actually existed inside the universe long before Iron Man. At one time it worked with Captain America and Thor, but then the whole franchise was in its infancy and had not yet been formed. Brie Larson will join the established chronology and, apparently, help the Avengers defeat Thanos.<br><br>Official Trailer:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/Z1BCujX3pw8' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "News",
"content_image": "/files/content/news10.png",
"content_movies": "843859,263531,679830,843649,843650"
},
{
"content_url": "new-mortal-kombat-will-be-with-blood-and-fatality",
"content_title": "New Mortal Kombat will be with blood and fatality",
"content_description": "The new Mortal Kombat is due to be released in 2021, and according to the script's author on Twitter, each battle will end FINALLY, and to make it colorful and effective, the film will be rated R. Mortal Kombat is a series of video games in the genre of fighting. The first film adaptation of «Mortal Kombat» was released in 1995, then 2 years later the sequel «Mortal Kombat 2: Extermination» is released.<br>The actor for the role of Sub-Ziro in the new film has already been approved, it will be Joe Taslim, known for the action movies «Serbuan Maut» and «The Night Comes for Us». The plot of the film is unknown. However, it is clear that the authors intend to ignore past film adaptations and restart with the original story in the world of Mortal Kombat.",
"content_tags": "News",
"content_image": "/files/content/news11.png",
"content_movies": "22355,8062,591792,1011846"
},
{
"content_url": "kingsman-s-prequel-will-tell-how-it-all-began",
"content_title": "Kingsman's prequel will tell how it all began",
"content_description": "The King's Man is a prequel to the popular Kingsman action franchise. Director Matthew Vaughn decided to recreate the historical drama and show the main events of history through the eyes of the spy «Kingsman», for which he transferred the action during the First World War. The film will feature key historical figures, including Grigory Rasputin, Gavril Princip and Mat Hari.<br>«Kingsman» is an organization of spies that works for the benefit of mankind away from the prying eyes of ordinary people. And one of the first and most brilliant operatives in history is Conrad (Harris Dickinson), the young and arrogant son of the Duke of Oxford. Like many of his friends, he dreamed of serving for the good of Great Britain, but in the end he was drawn into the secret world of spies and murderers.<br><br>Trailer:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/e82JHkkPw54' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "News",
"content_image": "/files/content/news12.png",
"content_movies": "749540,906654,1045056"
},
{
"content_url": "vampire-movies",
"content_title": "Vampire movies",
"content_description": "Vampire movies",
"content_tags": "Collections",
"content_image": "/files/content/collection1.png",
"content_movies": "1044004,910085,8151,1727,4815,521,3491,8033,565819,8436,22872,4554,9418,613,12345,825,264350,401177,4756,427795,195718,467118,472368,6904,542576,2495,20793,483364,102393,258759,26056,31517"
},
{
"content_url": "love-movies",
"content_title": "Love movies",
"content_description": "Love movies",
"content_tags": "Collections",
"content_image": "/files/content/collection2.png",
"content_movies": "428837,692232,381,356,456,2213,497,3561,10156,45660,1991,17721,1996,330,5492,341,437,1886,81733,77132,463724,539550,8125,81584,8143,6144,420,875,102152,390,662596,724703,102130,11130,463,11662,3795,495518,821,63920,1589,198028,880,390738,102128,196855,104927,409372,85182,461782,724,321842,398239,522876,77437,462342,493992,77466,258689,621,7662,1794,704,317889,105948,462938,278171,505811,523362,582764,463695,502937,1000125,652758"
},
{
"content_url": "zombie-movies",
"content_title": "Zombie movies",
"content_description": "Zombie movies",
"content_tags": "Collections",
"content_image": "/files/content/collection3.png",
"content_movies": "463401,996225,590885,195524,801,577,427122,64021,8370,5916,17159,36544,2894,55945,197615,9923,325598,261636,9917,497077,95434,24186,273063,32282,417895,222496,88172,195870,62623,397229,81601,409208,260981,426314"
},
{
"content_url": "latest-movie-updates",
"content_title": "Latest movie updates",
"content_description": "Latest movie updates",
"content_tags": "Collections,Updates",
"content_image": "/files/content/collection4.png",
"content_movies": "926540,839650,843649,961715,737859,924311,1035311,935940,841277,983177,463634,843859"
}
]
}

View File

@ -0,0 +1,377 @@
module.exports = {
"database": {
"key": "FREE",
"date": ""
},
"protocol": "http://",
"subdomain": "",
"domain": "example.com",
"email": "support@example.com",
"theme": "default",
"country": "RU",
"language": "ru",
"geolite2": {
"countries": [],
"ips": []
},
"image": {
"addr": "k.1poster.net",
"size": 180,
"proxy": 0
},
"cache": {
"time": 3600,
"addr": "127.0.0.1:11211"
},
"sphinx": {
"addr": "127.0.0.1:9306"
},
"nginx": {
"addr": "127.0.0.1:3000"
},
"loadavg": {
"one": 480,
"five": 360,
"fifteen": 240,
"message": "Сервер перегружен на <i>[percent]%</i>, пожалуйста зайдите позже."
},
"publish": {
"start": 400000,
"stop": 1100000,
"every" : {
"hours": 1,
"movies": 2
},
"text": 0,
"required": [
"title_ru",
"poster"
],
"thematic": {
"type": "",
"year": "",
"genre": "",
"country": "",
"actor": "",
"director": "",
"query_id": "",
"search": "",
"kp_vote": 0,
"imdb_vote": 0
}
},
"default": {
"count": 15,
"sorting": "kinopoisk-vote-up",
"pages": 4,
"lastpage": 0,
"days": 0,
"image": "/themes/default/public/desktop/img/player.png",
"votes": {
"kp": 5000,
"imdb": 5000
},
"donotuse": ["actor","director","search"],
"categories": {
"countries": ["США","Россия","СССР","Индия","Франция","Япония","Великобритания","Испания","Италия","Канада"],
"genres": ["аниме","биография","боевик","вестерн","военный","детектив","детский","документальный","драма","игра","история","комедия","концерт","короткометражка","криминал","мелодрама","музыка","мультфильм","мюзикл","новости","приключения","реальное ТВ","семейный","спорт","ток-шоу","триллер","ужасы","фантастика","фильм-нуар","фэнтези","церемония"],
"years": ["2019","2018","2017","2016","2015","2014","2013","2012","2011","2010"]
},
"types": {
"movie": "!мультфильм !аниме !короткометражка !шоу !новости !реальное !церемония !концерт !детский !документальный",
"serial": "!аниме !короткометражка",
"mult": "мультфильм | детский !аниме !короткометражка",
"multserial": "мультфильм | детский !аниме !короткометражка",
"anime": "аниме",
"tv": "шоу | новости | реальное | церемония | концерт"
},
"moment": "DD MMM YYYY"
},
"codes": {
"head": "",
"footer": "",
"robots": "User-agent: *\nDisallow: /\nDisallow: /type/*/*\nDisallow: /movie/*/*\nDisallow: /year/*/*\nDisallow: /genre/*/*\nDisallow: /country/*/*\nDisallow: /director/*/*\nDisallow: /actor/*/*\nDisallow: /search\nDisallow: /*?sorting*\nDisallow: /*?tag*\nDisallow: /*?q*\nDisallow: /*?random*\nDisallow: /*?PageSpeed*\nDisallow: /*?desktop*\nDisallow: /iframe\nDisallow: /noindex\nDisallow: /admin*"
},
"index": {
"type": {
"name": "Лучшие [type]",
"keys": "",
"sorting": "kinopoisk-rating-up",
"count": 15,
"order": 2
},
"year": {
"name": "Фильмы [year] года",
"keys": "2019",
"sorting": "premiere-up",
"count": 15,
"order": 3
},
"genre": {
"name": "Фильмы в жанре [genre]",
"keys": "",
"sorting": "imdb-vote-up",
"count": 10,
"order": 4
},
"country": {
"name": "Фильмы из страны [country]",
"keys": "",
"sorting": "imdb-rating-up",
"count": 10,
"order": 5
},
"actor": {
"name": "Лучшие фильмы [actor]",
"keys": "",
"sorting": "kinopoisk-vote-up",
"count": 10,
"order": 6
},
"director": {
"name": "Лучшие фильмы [director]",
"keys": "",
"sorting": "kinopoisk-vote-up",
"count": 10,
"order": 7
},
"ids": {
"name": "Новые фильмы",
"keys": "",
"count": 10,
"order": 1
},
"count": {
"type": "year",
"key": "2019",
"sorting": "premiere-up"
},
"link": 0
},
"titles": {
"index": "Легальный каталог фильмов",
"year" : "Фильмы [year] года [sorting] [page]",
"years" : "Фильмы по годам",
"genre": "Фильмы в жанре [genre] [sorting] [page]",
"genres" : "Фильмы по жанрам",
"country": "Фильмы из страны [country] [sorting] [page]",
"countries": "Фильмы по странам",
"actor": "Фильмы с участием [actor] [sorting] [page]",
"actors": "Самые популярные актеры",
"director": "Фильмы которые срежиссировал [director] [sorting] [page]",
"directors": "Самые популярные режиссеры",
"type": "[type] [sorting] [page]",
"search": "Поиск фильма «[search]» [sorting] [page]",
"num": "на странице [num]",
"movie": {
"movie": "[title]",
"online": "[title] онлайн",
"download": "[title] скачать",
"trailer": "[title] трейлер",
"picture": "[title] кадры"
},
"sorting": {
"kinopoisk-rating-up": "отсортировано по рейтингу КиноПоиска",
"kinopoisk-rating-down": "отсортировано по рейтингу КиноПоиска",
"imdb-rating-up": "отсортировано по рейтингу IMDb",
"imdb-rating-down": "отсортировано по рейтингу IMDb",
"kinopoisk-vote-up": "отсортировано по популярности на КиноПоиске",
"kinopoisk-vote-down": "отсортировано по популярности на КиноПоиске",
"imdb-vote-up": "отсортировано по популярности на IMDb",
"imdb-vote-down": "отсортировано по популярности на IMDb",
"year-up": "отсортировано по году",
"year-down": "отсортировано по году",
"premiere-up": "отсортировано по дате премьеры",
"premiere-down": "отсортировано по дате премьеры"
}
},
"h1": {
"index": "Все фильмы в мире",
"year" : "Фильмы [year] года [sorting] [page]",
"years" : "Фильмы по годам",
"genre": "Фильмы в жанре [genre] [sorting] [page]",
"genres" : "Фильмы по жанрам",
"country": "Фильмы из страны [country] [sorting] [page]",
"countries": "Фильмы по странам",
"actor": "Фильмы с участием [actor] [sorting] [page]",
"actors": "Самые популярные актеры",
"director": "Фильмы которые срежиссировал [director] [sorting] [page]",
"directors": "Самые популярные режиссеры",
"type": "[type] [sorting] [page]",
"search": "Поиск фильма «[search]» [sorting] [page]",
"num": "на странице [num]",
"movie": {
"movie": "[title]",
"online": "[title] [year] онлайн",
"download": "[title] [year] скачать",
"trailer": "[title] [year] трейлер",
"picture": "[title] [year] кадры"
},
"sorting": {
"kinopoisk-rating-up": "отсортировано по рейтингу КиноПоиска",
"kinopoisk-rating-down": "отсортировано по рейтингу КиноПоиска",
"imdb-rating-up": "отсортировано по рейтингу IMDb",
"imdb-rating-down": "отсортировано по рейтингу IMDb",
"kinopoisk-vote-up": "отсортировано по популярности на КиноПоиске",
"kinopoisk-vote-down": "отсортировано по популярности на КиноПоиске",
"imdb-vote-up": "отсортировано по популярности на IMDb",
"imdb-vote-down": "отсортировано по популярности на IMDb",
"year-up": "отсортировано по году",
"year-down": "отсортировано по году",
"premiere-up": "отсортировано по дате премьеры",
"premiere-down": "отсортировано по дате премьеры"
}
},
"descriptions": {
"index": "Сколько фильмов Вам удалось посмотреть на данный момент? Вероятней всего, довольно много, несколько сотен, а может и тысяч, если Вы заядлый киноман и не представляете себе вечер, без просмотра одного или нескольких кинолент. Либо Вы возможно очень любите сериалы и вечера проводите за просмотром нескольких серий увлекательного сериала. Как бы там ни было, Мы очень рады что Вы выбрали Наш сайт, как площадку для обсуждения и дискуссий с такими же кинолюбителями, как и Вы. Усаживайтесь поудобней, заварите чаю и да начнётся <span style='text-decoration:line-through'>срач</span> критика :)",
"year" : "Фильмы [year] года",
"years" : "Фильмы по годам",
"genre": "Фильмы в жанре [genre]",
"genres" : "Фильмы по жанрам",
"country": "Фильмы из страны [country]",
"countries": "Фильмы по странам",
"actor": "Фильмы с участием [actor]",
"actors": "Самые популярные актеры",
"director": "Фильмы которые срежиссировал [director]",
"directors": "Самые популярные режиссеры",
"type": "[type]",
"search" : "Поиск фильма «[search]»",
"movie": {
"movie": "Картина «[title]» была выпущена в [year] году и сразу завоевала внимание зрителей в разных [уголках Земли|частях планеты]. Киноленты из жанра [genre] всегда пользовались особой популярностью, к тому же, когда их снимают такие именитые режиссеры, как [director]. Страна, которая приложила руку к этому кинопроизведению считается [country], потому зрители уже могут приблизительно представить уровень [красочности|логики|картинки|искусства] по аналогичным творениям.",
"online": "[title] онлайн",
"download": "[title] скачать",
"trailer": "[title] трейлер",
"picture": "[title] кадры"
}
},
"sorting": {
"kinopoisk-rating-up": "По рейтингу КП ⬆",
"kinopoisk-rating-down": "По рейтингу КП ⬇",
"imdb-rating-up": "По рейтингу IMDb ⬆",
"imdb-rating-down": "По рейтингу IMDb ⬇",
"kinopoisk-vote-up": "По популярности КП ⬆",
"kinopoisk-vote-down": "По популярности КП ⬇",
"imdb-vote-up": "По популярности IMDb ⬆",
"imdb-vote-down": "По популярности IMDb ⬇",
"year-up": "По году ⬆",
"year-down": "По году ⬇",
"premiere-up": "По дате премьеры ⬆",
"premiere-down": "По дате премьеры ⬇"
},
"urls": {
"prefix_id": "id",
"unique_id": 0,
"separator": "-",
"translit": 0,
"movie_url": "[prefix_id][separator][title]",
"movie": "movie",
"year" : "year",
"genre": "genre",
"country": "country",
"actor": "actor",
"director": "director",
"type": "type",
"search" : "search",
"sitemap" : "sitemap",
"admin": "admin-secret",
"types": {
"serial": "сериалы",
"movie": "фильмы",
"mult": "мультфильмы",
"multserial": "мультсериалы",
"tv": "передачи",
"anime": "аниме"
},
"movies": {
"online": "",
"download": "",
"trailer": "",
"picture": ""
},
"noindex": ""
},
"l": {
"more": "Подробнее",
"home": "Главная",
"information": "Информация",
"online": "Онлайн",
"download": "Скачать",
"trailer": "Трейлер",
"picture": "Кадры",
"episode": "Серия",
"movies": "Фильмы",
"series": "Сериалы",
"cartoons": "Мультфильмы",
"animated": "Мультсериалы",
"tv": "ТВ",
"anime": "Аниме",
"collection": "Коллекция",
"collections": "Коллекции",
"season": "Сезон",
"year": "Год",
"years": "Годы",
"genre": "Жанр",
"genres": "Жанры",
"actor": "Актер",
"actors": "Актеры",
"director": "Режиссер",
"directors": "Режиссеры",
"country": "Страна",
"countries": "Страны",
"quality": "Качество",
"translate": "Перевод",
"premiere": "Премьера",
"rating": "Рейтинг",
"kp": "КиноПоиск",
"imdb": "IMDb",
"episodes": "серии",
"storyline": "Описание",
"later": "Досмотреть позже",
"continue": "Продолжить",
"saved": "Сохранено",
"allCategories": "Все категории",
"allYears": "Все годы",
"allGenres": "Все жанры",
"allCountries": "Все страны",
"allActors": "Все актеры",
"allDirectors": "Все режиссеры",
"watched": "Вы недавно смотрели",
"search": "Поиск",
"share": "Поделиться",
"subscribe": "Подписаться",
"vk": "ВКонтакте",
"facebook": "facebook",
"twitter": "Twitter",
"google": "Google",
"telegram": "Telegram",
"youtube": "YouTube",
"instagram": "Instagram",
"up": "Вверх",
"soon": "Скоро выйдут",
"contacts": "Контакты",
"news": "Новости",
"menu": "Меню",
"comments": "Комментарии",
"movieTitle": "Название фильма",
"votes": "голосов",
"hide": "Скрыть",
"navigation": "Навигация",
"and": "и",
"overall": "Общий",
"premieres": "Премьеры",
"popular": "Популярные",
"top": "Топ",
"sorting": "Сортировка",
"tags": "Теги",
"mentions": "Упоминания",
"said": "сказал(а)",
"full": "Полная версия",
"original": "Оригинал",
"notFound": "Данной страницы нет на сайте. Возможно Вы ошиблись в URL или это внутренняя ошибка сайта, о которой администратор уже знает и предпринимает действия для её устранения.",
"notMobile": "Мобильная версия сайта не активирована. Сайт адаптируется под экран и одинаково прекрасно отображается, как на больших экранах, так и на мобильных устройствах под управлением iOS, Android или WindowsPhone.",
"notTv": "ТВ версия сайта не активирована.",
"lucky": "Мне повезет!",
"random": "Случайный фильм из категории",
"results": "Все результаты"
}
};

View File

@ -0,0 +1,518 @@
module.exports = {
"comments": {
"status": true,
"data": {
"cackle": {
"id": "",
"siteApiKey": "",
"accountApiKey": ""
},
"hypercomments": {
"widget_id": "",
"sekretkey": "",
"recent": {
"num_items": 0,
"excerpt_length": 250,
"display": [
"index"
]
}
},
"disqus": {
"shortname": "cinemapress-ru",
"api_key": "",
"recent": {
"num_items": 5,
"excerpt_length": 250,
"hide_avatars": 0,
"display": [
"index"
]
}
},
"facebook": {
"admins": ""
},
"vk": {
"app_id": ""
},
"sigcomments": {
"host_id": ""
}
}
},
"slider": {
"status": true,
"data": {
"count": 0,
"url": "",
"movies": ["1047883","460586","843650","843859","840372","1044601","1008445","1009536","1007049","994864","1005878","846824","706655","840045","843649","961715","924311","935940","926540","839650","840829","843479","843790"]
}
},
"abuse": {
"status": true,
"data": {
"imap": {
"user": "",
"password": "",
"host": "",
"port": 993,
"tls": 1
},
"country": 0,
"status_code_country": 200,
"status_code_list": 404,
"message": "Просмотр запрещен, сайт соблюдает<br>закон об авторском праве в цифровую эпоху!<br><br><img src=\"/themes/default/public/desktop/img/dmca.png\" alt=\"DMCA\">",
"movies": ["957762","927771","893880","893520","861616","838952","882285","948999","840818","932512","843821","908406","840234","839818"]
}
},
"top": {
"status": true,
"data": {
"sorting": "imdb-vote-up",
"count": 15
}
},
"soon": {
"status": true,
"data": {
"count": 2,
"movies": []
}
},
"social": {
"status": false,
"data": {
"vk": "https://vk.com/CinemaPress",
"facebook": "https://www.facebook.com/CinemaPress.io",
"twitter": "https://twitter.com/CinemaPress_org",
"telegram": "https://t.me/CinemaPress_org",
"instagram": "https://www.instagram.com/CinemaPressOrg",
"youtube": "https://www.youtube.com/channel/UCRW63_nu-cWw2obv6k04Pow"
}
},
"related": {
"status": true,
"data": {
"display": [
"year"
],
"types": {
"year": {
"count": 6,
"name": "Фильмы [year] года",
"sorting": "kinopoisk-vote-up"
},
"genre": {
"count": 5,
"name": "Фильмы в жанре - [genre]",
"sorting": "kinopoisk-vote-up"
},
"country": {
"count": 10,
"name": "Фильмы из страны - [country]",
"sorting": "kinopoisk-vote-up"
},
"actor": {
"count": 15,
"name": "Лучшие фильмы актера - [actor]",
"sorting": "kinopoisk-vote-up"
},
"director": {
"count": 5,
"name": "Лучшие фильмы режиссера - [director]",
"sorting": "kinopoisk-vote-up"
}
},
"same": 1,
"link": 0
}
},
"schema": {
"status": false
},
"continue": {
"status": false
},
"viewed": {
"status": true,
"data": {
"count": 20
}
},
"player": {
"status": true,
"data": {
"display": "yohoho",
"yohoho": {
"player": "moonwalk,hdgo,kodik,iframe,videocdn,trailer",
"trailer": "",
"bg": "#14181C",
"button": ""
},
"moonwalk": {
"token": ""
},
"hdgo": {
"token": ""
},
"iframe": {
"token": ""
},
"kodik": {
"token": ""
},
"youtube": {
"token": ""
},
"videocdn": {
"token": ""
}
}
},
"blocking": {
"status": true,
"data": {
"display": "legal",
"share": {
"time": 60,
"message": "Поделитесь фильмом в одну из социальных сетей чтобы начать просмотр или подождите [timer] секунд и данное сообщение исчезнет."
},
"sub": {
"keys": ["CP06368342850052267","CP10020891099182505","CP46955642915431706"],
"message": "Просмотр доступен только по подписке. Приобретите подписку и активируйте ключ. <p><a href=\"https://digiseller.ru/\" target=\"_blank\" style=\"color:white;\">Купить подписку</a></p>"
},
"adv": {
"time": 10,
"code": "<div class=rklma>Блок с Вашей рекламой в плеере</div>",
"message": "Реклама позволяет Вам смотреть фильмы бесплатно. Пожалуйста отнеситесь к этому с пониманием. Вы сможете начать просмотр через [timer] секунд.",
"skip": ""
},
"adblock": {
"time": 60,
"message": "Вы используете AdBlock или другие блокировщики рекламы. Пожалуйста отключите их на Нашем сайте чтобы не ждать. Вы сможете начать просмотр через [timer] секунд."
},
"legal": {
"time": 20,
"countries": [],
"message": "Трейлер появится, через [timer] секунд. Чтобы отображать на этом месте плеер фильма, отключите <a href=\"/admin/blocking\" target=\"_blank\" style=\"color:white;\">в админ-панели модуль «Блокировка»</a>.\n\n<br><br>\n\n<div class=search-ggl onclick=\"window.open('https://href.li/?https://google.com/search?&tbm=vid&q=[title] [year] смотреть онлайн','_blank')\">Смотреть онлайн в <span class=g>G</span><span class=o>o</span><span class=o>o</span><span class=g>g</span><span class=l>l</span><span class=e>e</span></div>\n\n<div class=search-ynd onclick=\"window.open('https://href.li/?https://yandex.fr/video/search?text=[title] [year] смотреть онлайн','_blank')\">Смотреть онлайн в <span class=y>Я</span>ндекс</div>"
}
}
},
"mobile": {
"status": false,
"data": {
"theme": "light",
"custom": {
"a": "#99AABB",
"hover": "#FFFFFF",
"body_color": "#FFFFFF",
"body_bg": "#14181C",
"title_color": "#FFFFFF",
"title_bg": "#445566",
"description_color": "#FFFFFF",
"description_bg": "#242D35",
"block": "#2C3641",
"form": "#2C3641",
"btn_color": "#FFFFFF",
"btn_bg": "#14181C"
},
"subdomain": 0
}
},
"episode": {
"status": false,
"data": {
"title": "[title] [season] сезон [episode] серия в озвучке [translate]",
"h1": "[title] [season] сезон [episode] серия в озвучке [translate]",
"description": "[title] [season] сезон [episode] серия в озвучке [translate]",
"season": "сезон",
"episode": "серия",
"translate": "Перевод:",
"default": "Оригинал",
"source": "moonwalk",
"index": {
"name": "Новые серии сериалов",
"count": 12,
"order": 2,
"latest": 0
}
}
},
"adv": {
"status": false,
"data": {
"target": 0,
"desktop": {
"all": {
"over": "<div class=rklma>Блок с Вашей рекламой над плеером</div>",
"under": "<div class=rklma>Блок с Вашей рекламой под плеером</div>",
"top": "<div class=rklma>Блок с Вашей рекламой вверху страницы</div>",
"bottom": "<div class=rklma>Блок с Вашей рекламой внизу страницы</div>",
"left": "<div class=rklma>Блок с Вашей рекламой слева страницы</div>",
"right": "<div class=rklma>Блок с Вашей рекламой справа страницы</div>"
},
"index": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"category": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"categories": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"movie": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"online": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"download": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"picture": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"trailer": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"episode": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
}
},
"mobile": {
"all": {
"over": "<div class=rklma>Блок с Вашей рекламой над плеером</div>",
"under": "<div class=rklma>Блок с Вашей рекламой под плеером</div>",
"top": "<div class=rklma>Блок с Вашей рекламой вверху страницы</div>",
"bottom": "<div class=rklma>Блок с Вашей рекламой внизу страницы</div>",
"left": "<div class=rklma>Блок с Вашей рекламой слева страницы</div>",
"right": "<div class=rklma>Блок с Вашей рекламой справа страницы</div>"
},
"index": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"category": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"categories": {
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"movie": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"online": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"download": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"picture": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"trailer": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
},
"episode": {
"over": "",
"under": "",
"top": "",
"bottom": "",
"left": "",
"right": ""
}
}
}
},
"content": {
"status": true,
"data": {
"title": "Страницы сайта",
"h1": "Страницы сайта",
"description": "Страницы сайта",
"url": "content",
"news": {
"count": 2,
"tags": "Новости"
},
"index": {
"count": 12,
"url": "poslednie-obnovleniya-filmov",
"order": 2
},
"movie": {
"count": 2,
"tags": "Обновления"
},
"auto": {
"moonwalk_movies": {
"count": 12,
"url": "poslednie-obnovleniya-filmov",
"quality": 0,
"translate": 0
},
"moonwalk_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
},
"hdgo_movies": {
"count": 12,
"url": "poslednie-obnovleniya-filmov",
"quality": 0,
"translate": 0
},
"hdgo_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
},
"kodik_movies": {
"count": 12,
"url": "poslednie-obnovleniya-filmov",
"quality": 0,
"translate": 0
},
"kodik_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
},
"iframe_movies": {
"count": 12,
"url": "poslednie-obnovleniya-filmov",
"quality": 0,
"translate": 0
},
"iframe_serials": {
"count": 0,
"url": "",
"quality": 0,
"translate": 0
}
},
"scraper": ""
}
},
"rss": {
"status": false
},
"rewrite": {
"status": false,
"data": {
"token": "",
"double": 1,
"unique": 0,
"publish": 1
}
},
"voting": {
"status": false
},
"bots": {
"status": false,
"data": {
"token": ""
}
},
"tv": {
"status": false,
"data": {
"theme": "default",
"custom": {
"body_bg": "#000000",
"contents_color": "#FFFFFF",
"contents_active_bg": "#000000",
"categories_color": "#FFFFFF",
"categories_current_bg": "#22454c",
"categories_active_bg": "#2af8ff"
},
"subdomain": 0
}
},
"random": {
"status": true,
"data": {
"category": ["year","country","genre","type","content"],
"menu": "poslednie-obnovleniya-filmov",
"index": 1,
"related": 1
}
}
};

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,218 @@
{
"movies": [
{
"kp_id": 843859,
"title_page": "Капитан Марвел, супергероиня 2019 года",
"description": "На долю отважной девушки Кэрол Дэнверс выпало немало испытаний. Они все были ей по плечу и она стала лучшей в своём деле. Казалось бы в такой нелёгкой профессии, как пилот, не место женскому полу, но только не для нашей героини. На одном из заданий, она сталкивается с чем-то необъяснимым и инопланетным. Вследствие этого пересечения Кэрол получает суперсилу и неуязвимость. Большая сила и как следствие большая ответственность теперь ложится полностью на неё, могущественный враг уже близко и совладать с ним сможет только она. © CinemaPress.io"
},
{
"kp_id": 840372,
"title_page": "Шазам!, супергеройский фильм 2019 года",
"description": "Главный герой фильма, подросток с достаточно скверным характером. Всю свою жизнь он жил в разных семьях и с каждого дома сбегал. И вот судьба предоставляем ему еще один шанс, пожить в любящей семье, у которой уже есть ребенок-инвалид. Они вместе ходят в одну школу и относятся к друг-другу как к знакомым, которые явно долго дружить не будут. Всё меняется когда мальчика-инвалида начали обижать и он заступился за своего в каком-то смысле сводного брата. По дороге домой, он попадает в необычное место к чародею, который наделяет его необычной способностью. После произнесения слова «Шазам!», он превращается в супергероя. © CinemaPress.io"
},
{
"kp_id": 829407,
"title_page": "Лего Фильм вторая часть в 2019 году",
"description": "Прошло 5 лет с момента событий первого Лего Фильма. Весь вымышленный мир жил своей чудесной жизнью, до момента, пока над их миром не нависла новая угроза. Она исходила от инопланетного космического захватчика LEGO DUPLO. Мир в Лего Фильме 2 не успевает отстраиваться, как LEGO DUPLO всё разрушает на своём пути. © CinemaPress.io"
},
{
"kp_id": 846824,
"title_page": "История игрушек 4, романтическое приключение 2019 года",
"description": "Вуди и Баз отправляются в поистине отважное путешествие с одной единственной целью, отыскать любовь всей жизни Вуди, а именно на поиски Бо Пип. Это фарфоровая пастушка, которая в первых двух частях играла вспомогательные роли, а в третьей - второстепенную. Сейчас же она будет главным мотиватором в любовной истории игрушечной вселенной. © CinemaPress.io"
},
{
"kp_id": 1044601,
"title_page": "Стекло, фантастический триллер 2019 года",
"description": "Человек, с невероятно большим IQ - Мистер Стекло, травмированная девушка-психиатр Элис Стайпл, Дэвид Дан - мнит себя супергероем, который может чувствовать и видеть все грехи человека, единожды прикоснувшись к нему, и наконец парень, который в своём теле уместил 24 личности. Что объединяет этих людей и какая у них мотивация? © CinemaPress.io"
},
{
"kp_id": 695548,
"translate": "BadComedian",
"player": "https://www.youtube.com/embed/ym0o49jxcSI",
"title_page": "ЧУЖОЙ: Завет (Alien Vs. Дебилы)",
"description": "Космический корабль под названием «Завет» бороздил просторы космоса, пока не наткнулся на неизвестную планету. Начав её обследование, все члены экипажа подумали, что они попали в рай, но не всё так радостно. Этот мир таит в себе опасность, с которой им еще предстоит встретиться лицом к лицу. Вы уже поняли, что это за «муть»? - Мы тоже. Потому подготовили для Вас обзор этого фильма от BadComedian. Лучше проведите этот час с улыбкой на лице и всего плохого! © CinemaPress.io"
},
{
"kp_id": 484628,
"title_page": "Фильм о 7 сестрах близняшках",
"description": "Будущее наступило и население планеты достигло своего максимума. Теперь запрещено иметь в семье больше одного ребенка, но что делать, если рождается сразу 7 сестер-близняшек? Родители решают оставить их и дают им имена дней недели. Таким образом каждая сестра появляется на людях только с один день в неделю. Но что делать, когда одна из сестер пропадает? © CinemaPress.io"
},
{
"kp_id": 468940,
"title_page": "Пляжные спасатели Малибу 2017",
"description": "Пляжные спасатели на берегу Тихого Океана изо дня в день охраняют побережье и его посетителей от несчастных случаях на воде. Однажды главные герои Митч Бьюкеннон, и его молодой коллега Мэтт Броди, случайно узнают о надвигающейся опасности на их пляж. Его хочет убрать большая нефтяная компания, которая преследует колоссальный коммерческий успех. Как поступить в такой ситуации, зная что завтра ты можешь лишиться работы, естественно - действовать. © CinemaPress.io"
},
{
"kp_id": 575180,
"title_page": "Пираты Карибского моря 5 часть 2017 года",
"description": "Отважный и в меру «глуповатый» капитан Джек Воробей бороздит просторы моря уже много лет. За это время он успел нажить как друзей, так и заклятых врагов. Одним из последних есть капитан Салазар и похоже он настроен покорить море, путем убийства всех пиратов, включая Джека. Спасение от такой участи только одно - найти трезубец Посейдона, который подарит своему обладателю полный контроль над всеми морями. © CinemaPress.io"
},
{
"kp_id": 589290,
"title_page": "Экранизация книги «Мечтают ли андроиды об электроовцах?»",
"description": "Над человечеством нависла угроза, грядёт день, когда все живое на планете Земля исчезнет. Именно такую информацию получил офицер полиции Кей. Зная такое, нельзя сидеть сложа руки, а нужно действовать. Чтобы приблизиться к разгадке, Кей решает отыскать Рика Декарда, который бесследно исчез несколько лет назад. Рик так же был офицером, в отряде специального подразделения Лос-Анджелеса. © CinemaPress.io"
}
],
"contents": [
{
"content_url": "stol-zakazov",
"content_title": "Стол заказов",
"content_description": "Стол заказов",
"content_tags": "Страницы",
"content_image": "",
"content_movies": ""
},
{
"content_url": "chat-dlya-polzovateley",
"content_title": "Чат для пользователей",
"content_description": "Общаемся на любые темы.",
"content_tags": "Страницы",
"content_image": "",
"content_movies": ""
},
{
"content_url": "informaciya-dlya-pravoobladatelya",
"content_title": "Информация для правообладателя",
"content_description": "Данный киносайт является информационным каталогом фильмов, который формируется в автоматическом режиме. Вся информация получена из открытых источников и не защищена авторским правом. Плееры фильмов находятся на сторонних видео-хостингах (YouTube и т.п.) и администрация сайта не несёт ответственности за то, что в них находится. Для решения вопросов по поводу авторского права, обращайтесь напрямую к владельцам видео-хостингов.",
"content_tags": "Страницы,NoComment",
"content_image": "",
"content_movies": ""
},
{
"content_url": "kontaktnaya-informaciya",
"content_title": "Контактная информация",
"content_description": "Для связи с администрацией пишите на почту, указанную внизу страницы.",
"content_tags": "Страницы,NoComment",
"content_image": "",
"content_movies": ""
},
{
"content_url": "avatar-5-vyydet-v-2027-godu",
"content_title": "Аватар 5 выйдет в 2027 году",
"content_description": "Революционный фильм «Аватар» Джеймса Кэмерона вышел на большие экраны в декабре 2009 года - и сделал по истине ошеломляющую кассу в 2,8 миллиарда долларов. Такого успеха удалось достичь за счет того, что это был первый фильм, вышедший в новом для 2009 года формате 3D. Уже прошло 8 лет, но зрители всё ждут и ждут выхода новых частей «Аватара». И наконец это случилось, даты премьер будущих серий фильма названы. «Аватар-2»: декабрь 2021 года, «Аватар-3»: декабрь 2023 года, «Аватар-4»: декабрь 2025 года, «Аватар-5»: декабрь 2027 года.",
"content_tags": "Новости",
"content_image": "/files/content/news1.png",
"content_movies": "251733,505898,570402,783486,973064"
},
{
"content_url": "vankuver-nodovolen-semkami-filma-dedpul-2",
"content_title": "Ванкувер недоволен съемками фильма «Дэдпул 2»",
"content_description": "В репортаже Global News видны не только восторженные фанаты, дублеры Райана Рейнольдса и Джоша Бролина, но и недовольные предприниматели. Закрытие дорог в центре города доставляет немало неприятностей местному бизнесу. «Мы знаем, что „Дэдпул“ приносит много денег Ванкуверу, — говорит владелец ресторана Ричард Чуи. — Но малый бизнес опирается на ежедневный доход, а он падает». «Нельзя перейти дорогу, чтобы выпить чашку кофе. Не пускают», — жалуется жительница города. Во время съемок первого «Дэдпула» центр Ванкувера был перекрыт на протяжении двух недель, однако за 58 дней студия оставила в городе 40 млн долларов, из них 19 миллионов пошло на зарплаты 2000 человек.",
"content_tags": "Новости",
"content_image": "/files/content/news2.png",
"content_movies": "462360,961715"
},
{
"content_url": "8-y-sezon-kultovogo-seriala-igra-prestolov-vyydet-ne-ranshe-2019-goda",
"content_title": "8-й сезон культового сериала «Игра престолов» выйдет не раньше 2019 года",
"content_description": "Седьмой сезон сериала «Игра престолов» окончился в августе 2017 года, и фанаты уже замерли в ожидании восьмого сезона, который станет финальным в саге. Вместе с тем, ждать придется долго, как сообщает Vanity Fair, финал сериала может выйти только в 2019 году. На создание последних двух сезонов сериала создателям требовалось 9-11 месяцев. Это значит, что восьмой сезон «Игра престолов» выйдет на экраны не раньше лета 2018. Если же эпизоды финального сезона будут более продолжительными, чем в предыдущих, восьмой сезон может выйти на экраны только в 2019 году.",
"content_tags": "Новости",
"content_image": "/files/content/news3.png",
"content_movies": "464963"
},
{
"content_url": "prodozhenie-fantasticheskih-tvarej-budet-imet-podzagolovok-prestupleniya-grin-de-val-da",
"content_title": "Продожение «Фантастических тварей» будет иметь подзаголовок «Преступления Грин-де-Вальда»",
"content_description": "Студия Warner Bros. решила порадовать поклонников фильма и показала первый промокадр из будущего сиквела «Фантастических тварей». Вместе с промокадром студия Warner Bros. обнародовала подзаголовок фильма - «Преступления Грин-де-Вальда». Дата премьеры назначена на 15 ноября 2018 года.",
"content_tags": "Новости",
"content_image": "/files/content/news4.png",
"content_movies": "797840,843479"
},
{
"content_url": "videobloger-syenduk-pokazal-kak-by-vyglyadel-multfilm-rik-i-morti-v-russkoy-versii",
"content_title": "Видеоблогер Сыендук показал, как бы выглядел мультфильм «Рик и Морти» в русской версии",
"content_description": "Видеоблогер Сыендук представил на своем YouTube-канале несколько альтернативных версий популярного мультсериала «Рик и Морти». Для этого он скрестил проект Дэна Хармона и Джастина Ройланда с советской научной фантастикой. В отечественном варианте вместо Рика и Морти появились Иван Грозный, Алиса и старик Хоттабыч. Отечественная версия сделана на основе мультфильма «Тайна третьей планеты» и фильмов «Старик Хоттабыч» и «Иван Васильевич меняет профессию». Продолжение анимационного сериала до сих пор остается под вопросом, так как Хармон и Ройланд заняты переговорами с каналом. <div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/EQDFN9sd_s8' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "Новости",
"content_image": "/files/content/news5.png",
"content_movies": "685246,42172,42664"
},
{
"content_url": "vo-vse-vatnye-zanimatelnaya-parodiya-na-vo-vse-tyajkie",
"content_title": "«Во все ватные», занимательная пародия на «Во все тяжкие»",
"content_description": "На YouTube-канале Егора Лоскутова появилась десятиминутная пародия на сериал «Во все тяжкие». В главных ролях — популярные блогеры Кшиштовский и Поперечный. По сюжету обычный русский преподаватель химии (лысый Кшиштовский) гонит самогон вместе со своим бывшим учеником (обычный Поперечный). На их пути возникает несколько препятствий: конкуренты, местный участковый и кризис мотивации. В этой пародии-трейлере есть отсылки к реальным скандалам, в том числе к конфликту Поперечного с Милоновым и к обвинениям в сексуальных домогательствах в Голливуде. Угадайте, какой псевдоним себе взял главный герой? Сериалу «Во все тяжкие» исполнилось 10 лет 20 января 2018 года. Иногда действительно трудно поверить, что первую серию показали так давно. <div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/CJb6H-8kHCE' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "Новости",
"content_image": "/files/content/news6.png",
"content_movies": "404900"
},
{
"content_url": "data-prem-ery-istorii-igrushek-4",
"content_title": "Дата премьеры «Истории игрушек 4»",
"content_description": "Disney и Pixar объявили, когда «История игрушек 4» появится в кинотеатрах. Согласно официальному посту в Facebook, четвертая часть популярной серии увидит свет 21 июня 2019 года.<br><br>Подробности сюжета на данный момент не раскрываются. Если верить слухам, то «История игрушек 4» не будет прямым продолжением третьего фильма, где Базз, Вуди и компания остались у девочки. Вместо этого четвертая часть сосредоточится на отношениях между Бо Пип и Вуди и расскажет, как фарфоровая пастушка вновь воссоединилась с другими игрушками.<br>Бо Пип в исполнении актрисы Энни Поттс появлялась в первых двух фильмах серии, но в «Истории игрушек 3» она присутствует лишь во флешбэке и лишена реплик.",
"content_tags": "Новости",
"content_image": "/files/content/news7.png",
"content_movies": "482,405,258328"
},
{
"content_url": "privetiki-a-ya-supergeroj",
"content_title": "Приветики, а я супергерой!",
"content_description": "14-летний Билли Бэтсон (Эшер Энджел) однажды познакомился с 3000-летним волшебником Шазамом (Джимон Хонсу). Старец рассказал Билли о магическом слове, благодаря которому мальчик получил возможность превращаться в могучего воина, призванного защищать мир от сил зла.<br><br>Получив невероятные возможности и взрослое тело, Билли начинает развлекаться, пока лучший друг Фредди (Джек Дилан Грейзер) пытается научить его быть настоящим супергероем. Но появление летающего человека в ярко-красном костюме не проходит незамеченным. Им начинает интересоваться безумный ученый — доктор Сивана (Марк Стронг), мечтающий взять магию Шазама под контроль.<br><br>Русский трейлер:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/CRtof-j4rVo' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "Новости",
"content_image": "/files/content/news8.png",
"content_movies": "840372"
},
{
"content_url": "steklyannaya-kinovselennaya-2019-goda",
"content_title": "«Стеклянная» киновселенная 2019 года",
"content_description": "Похититель с множественным расстройством личности Кевин (Джеймс МакЭвой) и террорист-инвалид Мистер Стекло (Сэмюэл Л. Джексон) выходят на своих давних противников — травмированную девушку Кейси (Аня Тейлор-Джой) и стареющего «супергероя» Дэвида Данна (Брюс Уиллис).<br><br>В Сан-Диего вместе с режиссером прибыли Джексон, Уиллис, Тейлор-Джой и Сара Полсон. М. Найт Шьямалан рассказал, что фильм «Сплит» родился на Comic-Con. Режиссер пришел на одну из вечеринок во время конвента, и к нему подошел Джеймс МакЭвой со словами «Обожаю ваши фильмы». «Тут я понял: вот мой герой, вот как он выглядит», — рассказал режиссер.<br><br>Интересно, что при выходе фильма «Неуязвимый» студия Disney настолько опасалась негатива вокруг экранизаций комиксов, что в рекламе фильма было запрещено упоминать супергероев или комиксы.<br><br>Русский трейлер:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/AyiCvX5dS1w' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "Новости",
"content_image": "/files/content/news9.png",
"content_movies": "1044601,930534,866"
},
{
"content_url": "kosmicheskaya-shvatka-pered-final-noj-bitvoj",
"content_title": "Космическая схватка перед финальной битвой",
"content_description": "1990-е. Кэрол Дэнверс (Бри Ларсон), пилот Военно-воздушных сил США, попадает в странное положение: в результате эксперимента с неизвестным инопланетным прибором ее ДНК смешивается с генетическим кодом пришельца из воинственной расы кри. Дэнверс становится суперсильной и практически неуязвимой, получает возможность летать и поглощать энергию.<br><br>Так Дэнверс оказывается в специальном отряде кри, который под командованием бесстрашного Мар-Велла (Джуд Лоу) стоит на защите галактической Империи. Оставить пост ее заставляет угроза, нависшая над Землей: раса скруллов под предводительством кровожадного Талоса (Бен Мендельсон) начала операцию по незаметному захвату планеты. Дэнверс планирует остановить вторжение и отправляется на Землю, где знакомится с молодым оперативником Ником Фьюри (Сэмюэл Л. Джексон).<br><br>«Капитан Марвел» — важный проект для Marvel. Студия собирается представить нового персонажа, который фактически существовал внутри вселенной задолго до Железного человека. В свое время это сработало с Капитаном Америка и Тором, но тогда вся франшиза была в зачаточном состоянии и еще толком не сформировалась. Бри Ларсон предстоит влиться в устоявшуюся хронологию и, судя по всему, помочь Мстителям одержать победу над Таносом.<br><br>Русский трейлер:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/JLNwSjO-sA0' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "Новости",
"content_image": "/files/content/news10.png",
"content_movies": "843859,263531,679830,843649,843650"
},
{
"content_url": "novyy-mortal-kombat-budet-s-krovyu-i-fataliti",
"content_title": "Новый Мортал Комбат будет с кровью и фаталити",
"content_description": "Новый Мортал Комбат должен выйти на экраны в 2021 году и по сообщению автора сценария в твиттере, каждая битва будет завершаться FINALLY, а чтобы это было красочно и эфектно, фильму присёждет рейтинг R. Mortal Kombat - это серия видео-игр в жанре фейтинг. Первая экранизация «Смертельной битвы» вышла в 1995 году, далее спустя 2 года выходит продолжение «Смертельная битва 2: Истребление».<br>Актер на роль Саб-Зиро в новом фильме уже утверждена, это будет Джо Таслим, известный по боевикам «Рейд» и «Ночь идет за нами». Сюжет фильма неизвестен. Однако ясно, что авторы намерены проигнорировать прошлые экранизации и сделать перезапуск с оригинальной историей в мире «Mortal Kombat».",
"content_tags": "Новости",
"content_image": "/files/content/news11.png",
"content_movies": "22355,8062,591792,1011846"
},
{
"content_url": "prikvel-kingsmana-rasskazhet-s-chego-vsyo-nachalos",
"content_title": "Приквел Кингсмана расскажет, с чего всё началось",
"content_description": "«Kings man: Начало» — приквел популярной экшен-франшизы «Kingsman». Режиссер Мэттью Вон решил воссоздать историческую драму и показать основные события истории глазами шпиона «Kingsman», для этого он перенес действие во время Первой мировой войны. В фильме будут показаня ключевые исторические личности, включая Григория Распутина, Гаврилу Принципа и Мату Хари.<br>«Kingsman» — организация шпионов, действующая на благо человечества вдали от любопытных глаз обывателей. И один из первых и самых гениальных оперативников в истории — Конрад (Харрис Дикинсон), молодой и наглый сын герцога Оксфордского. Как и многие его друзья, он мечтал служить на благо Великобритании, но в итоге оказался втянутым в тайный мир шпионов и убийц.<br><br>Русский трейлер:<br><div style='margin:10px auto;text-align:center'><iframe src='https://www.youtube.com/embed/9KOBoL_i_gI' allowfullscreen='' frameborder='0' width='525' height='294'></iframe></div>",
"content_tags": "Новости",
"content_image": "/files/content/news12.png",
"content_movies": "749540,906654,1045056"
},
{
"content_url": "filmy-pro-vampirov",
"content_title": "Фильмы про вампиров",
"content_description": "Фильмы про вампиров",
"content_tags": "Коллекции",
"content_image": "/files/content/collection1.png",
"content_movies": "1044004,910085,8151,1727,4815,521,3491,8033,565819,8436,22872,4554,9418,613,12345,825,264350,401177,4756,427795,195718,467118,472368,6904,542576,2495,20793,483364,102393,258759,26056,31517"
},
{
"content_url": "filmy-pro-lubov",
"content_title": "Фильмы про любовь",
"content_description": "Фильмы про любовь",
"content_tags": "Коллекции",
"content_image": "/files/content/collection2.png",
"content_movies": "428837,692232,381,356,456,2213,497,3561,10156,45660,1991,17721,1996,330,5492,341,437,1886,81733,77132,463724,539550,8125,81584,8143,6144,420,875,102152,390,662596,724703,102130,11130,463,11662,3795,495518,821,63920,1589,198028,880,390738,102128,196855,104927,409372,85182,461782,724,321842,398239,522876,77437,462342,493992,77466,258689,621,7662,1794,704,317889,105948,462938,278171,505811,523362,582764,463695,502937"
},
{
"content_url": "filmy-pro-zombi",
"content_title": "Фильмы про зомби",
"content_description": "Фильмы про зомби",
"content_tags": "Коллекции",
"content_image": "/files/content/collection3.png",
"content_movies": "463401,590885,195524,801,577,427122,64021,8370,5916,17159,36544,2894,55945,197615,9923,325598,261636,9917,497077,95434,24186,273063,32282,417895,222496,88172,195870,62623,397229,81601,409208,260981,426314"
},
{
"content_url": "poslednie-obnovleniya-filmov",
"content_title": "Последние обновления фильмов",
"content_description": "Последние обновления фильмов",
"content_tags": "Коллекции,Обновления",
"content_image": "/files/content/collection4.png",
"content_movies": "926540,839650,843649,961715,737859,924311,762500,935940,841277,983177,939785,840829"
}
]
}

View File

0
config/rt/.gitkeep Normal file
View File

121
config/update/actual.js Normal file
View File

@ -0,0 +1,121 @@
'use strict';
/**
* Node dependencies.
*/
var path = require('path');
var fs = require('fs');
/**
* Global env.
*/
try {
var p = tryParseJSON(
fs.readFileSync(
path.join(path.dirname(__filename), '..', '..', 'process.json'),
'utf8'
)
);
var e = p.apps[0].env;
for (var prop in e) {
if (e.hasOwnProperty(prop)) {
process.env[prop] = e[prop];
}
}
} catch (err) {
console.log('NOT FILE PROCESS DATA');
process.exit();
}
/**
* Module dependencies.
*/
var CP_save = require(path.join(
path.dirname(__filename),
'..',
'..',
'lib',
'CP_save.min.js'
));
var CP_get = require(path.join(
path.dirname(__filename),
'..',
'..',
'lib',
'CP_get.min.js'
));
/**
* Node dependencies.
*/
var async = require('async');
/**
* Valid JSON.
*
* @param {String} jsonString
*/
function tryParseJSON(jsonString) {
try {
var o = JSON.parse(jsonString);
if (o && typeof o === 'object') {
return o;
}
} catch (e) {}
return {};
}
(function upd(i) {
i = i || 1;
var ii = i + 1;
if (i >= 1500) {
return process.exit();
}
CP_get.movies(
{ from: process.env.CP_RT, certainly: true, full: true },
2000,
'',
i,
false,
function(err, movies) {
if (err) return console.error(err);
if (movies && movies.length) {
async.eachOfLimit(
movies,
1,
function(movie, key, callback) {
delete movie.year;
delete movie.actor;
delete movie.genre;
delete movie.country;
delete movie.director;
delete movie.premiere;
delete movie.kp_rating;
delete movie.kp_vote;
delete movie.imdb_rating;
delete movie.imdb_vote;
movie.id = movie.kp_id;
CP_save.save(movie, 'rt', function(err, result) {
console.log(result);
return callback(err);
});
},
function(err) {
console.error(err);
upd(ii);
}
);
} else {
upd(ii);
}
}
);
})();

170
config/update/config.js Normal file
View File

@ -0,0 +1,170 @@
'use strict';
/**
* Node dependencies.
*/
var async = require('async');
var path = require('path');
var exec = require('child_process').exec;
var fs = require('fs');
/**
* Global env.
*/
try {
var p = tryParseJSON(
fs.readFileSync(
path.join(path.dirname(__filename), '..', '..', 'process.json'),
'utf8'
)
);
var e = p.apps[0].env;
for (var prop in e) {
if (e.hasOwnProperty(prop)) {
process.env[prop] = e[prop];
}
}
} catch (err) {
console.log('NOT FILE PROCESS DATA');
process.exit();
}
/**
* Valid JSON.
*
* @param {String} jsonString
*/
function tryParseJSON(jsonString) {
try {
var o = JSON.parse(jsonString);
if (o && typeof o === 'object') {
return o;
}
} catch (e) {}
return {};
}
/**
* Module dependencies.
*/
var CP_save = require(path.join(path.dirname(__filename), '..', '..', 'lib', 'CP_save.min.js'));
/**
* Configuration dependencies.
*/
var config = require(path.join(__dirname, '..', 'production', 'config.js'));
var modules = require(path.join(__dirname, '..', 'production', 'modules.js'));
/**
* Check files.
*/
try {
fs.statSync(path.join(__dirname, '..', 'default', 'config.js'));
fs.statSync(path.join(__dirname, '..', 'default', 'modules.js'));
} catch (err) {
console.log('NOT DEFAULT CONFIG AND MODULES');
process.exit();
}
/**
* New configuration dependencies.
*/
var config_default = require(path.join(__dirname, '..', 'default', 'config.js'));
var modules_default = require(path.join(__dirname, '..', 'default', 'modules.js'));
var cdn = true;
var cnt = true;
function objReplace(obj_new, obj_old) {
obj_new = JSON.stringify(obj_new);
obj_new = JSON.parse(obj_new);
obj_old = JSON.stringify(obj_old);
obj_old = JSON.parse(obj_old);
for (var key in obj_new) {
if (obj_new.hasOwnProperty(key) && obj_old.hasOwnProperty(key)) {
if (typeof obj_new[key] === 'object' && !Array.isArray(obj_new[key])) {
if (key === 'image') cdn = false;
if (key === 'count') cnt = false;
obj_new[key] = objReplace(obj_new[key], obj_old[key]);
} else {
if (typeof obj_new[key] === typeof obj_old[key]) {
if (
(key === 'addr' && cdn) ||
(key === 'key' && cnt) ||
key === 'domain' ||
key === 'date'
)
continue;
obj_new[key] = obj_old[key];
cdn = true;
}
}
}
}
return obj_new;
}
function objAdd(obj_new, obj_old) {
obj_new = JSON.stringify(obj_new);
obj_new = JSON.parse(obj_new);
obj_old = JSON.stringify(obj_old);
obj_old = JSON.parse(obj_old);
for (var key in obj_old) {
if (obj_old.hasOwnProperty(key) && obj_new.hasOwnProperty(key)) {
if (typeof obj_old[key] === 'object' && !Array.isArray(obj_old[key])) {
obj_new[key] = objAdd(obj_new[key], obj_old[key]);
}
} else if (obj_old.hasOwnProperty(key) && !obj_new.hasOwnProperty(key)) {
obj_new[key] = obj_old[key];
}
}
return obj_new;
}
async.series(
{
config: function(callback) {
CP_save.save(
objAdd(objReplace(config_default, config), config),
'config',
function(err, result) {
return err ? callback(err) : callback(null, result);
}
);
},
modules: function(callback) {
CP_save.save(
objAdd(objReplace(modules_default, modules), modules),
'modules',
function(err, result) {
return err ? callback(err) : callback(null, result);
}
);
}
},
function(err, result) {
if (err) return console.error(err);
exec('pm2 reload ' + config.domain, function(
error,
stdout,
stderr
) {
if (stdout) console.log(stdout);
if (stderr) console.log(stderr);
return error ? console.error(error) : console.log(null, 'Reload server.');
});
}
);

128
config/update/default.js Normal file
View File

@ -0,0 +1,128 @@
'use strict';
/**
* Node dependencies.
*/
var async = require('async');
var path = require('path');
var fs = require('fs');
/**
* Global env.
*/
try {
var p = tryParseJSON(
fs.readFileSync(
path.join(path.dirname(__filename), '..', '..', 'process.json'),
'utf8'
)
);
var e = p.apps[0].env;
for (var prop in e) {
if (e.hasOwnProperty(prop)) {
process.env[prop] = e[prop];
}
}
} catch (err) {
console.log('NOT FILE PROCESS DATA');
process.exit();
}
/**
* Module dependencies.
*/
var CP_save = require(path.join(
path.dirname(__filename),
'..',
'..',
'lib',
'CP_save.min.js'
));
/**
* Check files.
*/
try {
var data = tryParseJSON(
fs.readFileSync(path.join(__dirname, 'default.json'), 'utf8')
);
} catch (err) {
console.log('NOT FILE DEFAULT DATA');
process.exit();
}
/**
* Valid JSON.
*
* @param {String} jsonString
*/
function tryParseJSON(jsonString) {
try {
var o = JSON.parse(jsonString);
if (o && typeof o === 'object') {
return o;
}
} catch (e) {}
return {};
}
var run = 0;
if (data.movies && data.movies.length) {
var m = 0;
async.eachOfLimit(
data.movies,
1,
function(movie, key, callback) {
movie.id = movie.kp_id;
movie.duplicate = true;
CP_save.save(movie, 'rt', function(err, result) {
if (err) console.error(err, result, movie);
if (result) {
m = m + 1;
console.log(result, m);
}
return callback();
});
},
function(err) {
console.log('');
console.log(err || m + ' movies added.');
console.log('');
run++;
}
);
}
if (data.contents && data.contents.length) {
var c = 0;
async.eachOfLimit(
data.contents,
1,
function(content, key, callback) {
CP_save.save(content, 'content', function(err, result) {
if (err) console.error(err, result, content);
if (result) {
c = c + 1;
console.log(result, c);
}
return callback();
});
},
function(err) {
console.log('');
console.log(err || m + ' contents added.');
console.log('');
run++;
}
);
}
if (run === 2) {
process.exit();
}

0
config/user/.gitkeep Normal file
View File

216
doc/README.ar.md Normal file
View File

@ -0,0 +1,216 @@
<div dir='rtl'>
<center>
# جعل موقع ويب بث الفيديو
</center>
> أنشئ موقعًا للبث عبر الإنترنت لمشاهدة الأفلام والمسلسلات التلفزيونية على جهاز الكمبيوتر والجهاز المحمول والتلفزيون
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="100" alt="AR" title="AR">
`اختر لغتك`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## كيفية تثبيت CinemaPress؟
> #### تثبيت عبر الموقع
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="تثبيت عبر الموقع" alt="تثبيت عبر الموقع"></a>
> #### تثبيت عبر المحطة
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="تثبيت عبر المحطة" alt="تثبيت عبر المحطة">
## أين تشتري خادم VPS؟
> يجب أن يكون نظام التشغيل **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** بدون لوحات تحكم!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**تحديد**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**تحديد**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**تحديد**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**تحديد**</a>
</center>
> `*` - خصم **15%** ، رمز الترويجي: `CinemaPress15`
## من أين تشتري اسم النطاق؟
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**تحديد**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**تحديد**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**تحديد**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**تحديد**</a>
</center>
> `*` - لا يتم إرسال البيانات إلى قاعدة بيانات WHOIS العامة
## موضوع «hodor»
> FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="قالب «hodor»"></a>
## موضوع «sansa»
> FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="قالب «sansa»"></a>
## موضوع «robb»
> FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="قالب «robb»"></a>
## موضوع «ramsay»
> FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="قالب «ramsay»"></a>
## موضوع «tyrion»
> FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="قالب «tyrion»"></a>
## موضوع «cersei»
> FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="قالب «cersei»"></a>
## موضوع «joffrey»
> FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="قالب «joffrey»"></a>
## موضوع «drogo»
> FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="قالب «drogo»"></a>
## موضوع «bran»
> FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="قالب «bran»"></a>
## موضوع «arya»
> FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="قالب «arya»"></a>
## موضوع «mormont»
> FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="قالب «mormont»"></a>
## موضوع «tarly»
> FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="قالب «tarly»"></a>
## موضوع «daenerys»
> FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="قالب «daenerys»"></a>
## الخيارات والوحدات CinemaPress
يمكن الاطلاع على معلومات مفصلة عن جميع الخيارات ووحدات النظام في الوثائق.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)
</div>

213
doc/README.bg.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Направете уебсайт за стрийминг на видео
</center>
> Създайте уебсайт за видео стрийминг, за да гледате филми и телевизионни сериали на компютър `Windows / iOS`, мобилно устройство `iPhone / Android` и телевизия `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="100" alt="BG" title="BG">
`Изберете вашия език`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Как да инсталирам CinemaPress?
> #### Инсталирайте чрез уебсайт
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Инсталирайте чрез уебсайт" alt="Инсталирайте чрез уебсайт"></a>
> #### Инсталирайте чрез терминал
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Инсталирайте чрез терминал" alt="Инсталирайте чрез терминал">
## Къде да закупите VPS сървър?
> Операционната система трябва да бъде **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** без контролни панели!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECT**</a>
</center>
> `*` - **15%** отстъпка, промо код: `CinemaPress15`
## Къде да закупите име на домейн?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECT**</a>
</center>
> `*` - данните не се изпращат в публичната база данни WHOIS
## Тема «hodor»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Шаблон «hodor»"></a>
## Тема «sansa»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Шаблон «sansa»"></a>
## Тема «robb»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Шаблон «robb»"></a>
## Тема «ramsay»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Шаблон «ramsay»"></a>
## Тема «tyrion»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Шаблон «tyrion»"></a>
## Тема «cersei»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Шаблон «cersei»"></a>
## Тема «joffrey»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Шаблон «joffrey»"></a>
## Тема «drogo»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Шаблон «drogo»"></a>
## Тема «bran»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Шаблон «bran»"></a>
## Тема «arya»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Шаблон «arya»"></a>
## Тема «mormont»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Шаблон «mormont»"></a>
## Тема «tarly»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Шаблон «tarly»"></a>
## Тема «daenerys»
> Инсталирайте чрез FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Инсталирайте чрез CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Шаблон «daenerys»"></a>
## Опции и модули CinemaPress
Подробна информация за всички опции и модули на системата можете да намерите в <a href="https://cinemapress.io/admin/admin.html">документацията</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.bn.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# একটি ভিডিও স্ট্রিমিং ওয়েবসাইট তৈরি করুন
</center>
> `Windows / iOS` কম্পিউটার, `iPhone / Android` মোবাইল ডিভাইস এবং `Smart TV / Android TV / STB` টিভিতে চলচ্চিত্র এবং টিভি সিরিজ দেখতে একটি ভিডিও স্ট্রিমিং ওয়েবসাইট তৈরি করুন
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="100" alt="BN" title="BN">
`আপনার ভাষা নির্বাচন করুন`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## কিভাবে CinemaPress ইনস্টল করবেন?
> #### ওয়েবসাইট মাধ্যমে ইনস্টল করুন
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="ওয়েবসাইট মাধ্যমে ইনস্টল করুন" alt="ওয়েবসাইট মাধ্যমে ইনস্টল করুন"></a>
> #### টার্মিনাল মাধ্যমে ইনস্টল করুন
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="টার্মিনাল মাধ্যমে ইনস্টল করুন" alt="টার্মিনাল মাধ্যমে ইনস্টল করুন">
## একটি ভিপিএস সার্ভার কিনতে যেখানে?
> ওএস অপারেটিং প্যানেল ছাড়া **ডেবিয়ান 9 x64** হতে হবে!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**নির্বাচন**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**নির্বাচন**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**নির্বাচন**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**নির্বাচন**</a>
</center>
> `*` - **15%** ডিসকাউন্ট, প্রচার কোড: `CinemaPress15`
## একটি ডোমেইন নাম কিনতে যেখানে?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**নির্বাচন**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**নির্বাচন**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**নির্বাচন**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**নির্বাচন**</a>
</center>
> `*` - তথ্য পাবলিক WHOIS ডাটাবেস পাঠানো হয় না
## বিষয় «hodor»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="টেমপ্লেট «hodor»"></a>
## বিষয় «sansa»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="টেমপ্লেট «sansa»"></a>
## বিষয় «robb»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="টেমপ্লেট «robb»"></a>
## বিষয় «ramsay»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="টেমপ্লেট «ramsay»"></a>
## বিষয় «tyrion»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="টেমপ্লেট «tyrion»"></a>
## বিষয় «cersei»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="টেমপ্লেট «cersei»"></a>
## বিষয় «joffrey»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="টেমপ্লেট «joffrey»"></a>
## বিষয় «drogo»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="টেমপ্লেট «drogo»"></a>
## বিষয় «bran»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="টেমপ্লেট «bran»"></a>
## বিষয় «arya»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="টেমপ্লেট «arya»"></a>
## বিষয় «mormont»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="টেমপ্লেট «mormont»"></a>
## বিষয় «tarly»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="টেমপ্লেট «tarly»"></a>
## বিষয় «daenerys»
> FTP মাধ্যমে ইনস্টল করুন: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> CLI মাধ্যমে ইনস্টল করুন: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="টেমপ্লেট «daenerys»"></a>
## বিকল্প এবং মডিউল CinemaPress
সমস্ত বিকল্প এবং সিস্টেম মডিউল বিস্তারিত তথ্য ডকুমেন্টেশন পাওয়া যাবে।
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.cs.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Vytvořte web pro streamování videa
</center>
> Vytvořte web pro sledování videa a sledujte filmy a televizní seriály v počítači `Windows / iOS`, mobilním zařízení `iPhone / Android` a televizoru `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="100" alt="CS" title="CS">
`Vyberte svůj jazyk`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Jak nainstalovat CinemaPress?
> #### Nainstalujte prostřednictvím webu
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Nainstalujte prostřednictvím webu" alt="Nainstalujte prostřednictvím webu"></a>
> #### Instalujte přes terminál
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instalujte přes terminál" alt="Instalujte přes terminál">
## Kde koupit server VPS?
> OS by měl být **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** bez ovládacích panelů!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**VYBRAT**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**VYBRAT**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**VYBRAT**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**VYBRAT**</a>
</center>
> `*` - **15%** sleva, promo kód: `CinemaPress15`
## Kde koupit název domény?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**VYBRAT**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**VYBRAT**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**VYBRAT**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**VYBRAT**</a>
</center>
> `*` - data nejsou odeslána do veřejné databáze WHOIS
## Téma «hodor»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Šablona «hodor»"></a>
## Téma «sansa»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Šablona «sansa»"></a>
## Téma «robb»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Šablona «robb»"></a>
## Téma «ramsay»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Šablona «ramsay»"></a>
## Téma «tyrion»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Šablona «tyrion»"></a>
## Téma «cersei»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Šablona «cersei»"></a>
## Téma «joffrey»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Šablona «joffrey»"></a>
## Téma «drogo»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Šablona «drogo»"></a>
## Téma «bran»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Šablona «bran»"></a>
## Téma «arya»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Šablona «arya»"></a>
## Téma «mormont»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Šablona «mormont»"></a>
## Téma «tarly»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Šablona «tarly»"></a>
## Téma «daenerys»
> Nainstalujte přes FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instalujte pomocí rozhraní CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Šablona «daenerys»"></a>
## Možnosti a moduly CinemaPress
Podrobné informace o všech možnostech a modulech systému naleznete v <a href="https://cinemapress.io/admin/admin.html">dokumentaci</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.da.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Lav en video streaming website
</center>
> Opret en video streaming website for at se film og tv-serier på computer `Windows / iOS`, mobil enhed `iPhone / Android` og tv `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="100" alt="DA" title="DA">
`Vælg dit sprog`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Hvordan installeres CinemaPress?
> #### Installer via websted
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Installer via websted" alt="Installer via websted"></a>
> #### Installer via terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Installer via terminal" alt="Installer via terminal">
## Hvor kan man købe en VPS-server?
> Operativsystemet skal være **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** uden kontrolpaneler!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**VÆLG**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**VÆLG**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**VÆLG**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**VÆLG**</a>
</center>
> `*` - **15%** rabat, promo kode: `CinemaPress15`
## Hvor kan man købe et domænenavn?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**VÆLG**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**VÆLG**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**VÆLG**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**VÆLG**</a>
</center>
> `*` - data sendes ikke til den offentlige WHOIS-database
## Tema «hodor»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Skabelon «hodor»"></a>
## Tema «sansa»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Skabelon «sansa»"></a>
## Tema «robb»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Skabelon «robb»"></a>
## Tema «ramsay»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Skabelon «ramsay»"></a>
## Tema «tyrion»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Skabelon «tyrion»"></a>
## Tema «cersei»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Skabelon «cersei»"></a>
## Tema «joffrey»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Skabelon «joffrey»"></a>
## Tema «drogo»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Skabelon «drogo»"></a>
## Tema «bran»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Skabelon «bran»"></a>
## Tema «arya»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Skabelon «arya»"></a>
## Tema «mormont»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Skabelon «mormont»"></a>
## Tema «tarly»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Skabelon «tarly»"></a>
## Tema «daenerys»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Skabelon «daenerys»"></a>
## Valg og moduler CinemaPress
Detaljeret information om alle muligheder og systemmoduler findes i <a href="https://cinemapress.io/admin/admin.html">dokumentationen</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.de.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Erstellen Sie eine Video-Streaming-Website
</center>
> Erstellen Sie eine Video-Streaming-Website, um Filme und Fernsehserien auf Computern `Windows / iOS`, Mobilgeräten `iPhone / Android` und Fernsehern anzusehen `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="100" alt="DE" title="DE">
`Wähle deine Sprache`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="УТ" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Wie installiere ich CinemaPress?
> #### Installieren Sie über die Website
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Installieren Sie über die Website" alt="Installieren Sie über die Website"></a>
> #### Über Terminal installieren
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Über Terminal installieren" alt="Über Terminal installieren">
## Wo kaufe ich einen VPS-Server?
> Das Betriebssystem sollte **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** ohne Control Panels sein!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**WÄHLEN**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**WÄHLEN**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**WÄHLEN**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**WÄHLEN**</a>
</center>
> `*` - **15%** Rabatt, Gutscheincode: `CinemaPress15`
## Wo kaufe ich einen Domainnamen?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**WÄHLEN**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**WÄHLEN**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**WÄHLEN**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**WÄHLEN**</a>
</center>
> `*` - Daten werden nicht an die öffentliche WHOIS-Datenbank gesendet
## Thema «hodor»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Vorlage «hodor»"></a>
## Thema «sansa»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Vorlage «sansa»"></a>
## Thema «robb»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Vorlage «robb»"></a>
## Thema «ramsay»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Vorlage «ramsay»"></a>
## Thema «tyrion»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Vorlage «tyrion»"></a>
## Thema «cersei»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Vorlage «cersei»"></a>
## Thema «joffrey»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Vorlage «joffrey»"></a>
## Thema «drogo»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Vorlage «drogo»"></a>
## Thema «bran»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Vorlage «bran»"></a>
## Thema «arya»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Vorlage «arya»"></a>
## Thema «mormont»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Vorlage «mormont»"></a>
## Thema «tarly»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Vorlage «tarly»"></a>
## Thema «daenerys»
> Installation über FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Installieren Sie über die CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Vorlage «daenerys»"></a>
## Optionen und Module CinemaPress
Detaillierte Informationen zu allen Optionen und Systemmodulen finden Sie in der <a href="https://cinemapress.io/admin/admin.html">Dokumentation</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.el.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Δημιουργήστε έναν ιστότοπο ροής βίντεο
</center>
> Δημιουργήστε έναν ιστότοπο βίντεο συνεχούς ροής για να παρακολουθήσετε ταινίες και τηλεοπτικές σειρές στον υπολογιστή `Windows / iOS`, την κινητή συσκευή `iPhone / Android` και την τηλεόραση `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="100" alt="EL" title="EL">
`Επιλέξτε τη γλώσσα σας`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Πώς να εγκαταστήσω CinemaPress?
> #### Εγκατάσταση μέσω ιστότοπου
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Εγκατάσταση μέσω ιστότοπου" alt="Εγκατάσταση μέσω ιστότοπου"></a>
> #### Εγκαταστήστε μέσω τερματικού
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Εγκαταστήστε μέσω τερματικού" alt="Εγκαταστήστε μέσω τερματικού">
## Πού να αγοράσετε ένα διακομιστή VPS?
> Το λειτουργικό σύστημα θα πρέπει να είναι **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** χωρίς πίνακες ελέγχου!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**ΕΠΙΛΕΓΩ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**ΕΠΙΛΕΓΩ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**ΕΠΙΛΕΓΩ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**ΕΠΙΛΕΓΩ**</a>
</center>
> `*` - **15%** έκπτωση, κωδικός προσφοράς: `CinemaPress15`
## Πού να αγοράσετε ένα όνομα τομέα?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**ΕΠΙΛΕΓΩ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**ΕΠΙΛΕΓΩ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**ΕΠΙΛΕΓΩ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**ΕΠΙΛΕΓΩ**</a>
</center>
> `*` - τα δεδομένα δεν αποστέλλονται στη δημόσια βάση δεδομένων WHOIS
## Θέμα «hodor»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Πρότυπο «hodor»"></a>
## Θέμα «sansa»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Πρότυπο «sansa»"></a>
## Θέμα «robb»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Πρότυπο «robb»"></a>
## Θέμα «ramsay»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Πρότυπο «ramsay»"></a>
## Θέμα «tyrion»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Πρότυπο «tyrion»"></a>
## Θέμα «cersei»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Πρότυπο «cersei»"></a>
## Θέμα «joffrey»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Πρότυπο «joffrey»"></a>
## Θέμα «drogo»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Πρότυπο «drogo»"></a>
## Θέμα «bran»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Πρότυπο «bran»"></a>
## Θέμα «arya»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Πρότυπο «arya»"></a>
## Θέμα «mormont»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Πρότυπο «mormont»"></a>
## Θέμα «tarly»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Πρότυπο «tarly»"></a>
## Θέμα «daenerys»
> Εγκαταστήστε μέσω FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Εγκατάσταση μέσω CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Πρότυπο «daenerys»"></a>
## Επιλογές και ενότητες CinemaPress
Λεπτομερείς πληροφορίες σχετικά με όλες τις επιλογές και τις ενότητες του συστήματος διατίθενται στην <a href="https://cinemapress.io/admin/admin.html">τεκμηρίωση</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.en.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Make a video streaming website
</center>
> Create a video streaming website to watch movies and TV series on computer `Windows / iOS`, mobile device `iPhone / Android` and TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="100" alt="EN" title="EN">
`Choose your language`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## How to install CinemaPress?
> #### Install via website
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Install via website" alt="Install via website"></a>
> #### Install via terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Install via terminal" alt="Install via terminal">
## Where to buy a VPS server?
> The OS should be **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** without control panels!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECT**</a>
</center>
> `*` - **15%** discount, promo code: `CinemaPress15`
## Where to buy a domain name?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECT**</a>
</center>
> `*` - data is not sent to public WHOIS database
## Theme «hodor»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Template «hodor»"></a>
## Theme «sansa»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Template «sansa»"></a>
## Theme «robb»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Template «robb»"></a>
## Theme «ramsay»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Template «ramsay»"></a>
## Theme «tyrion»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Template «tyrion»"></a>
## Theme «cersei»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Template «cersei»"></a>
## Theme «joffrey»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Template «joffrey»"></a>
## Theme «drogo»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Template «drogo»"></a>
## Theme «bran»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Template «bran»"></a>
## Theme «arya»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Template «arya»"></a>
## Theme «mormont»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Template «mormont»"></a>
## Theme «tarly»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Template «tarly»"></a>
## Theme «daenerys»
> Install via FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Install via CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Template «daenerys»"></a>
## Options and modules CinemaPress
Detailed information on all options and system modules can be found in the <a href="https://cinemapress.io/admin/admin.html">documentation</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.es.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Hacer un sitio web de video streaming
</center>
> Cree un sitio web de transmisión de video para ver películas y series de TV en computadora `Windows / iOS`, dispositivo móvil `iPhone / Android` y TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="100" alt="ES" title="ES">
`Elige tu idioma`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## ¿Cómo instalar CinemaPress?
> #### Instalar vía web
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Instalar vía web" alt="Instalar vía web"></a>
> #### Instalar vía terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instalar vía terminal" alt="Instalar vía terminal">
## ¿Dónde comprar un servidor VPS?
> El sistema operativo debe ser **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** sin paneles de control!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECCIONAR**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECCIONAR**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECCIONAR**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECCIONAR**</a>
</center>
> `*` - **15%** de descuento, codigo promocional: `CinemaPress15`
## ¿Dónde comprar un nombre de dominio?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECCIONAR**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECCIONAR**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECCIONAR**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECCIONAR**</a>
</center>
> `*` - Los datos no son enviados a la base de datos de WHOIS pública
## Tema «hodor»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Modelo «hodor»"></a>
## Tema «sansa»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Modelo «sansa»"></a>
## Tema «robb»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Modelo «robb»"></a>
## Tema «ramsay»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Modelo «ramsay»"></a>
## Tema «tyrion»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Modelo «tyrion»"></a>
## Tema «cersei»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Modelo «cersei»"></a>
## Tema «joffrey»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Modelo «joffrey»"></a>
## Tema «drogo»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Modelo «drogo»"></a>
## Tema «bran»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Modelo «bran»"></a>
## Tema «arya»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Modelo «arya»"></a>
## Tema «mormont»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Modelo «mormont»"></a>
## Tema «tarly»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Modelo «tarly»"></a>
## Tema «daenerys»
> Instalar vía FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instalar vía CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Modelo «daenerys»"></a>
## Opciones y módulos de CinemaPress
Puede encontrar información detallada sobre todas las opciones y módulos del sistema en la <a href="https://cinemapress.io/admin/admin.html">documentación</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.et.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Tee video voogesituse veebisait
</center>
> Looge video voogesituse veebisait, et vaadata filme ja telesarju arvutil `Windows / iOS`, mobiilseadmel `iPhone / Android` ja teleris `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="100" alt="ET" title="ET">
`Valige oma keel`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Kuidas installida CinemaPress?
> #### Installige veebisaidi kaudu
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Installige veebisaidi kaudu" alt="Installige veebisaidi kaudu"></a>
> #### Installige terminali kaudu
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Installige terminali kaudu" alt="Installige terminali kaudu">
## Kust osta VPS-server?
> OS peaks olema **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** ilma juhtpaneelideta!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECT**</a>
</center>
> `*` - **15%** soodustust, promo koodi: `CinemaPress15`
## Kust osta domeeninime?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECT**</a>
</center>
> `*` - andmeid ei saadeta avalikku WHOIS andmebaasi
## Teema «hodor»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Mall «hodor»"></a>
## Teema «sansa»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Mall «sansa»"></a>
## Teema «robb»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Mall «robb»"></a>
## Teema «ramsay»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Mall «ramsay»"></a>
## Teema «tyrion»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Mall «tyrion»"></a>
## Teema «cersei»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Mall «cersei»"></a>
## Teema «joffrey»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Mall «joffrey»"></a>
## Teema «drogo»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Mall «drogo»"></a>
## Teema «bran»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Mall «bran»"></a>
## Teema «arya»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Mall «arya»"></a>
## Teema «mormont»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Mall «mormont»"></a>
## Teema «tarly»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Mall «tarly»"></a>
## Teema «daenerys»
> Installige FTP kaudu: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Installige CLI kaudu: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Mall «daenerys»"></a>
## Valikud ja moodulid CinemaPress
Üksikasjalik teave kõigi valikute ja süsteemimoodulite kohta on <a href="https://cinemapress.io/admin/admin.html">dokumentatsioonis</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.fi.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Tee video-streaming-sivusto
</center>
> Luo videon suoratoistosivusto katsomaan elokuvia ja TV-sarjoja tietokoneella `Windows / iOS`, mobiililaitteella `iPhone / Android` ja TV: llä `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="100" alt="FI" title="FI">
`Valitse kielesi`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Miten asentaa CinemaPress?
> #### Asenna verkkosivuston kautta
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Asenna verkkosivuston kautta" alt="Asenna verkkosivuston kautta"></a>
> #### Asenna terminaalin kautta
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Asenna terminaalin kautta" alt="Asenna terminaalin kautta">
## Mistä ostaa VPS-palvelin?
> Käyttöjärjestelmän tulee olla **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** ilman ohjauspaneeleja!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**VALINTA**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**VALINTA**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**VALINTA**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**VALINTA**</a>
</center>
> `*` - **15%** alennus, promo-koodi: `CinemaPress15`
## Mistä verkkotunnus voidaan ostaa?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**VALINTA**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**VALINTA**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**VALINTA**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**VALINTA**</a>
</center>
> `*` - tietoja ei lähetetä julkiseen WHOIS-tietokantaan
## Teema «hodor»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Sapluuna «hodor»"></a>
## Teema «sansa»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Sapluuna «sansa»"></a>
## Teema «robb»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Sapluuna «robb»"></a>
## Teema «ramsay»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Sapluuna «ramsay»"></a>
## Teema «tyrion»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Sapluuna «tyrion»"></a>
## Teema «cersei»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Sapluuna «cersei»"></a>
## Teema «joffrey»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Sapluuna «joffrey»"></a>
## Teema «drogo»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Sapluuna «drogo»"></a>
## Teema «bran»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Sapluuna «bran»"></a>
## Teema «arya»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Sapluuna «arya»"></a>
## Teema «mormont»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Sapluuna «mormont»"></a>
## Teema «tarly»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Sapluuna «tarly»"></a>
## Teema «daenerys»
> Asenna FTP: n kautta <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Asenna CLI: n kautta `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Sapluuna «daenerys»"></a>
## Vaihtoehdot ja moduulit CinemaPress
Yksityiskohtaiset tiedot kaikista vaihtoehdoista ja järjestelmän moduuleista löytyvät <a href="https://cinemapress.io/admin/admin.html">dokumenteista</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.fr.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Faire un site de streaming vidéo
</center>
> Créer un site Web de diffusion vidéo en continu pour regarder des films et des séries télévisées sur un ordinateur `Windows / iOS`, un appareil mobile `iPhone / Android` et la télévision `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="100" alt="FR" title="FR">
`Choisissez votre langue`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Comment installer CinemaPress?
> #### Installer via le site web
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Installer via le site web" alt="Installer via le site web"></a>
> #### Installer via un terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Installer via un terminal" alt="Installer via un terminal">
## Où acheter un serveur VPS?
> Le système d'exploitation devrait être **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** sans panneaux de contrôle!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECT**</a>
</center>
> `*` - **15%** de réduction, code promo: `CinemaPress15`
## Où acheter un nom de domaine?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECT**</a>
</center>
> `*` - les données ne sont pas envoyées à la base de données WHOIS publique
## Thème «hodor»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Modèle «hodor»"></a>
## Thème «sansa»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Modèle «sansa»"></a>
## Thème «robb»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Modèle «robb»"></a>
## Thème «ramsay»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Modèle «ramsay»"></a>
## Thème «tyrion»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Modèle «tyrion»"></a>
## Thème «cersei»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Modèle «cersei»"></a>
## Thème «joffrey»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Modèle «joffrey»"></a>
## Thème «drogo»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Modèle «drogo»"></a>
## Thème «bran»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Modèle «bran»"></a>
## Thème «arya»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Modèle «arya»"></a>
## Thème «mormont»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Modèle «mormont»"></a>
## Thème «tarly»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Modèle «tarly»"></a>
## Thème «daenerys»
> Installer via FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Installer via CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Modèle «daenerys»"></a>
## Options et modules CinemaPress
Vous trouverez des informations détaillées sur toutes les options et tous les modules système dans la <a href="https://cinemapress.io/admin/admin.html">documentation</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.hi.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# एक वीडियो स्ट्रीमिंग वेबसाइट बनाएं
</center>
> `Windows / iOS` कंप्यूटर, `iPhone / Android` मोबाइल डिवाइस और `Smart TV / Android TV / STB` टीवी पर फिल्में और टीवी श्रृंखला देखने के लिए एक वीडियो स्ट्रीमिंग वेबसाइट बनाएं
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="100" alt="HI" title="HI">
`अपनी भाषा चुनिए`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## स्थापित कैसे करें CinemaPress?
> #### वेबसाइट के माध्यम से स्थापित करें
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="वेबसाइट के माध्यम से स्थापित करें" alt="वेबसाइट के माध्यम से स्थापित करें"></a>
> #### टर्मिनल के माध्यम से स्थापित करें
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="टर्मिनल के माध्यम से स्थापित करें" alt="टर्मिनल के माध्यम से स्थापित करें">
## वीपीएस सर्वर कहां से खरीदें?
> ओएस को नियंत्रण कक्ष के बिना **डेबियन 9 x64** होना चाहिए!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**चुनते हैं**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**चुनते हैं**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**चुनते हैं**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**चुनते हैं**</a>
</center>
> `*` - **15%** छूट, प्रोमो कोड: `CinemaPress15`
## डोमेन नाम कहाँ से खरीदें?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**चुनते हैं**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**चुनते हैं**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**चुनते हैं**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**चुनते हैं**</a>
</center>
> `*` - डेटा को सार्वजनिक WHOIS डेटाबेस में नहीं भेजा जाता है
## विषय «hodor»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="खाका «hodor»"></a>
## विषय «sansa»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="खाका «sansa»"></a>
## विषय «robb»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="खाका «robb»"></a>
## विषय «ramsay»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="खाका «ramsay»"></a>
## विषय «tyrion»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="खाका «tyrion»"></a>
## विषय «cersei»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="खाका «cersei»"></a>
## विषय «joffrey»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="खाका «joffrey»"></a>
## विषय «drogo»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="खाका «drogo»"></a>
## विषय «bran»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="खाका «bran»"></a>
## विषय «arya»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="खाका «arya»"></a>
## विषय «mormont»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="खाका «mormont»"></a>
## विषय «tarly»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="खाका «tarly»"></a>
## विषय «daenerys»
> एफ़टीपी के माध्यम से स्थापित करें <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> CLI के माध्यम से स्थापित करें `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="खाका «daenerys»"></a>
## विकल्प और मॉड्यूल CinemaPress
सभी विकल्पों और सिस्टम मॉड्यूल की विस्तृत जानकारी प्रलेखन में पाई जा सकती है।
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.hr.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Izradite web-lokaciju za streaming videozapisa
</center>
> Stvorite web-lokaciju za strujanje videozapisa da biste gledali filmove i TV serije na računalu `Windows / iOS`, mobilnom uređaju `iPhone / Android` i televiziji `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="100" alt="HR" title="HR">
`Odaberite svoj jezik`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Kako instalirati CinemaPress?
> #### Instalirajte putem web-lokacije
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Instalirajte putem web-lokacije" alt="Instalirajte putem web-lokacije"></a>
> #### Instalirajte putem terminala
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instalirajte putem terminala" alt="Instalirajte putem terminala">
## Gdje kupiti VPS poslužitelj?
> OS bi trebao biti **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** bez kontrolnih ploča!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**ODABERI**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**ODABERI**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**ODABERI**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**ODABERI**</a>
</center>
> `*` - **15%** popusta, promotivni kôd: `CinemaPress15`
## Gdje kupiti naziv domene?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**ODABERI**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**ODABERI**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**ODABERI**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**ODABERI**</a>
</center>
> `*` - podaci se ne šalju u javnu WHOIS bazu podataka
## Tema «hodor»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Predložak «hodor»"></a>
## Tema «sansa»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Predložak «sansa»"></a>
## Tema «robb»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Predložak «robb»"></a>
## Tema «ramsay»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Predložak «ramsay»"></a>
## Tema «tyrion»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Predložak «tyrion»"></a>
## Tema «cersei»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Predložak «cersei»"></a>
## Tema «joffrey»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Predložak «joffrey»"></a>
## Tema «drogo»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Predložak «drogo»"></a>
## Tema «bran»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Predložak «bran»"></a>
## Tema «arya»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Predložak «arya»"></a>
## Tema «mormont»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Predložak «mormont»"></a>
## Tema «tarly»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Predložak «tarly»"></a>
## Tema «daenerys»
> Instalirajte putem FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instalirajte putem CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Predložak «daenerys»"></a>
## Opcije i moduli CinemaPress
Detaljne informacije o svim opcijama i modulima sustava nalaze se u <a href="https://cinemapress.io/admin/admin.html">dokumentaciji</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.hu.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Készíts egy video streaming webhelyet
</center>
> Hozzon létre egy video streaming webhelyet a filmek és a TV-sorozatok számítógépen `Windows / iOS`, mobil eszközön `iPhone / Android` és TV-n történő megtekintéséhez `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="100" alt="HU" title="HU">
`Válasszon nyelvet`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Hogyan kell telepíteni CinemaPress?
> #### Telepítse a webhelyen keresztül
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Telepítse a webhelyen keresztül" alt="Telepítse a webhelyen keresztül"></a>
> #### Telepítse terminálon keresztül
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Telepítse terminálon keresztül" alt="Telepítse terminálon keresztül">
## Hol vásárolhat VPS szervert?
> Az operációs rendszernek a **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** vezérlőpanel nélkül kell lennie!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECT**</a>
</center>
> `*` - **15%** kedvezmény, promóciós kód: `CinemaPress15`
## Hol vásároljon domain nevet?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECT**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECT**</a>
</center>
> `*` - az adatok nem kerülnek nyilvános WHOIS adatbázisba
## Téma «hodor»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Sablon «hodor»"></a>
## Téma «sansa»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Sablon «sansa»"></a>
## Téma «robb»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Sablon «robb»"></a>
## Téma «ramsay»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Sablon «ramsay»"></a>
## Téma «tyrion»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Sablon «tyrion»"></a>
## Téma «cersei»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Sablon «cersei»"></a>
## Téma «joffrey»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Sablon «joffrey»"></a>
## Téma «drogo»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Sablon «drogo»"></a>
## Téma «bran»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Sablon «bran»"></a>
## Téma «arya»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Sablon «arya»"></a>
## Téma «mormont»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Sablon «mormont»"></a>
## Téma «tarly»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Sablon «tarly»"></a>
## Téma «daenerys»
> Telepítse az FTP-n keresztül: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Telepítse a CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Sablon «daenerys»"></a>
## Opciók és modulok CinemaPress
Az összes opcióról és rendszermodulról részletes információkat talál a <a href="https://cinemapress.io/admin/admin.html">dokumentációban</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.id.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Buat situs web streaming video
</center>
> Buat situs web streaming video untuk menonton film dan serial TV di komputer `Windows / iOS`, perangkat seluler `iPhone / Android`, dan TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="100" alt="ID" title="ID">
`Pilih bahasamu`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Bagaimana cara menginstall CinemaPress?
> #### Instal melalui situs web
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Instal melalui situs web" alt="Instal melalui situs web"></a>
> #### Instal melalui terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instal melalui terminal" alt="Instal melalui terminal">
## Di mana membeli server VPS?
> OS harus **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** tanpa panel kontrol!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**MEMILIH**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**MEMILIH**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**MEMILIH**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**MEMILIH**</a>
</center>
> `*` - Diskon **15%**, kode promo: `CinemaPress15`
## Di mana membeli nama domain?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**MEMILIH**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**MEMILIH**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**MEMILIH**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**MEMILIH**</a>
</center>
> `*` - data tidak dikirim ke database WHOIS publik
## Tema «hodor»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Templat «hodor»"></a>
## Tema «sansa»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Templat «sansa»"></a>
## Tema «robb»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Templat «robb»"></a>
## Tema «ramsay»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Templat «ramsay»"></a>
## Tema «tyrion»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Templat «tyrion»"></a>
## Tema «cersei»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Templat «cersei»"></a>
## Tema «joffrey»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Templat «joffrey»"></a>
## Tema «drogo»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Templat «drogo»"></a>
## Tema «bran»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Templat «bran»"></a>
## Tema «arya»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Templat «arya»"></a>
## Tema «mormont»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Templat «mormont»"></a>
## Tema «tarly»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Templat «tarly»"></a>
## Tema «daenerys»
> Instal melalui FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instal melalui CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Templat «daenerys»"></a>
## Opsi dan modul CinemaPress
Informasi terperinci tentang semua opsi dan modul sistem dapat ditemukan dalam <a href="https://cinemapress.io/admin/admin.html">dokumentasi</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.it.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Crea un sito Web di streaming video
</center>
> Creare un sito Web di streaming video per guardare film e serie TV su computer `Windows / iOS`, dispositivi mobili `iPhone / Android` e TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="100" alt="IT" title="IT">
`Scegli la tua lingua`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Come installare CinemaPress?
> #### Installa tramite il sito web
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Installa tramite il sito web" alt="Installa tramite il sito web"></a>
> #### Installa tramite terminale
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Installa tramite terminale" alt="Installa tramite terminale">
## Dove acquistare un server VPS?
> Il sistema operativo dovrebbe essere **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** senza pannelli di controllo!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELEZIONARE**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELEZIONARE**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELEZIONARE**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELEZIONARE**</a>
</center>
> `*` - Sconto del **15%**, codice promozionale: `CinemaPress15`
## Dove comprare un nome di dominio?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELEZIONARE**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELEZIONARE**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELEZIONARE**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELEZIONARE**</a>
</center>
> `*` - i dati non vengono inviati al database WHOIS pubblico
## Tema «hodor»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Modello «hodor»"></a>
## Tema «sansa»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Modello «sansa»"></a>
## Tema «robb»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Modello «robb»"></a>
## Tema «ramsay»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Modello «ramsay»"></a>
## Tema «tyrion»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Modello «tyrion»"></a>
## Tema «cersei»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Modello «cersei»"></a>
## Tema «joffrey»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Modello «joffrey»"></a>
## Tema «drogo»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Modello «drogo»"></a>
## Tema «bran»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Modello «bran»"></a>
## Tema «arya»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Modello «arya»"></a>
## Tema «mormont»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Modello «mormont»"></a>
## Tema «tarly»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Modello «tarly»"></a>
## Tema «daenerys»
> Installa tramite FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Installa tramite CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Modello «daenerys»"></a>
## Opzioni e moduli CinemaPress
Informazioni dettagliate su tutte le opzioni e i moduli di sistema sono disponibili nella <a href="https://cinemapress.io/admin/admin.html">documentazione</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.ja.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# ビデオストリーミングウェブサイトを作る
</center>
> コンピュータ`Windows / iOS`、モバイル機器、`iPhone / Android`テレビ`Smart TV / Android TV / STB`で映画やテレビシリーズを見るためのビデオストリーミングWebサイトを作成する
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="100" alt="JA" title="JA">
`言語を選んでください`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## インストールする方法 CinemaPress?
> #### Webサイト経由でインストール
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Webサイト経由でインストール" alt="Webサイト経由でインストール"></a>
> #### 端末経由でインストール
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="端末経由でインストール" alt="端末経由でインストール">
## VPSサーバーを購入する場所
> OSはコントロールパネルなしの**CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29**であるべきです!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**選択する**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**選択する**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**選択する**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**選択する**</a>
</center>
> `*` - **15**割引、プロモーションコード: `CinemaPress15`
## ドメイン名を購入する場所
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**選択する**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**選択する**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**選択する**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**選択する**</a>
</center>
> `*` - データは公開WHOISデータベースに送信されません
## テーマ «hodor»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="テンプレート «hodor»"></a>
## テーマ «sansa»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="テンプレート «sansa»"></a>
## テーマ «robb»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="テンプレート «robb»"></a>
## テーマ «ramsay»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="テンプレート «ramsay»"></a>
## テーマ «tyrion»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="テンプレート «tyrion»"></a>
## テーマ «cersei»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="テンプレート «cersei»"></a>
## テーマ «joffrey»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="テンプレート «joffrey»"></a>
## テーマ «drogo»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="テンプレート «drogo»"></a>
## テーマ «bran»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="テンプレート «bran»"></a>
## テーマ «arya»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="テンプレート «arya»"></a>
## テーマ «mormont»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="テンプレート «mormont»"></a>
## テーマ «tarly»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="テンプレート «tarly»"></a>
## テーマ «daenerys»
> FTP経由でインストール: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> CLI経由でインストール: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="テンプレート «daenerys»"></a>
## オプションとモジュール CinemaPress
すべてのオプションとシステムモジュールに関する詳細な情報は<a href="https://cinemapress.io/admin/admin.html">ドキュメント</a>にあります。
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.ko.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# 비디오 스트리밍 웹 사이트 만들기
</center>
> 컴퓨터 `Windows / iOS`, 모바일 장치 `iPhone / Android` 및 TV에서 `Smart TV / Android TV / STB` 영화 및 TV 시리즈를 볼 수있는 비디오 스트리밍 웹 사이트 만들기
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="100" alt="KO" title="KO">
`당신의 언어를 선택하세요`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## 설치하는 방법 CinemaPress?
> #### 웹 사이트를 통해 설치
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="웹 사이트를 통해 설치" alt="웹 사이트를 통해 설치"></a>
> #### 터미널을 통해 설치
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="터미널을 통해 설치" alt="터미널을 통해 설치">
## VPS 서버를 구입할 장소는 어디입니까?
> 운영체제는 제어판이없는 **데비안 9 x64**이어야합니다!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**고르다**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**고르다**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**고르다**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**고르다**</a>
</center>
> `*` - **15%** 할인, 프로모션 코드: `CinemaPress15`
## 도메인 이름을 구입할 곳은 어디입니까?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**고르다**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**고르다**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**고르다**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**고르다**</a>
</center>
> `*` - 공용 WHOIS 데이터베이스에 데이터가 전송되지 않음
## 어간 «hodor»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="주형 «hodor»"></a>
## 어간 «sansa»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="주형 «sansa»"></a>
## 어간 «robb»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="주형 «robb»"></a>
## 어간 «ramsay»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="주형 «ramsay»"></a>
## 어간 «tyrion»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="주형 «tyrion»"></a>
## 어간 «cersei»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="주형 «cersei»"></a>
## 어간 «joffrey»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="주형 «joffrey»"></a>
## 어간 «drogo»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="주형 «drogo»"></a>
## 어간 «bran»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="주형 «bran»"></a>
## 어간 «arya»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="주형 «arya»"></a>
## 어간 «mormont»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="주형 «mormont»"></a>
## 어간 «tarly»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="주형 «tarly»"></a>
## 어간 «daenerys»
> FTP를 통해 설치: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> CLI를 통해 설치: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="주형 «daenerys»"></a>
## 옵션 및 모듈 CinemaPress
모든 옵션 및 시스템 모듈에 대한 자세한 정보는 <a href="https://cinemapress.io/admin/admin.html">설명서에서</a> 찾을 수 있습니다.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.lt.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Padarykite vaizdo transliacijos svetainę
</center>
> Sukurkite vaizdo transliacijos svetainę, kad galėtumėte žiūrėti filmus ir TV serialus kompiuteryje `Windows / iOS`, mobiliajame įrenginyje `iPhone / Android` ir televizoriuje `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="100" alt="LT" title="LT">
`Pasirinkite kalbą`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Kaip įdiegti CinemaPress?
> #### Įdiekite per svetainę
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Įdiekite per svetainę" alt="Įdiekite per svetainę"></a>
> #### Įdiekite per terminalą
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Įdiekite per terminalą" alt="Įdiekite per terminalą">
## Kur įsigyti VPS serverį?
> OS turėtų būti **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** be valdymo skydų!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**PASIRINKITE**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**PASIRINKITE**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**PASIRINKITE**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**PASIRINKITE**</a>
</center>
> `*` - **15%** nuolaida, reklaminis kodas: `CinemaPress15`
## Kur pirkti domeno vardą?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**PASIRINKITE**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**PASIRINKITE**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**PASIRINKITE**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**PASIRINKITE**</a>
</center>
> `*` - duomenys nėra siunčiami į viešą WHOIS duomenų bazę
## Tema «hodor»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Šablonas «hodor»"></a>
## Tema «sansa»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Šablonas «sansa»"></a>
## Tema «robb»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Šablonas «robb»"></a>
## Tema «ramsay»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Šablonas «ramsay»"></a>
## Tema «tyrion»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Šablonas «tyrion»"></a>
## Tema «cersei»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Šablonas «cersei»"></a>
## Tema «joffrey»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Šablonas «joffrey»"></a>
## Tema «drogo»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Šablonas «drogo»"></a>
## Tema «bran»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Šablonas «bran»"></a>
## Tema «arya»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Šablonas «arya»"></a>
## Tema «mormont»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Šablonas «mormont»"></a>
## Tema «tarly»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Šablonas «tarly»"></a>
## Tema «daenerys»
> Įdiekite per FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Įdiekite per CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Šablonas «daenerys»"></a>
## Parinktys ir moduliai CinemaPress
Išsamią informaciją apie visas parinktis ir sistemos modulius galima rasti <a href="https://cinemapress.io/admin/admin.html">dokumentuose</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.lv.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Izveidojiet video straumēšanas vietni
</center>
> Izveidojiet video straumēšanas vietni, lai skatītu filmas un TV sērijas datorā `Windows / iOS`, mobilajā ierīcē `iPhone / Android` un TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="100" alt="LV" title="LV">
`Izvēlieties valodu`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Kā instalēt CinemaPress?
> #### Instalējiet, izmantojot tīmekļa vietni
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Instalējiet, izmantojot tīmekļa vietni" alt="Instalējiet, izmantojot tīmekļa vietni"></a>
> #### Instalējiet, izmantojot termināli
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instalējiet, izmantojot termināli" alt="Instalējiet, izmantojot termināli">
## Kur nopirkt VPS serveri?
> OS vajadzētu būt **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** bez vadības paneļiem!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**IZVĒLIETIES**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**IZVĒLIETIES**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**IZVĒLIETIES**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**IZVĒLIETIES**</a>
</center>
> `*` - **15%** atlaide, reklāmas kods: `CinemaPress15`
## Kur nopirkt domēna nosaukumu?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**IZVĒLIETIES**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**IZVĒLIETIES**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**IZVĒLIETIES**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**IZVĒLIETIES**</a>
</center>
> `*` - dati netiek nosūtīti uz publisko WHOIS datu bāzi
## Tēma «hodor»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Veidne «hodor»"></a>
## Tēma «sansa»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Veidne «sansa»"></a>
## Tēma «robb»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Veidne «robb»"></a>
## Tēma «ramsay»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Veidne «ramsay»"></a>
## Tēma «tyrion»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Veidne «tyrion»"></a>
## Tēma «cersei»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Veidne «cersei»"></a>
## Tēma «joffrey»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Veidne «joffrey»"></a>
## Tēma «drogo»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Veidne «drogo»"></a>
## Tēma «bran»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Veidne «bran»"></a>
## Tēma «arya»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Veidne «arya»"></a>
## Tēma «mormont»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Veidne «mormont»"></a>
## Tēma «tarly»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Veidne «tarly»"></a>
## Tēma «daenerys»
> Instalējiet, izmantojot FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instalējiet, izmantojot CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Veidne «daenerys»"></a>
## Iespējas un moduļi CinemaPress
Detalizēta informācija par visām iespējām un sistēmas moduļiem atrodama <a href="https://cinemapress.io/admin/admin.html">dokumentācijā</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.nl.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Maak een website voor het streamen van video's
</center>
> Maak een website voor videostreaming om films en tv-series te bekijken op een computer `Windows / iOS`, mobiel apparaat `iPhone / Android` en tv `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="100" alt="NL" title="NL">
`Kies je taal`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Hoe installeren CinemaPress?
> #### Installeer via website
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Installeer via website" alt="Installeer via website"></a>
> #### Installeren via terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Installeren via terminal" alt="Installeren via terminal">
## Waar kan ik een VPS-server kopen?
> Het besturingssysteem zou **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** moeten zijn zonder bedieningspanelen!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**KIEZEN**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**KIEZEN**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**KIEZEN**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**KIEZEN**</a>
</center>
> `*` - **15%** korting, promotiecode: `CinemaPress15`
## Waar een domeinnaam kopen?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**KIEZEN**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**KIEZEN**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**KIEZEN**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**KIEZEN**</a>
</center>
> `*` - gegevens worden niet verzonden naar de openbare WHOIS-database
## Thema «hodor»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Sjabloon «hodor»"></a>
## Thema «sansa»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Sjabloon «sansa»"></a>
## Thema «robb»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Sjabloon «robb»"></a>
## Thema «ramsay»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Sjabloon «ramsay»"></a>
## Thema «tyrion»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Sjabloon «tyrion»"></a>
## Thema «cersei»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Sjabloon «cersei»"></a>
## Thema «joffrey»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Sjabloon «joffrey»"></a>
## Thema «drogo»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Sjabloon «drogo»"></a>
## Thema «bran»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Sjabloon «bran»"></a>
## Thema «arya»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Sjabloon «arya»"></a>
## Thema «mormont»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Sjabloon «mormont»"></a>
## Thema «tarly»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Sjabloon «tarly»"></a>
## Thema «daenerys»
> Installeren via FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Installeren via CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Sjabloon «daenerys»"></a>
## Opties en modules CinemaPress
Gedetailleerde informatie over alle opties en systeemmodules is te vinden in de <a href="https://cinemapress.io/admin/admin.html">documentatie</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.pl.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Stwórz stronę z streamingiem wideo
</center>
> Stwórz stronę z transmisją strumieniową wideo, aby oglądać filmy i seriale na komputerze `Windows / iOS`, urządzeniu mobilnym `iPhone / Android` i telewizorze `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="100" alt="PL" title="PL">
`Wybierz swój język`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Jak zainstalować CinemaPress?
> #### Zainstaluj za pośrednictwem strony internetowej
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Zainstaluj za pośrednictwem strony internetowej" alt="Zainstaluj za pośrednictwem strony internetowej"></a>
> #### Zainstaluj przez terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Zainstaluj przez terminal" alt="Zainstaluj przez terminal">
## Gdzie kupić serwer VPS?
> System operacyjny powinien być systemem **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** bez paneli sterowania!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**WYBIERZ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**WYBIERZ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**WYBIERZ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**WYBIERZ**</a>
</center>
> `*` - **15%** zniżki, kod promocyjny: `CinemaPress15`
## Gdzie kupić nazwę domeny?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**WYBIERZ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**WYBIERZ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**WYBIERZ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**WYBIERZ**</a>
</center>
> `*` - dane nie są wysyłane do publicznej bazy danych WHOIS
## Motyw «hodor»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Szablon «hodor»"></a>
## Motyw «sansa»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Szablon «sansa»"></a>
## Motyw «robb»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Szablon «robb»"></a>
## Motyw «ramsay»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Szablon «ramsay»"></a>
## Motyw «tyrion»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Szablon «tyrion»"></a>
## Motyw «cersei»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Szablon «cersei»"></a>
## Motyw «joffrey»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Szablon «joffrey»"></a>
## Motyw «drogo»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Szablon «drogo»"></a>
## Motyw «bran»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Szablon «bran»"></a>
## Motyw «arya»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Szablon «arya»"></a>
## Motyw «mormont»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Szablon «mormont»"></a>
## Motyw «tarly»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Szablon «tarly»"></a>
## Motyw «daenerys»
> Zainstaluj przez FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Zainstaluj przez interfejs CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Szablon «daenerys»"></a>
## Opcje i moduły CinemaPress
Szczegółowe informacje na temat wszystkich opcji i modułów systemu można znaleźć w <a href="https://cinemapress.io/admin/admin.html">dokumentacji</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.pt.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Faça um site de streaming de vídeo
</center>
> Crie um site de streaming de vídeo para assistir a filmes e séries de TV no computador `Windows / iOS`, dispositivo móvel `iPhone / Android` e TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="100" alt="PT" title="PT">
`Escolha o seu idioma`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Como instalar CinemaPress?
> #### Instalar via website
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Instalar via website" alt="Instalar via website"></a>
> #### Instalar via terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instalar via terminal" alt="Instalar via terminal">
## Onde comprar um servidor VPS?
> O sistema operacional deve ser o **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** sem painéis de controle!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECIONAR**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECIONAR**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECIONAR**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECIONAR**</a>
</center>
> `*` - **15%** de desconto, código promocional: `CinemaPress15`
## Onde comprar um nome de domínio?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECIONAR**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECIONAR**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECIONAR**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECIONAR**</a>
</center>
> `*` - dados não são enviados para o banco de dados WHOIS público
## Tema «hodor»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Modelo «hodor»"></a>
## Tema «sansa»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Modelo «sansa»"></a>
## Tema «robb»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Modelo «robb»"></a>
## Tema «ramsay»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Modelo «ramsay»"></a>
## Tema «tyrion»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Modelo «tyrion»"></a>
## Tema «cersei»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Modelo «cersei»"></a>
## Tema «joffrey»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Modelo «joffrey»"></a>
## Tema «drogo»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Modelo «drogo»"></a>
## Tema «bran»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Modelo «bran»"></a>
## Tema «arya»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Modelo «arya»"></a>
## Tema «mormont»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Modelo «mormont»"></a>
## Tema «tarly»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Modelo «tarly»"></a>
## Tema «daenerys»
> Instalar via FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instalar via CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Modelo «daenerys»"></a>
## Opções e módulos CinemaPress
Informações detalhadas sobre todas as opções e módulos do sistema podem ser encontradas na <a href="https://cinemapress.io/admin/admin.html">documentação</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.ro.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Creați un site web de streaming video
</center>
> Creați un site web pentru streaming video pentru a viziona filme și seriale TV pe computer `Windows / iOS`, dispozitiv mobil `iPhone / Android` și televizor `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="100" alt="RO" title="RO">
`Alegeți limba dvs`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Cum să instalați CinemaPress?
> #### Instalați prin intermediul site-ului
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Instalați prin intermediul site-ului" alt="Instalați prin intermediul site-ului"></a>
> #### Instalați prin terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instalați prin terminal" alt="Instalați prin terminal">
## De unde să cumperi un server VPS?
> Sistemul de operare ar trebui să fie **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** fără panouri de control!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SELECTAȚI**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SELECTAȚI**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SELECTAȚI**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SELECTAȚI**</a>
</center>
> `*` - **15%** reducere, cod promoțional: `CinemaPress15`
## De unde să cumperi un nume de domeniu?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SELECTAȚI**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SELECTAȚI**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SELECTAȚI**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SELECTAȚI**</a>
</center>
> `*` - datele nu sunt trimise către baza de date WHOIS publică
## Temă «hodor»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Format «hodor»"></a>
## Temă «sansa»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Format «sansa»"></a>
## Temă «robb»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Format «robb»"></a>
## Temă «ramsay»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Format «ramsay»"></a>
## Temă «tyrion»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Format «tyrion»"></a>
## Temă «cersei»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Format «cersei»"></a>
## Temă «joffrey»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Format «joffrey»"></a>
## Temă «drogo»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Format «drogo»"></a>
## Temă «bran»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Format «bran»"></a>
## Temă «arya»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Format «arya»"></a>
## Temă «mormont»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Format «mormont»"></a>
## Temă «tarly»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Format «tarly»"></a>
## Temă «daenerys»
> Instalare prin FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instalare prin CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Format «daenerys»"></a>
## Opțiuni și module CinemaPress
Informații detaliate despre toate opțiunile și modulele de sistem pot fi găsite în <a href="https://cinemapress.io/admin/admin.html">documentație</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.ru.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Создать киносайт онлайн кинотеатр
</center>
> Создать киносайт для просмотра фильмов и сериалов на компьютере `Windows / iOS`, мобильном устройстве `iPhone / Android` и телевизоре `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="100" alt="RU" title="RU">
`Выберите Ваш язык`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Как установить CinemaPress?
> #### Установка через веб-сайт
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Установка через веб-сайт" alt="Установка через веб-сайт"></a>
> #### Установка через терминал
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Установка через терминал" alt="Установка через терминал">
## Где купить VPS сервер?
> ОС выбирайте **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** без панелей управления!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**ВЫБРАТЬ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**ВЫБРАТЬ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**ВЫБРАТЬ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**ВЫБРАТЬ**</a>
</center>
> `*` - **15%** скидка, промокод: `CinemaPress15`
## Где купить доменное имя?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**ВЫБРАТЬ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**ВЫБРАТЬ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**ВЫБРАТЬ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**ВЫБРАТЬ**</a>
</center>
> `*` - данные не отправляются в общедоступную базу данных WHOIS
## Тема «hodor»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Шаблон «hodor»"></a>
## Тема «sansa»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Шаблон «sansa»"></a>
## Тема «robb»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Шаблон «robb»"></a>
## Тема «ramsay»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Шаблон «ramsay»"></a>
## Тема «tyrion»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Шаблон «tyrion»"></a>
## Тема «cersei»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Шаблон «cersei»"></a>
## Тема «joffrey»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Шаблон «joffrey»"></a>
## Тема «drogo»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Шаблон «drogo»"></a>
## Тема «bran»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Шаблон «bran»"></a>
## Тема «arya»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Шаблон «arya»"></a>
## Тема «mormont»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Шаблон «mormont»"></a>
## Тема «tarly»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Шаблон «tarly»"></a>
## Тема «daenerys»
> Установка через FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Установка через CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Шаблон «daenerys»"></a>
## Опции и модули CinemaPress
Подробную информацию обо всех опциях и системных модулях можно найти в <a href="https://cinemapress.io/admin/admin.html">документации</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.sk.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Vytvorte webovú stránku pre streamovanie videa
</center>
> Vytvorte webovú stránku s videom na sledovanie filmov a televíznych seriálov v počítači `Windows / iOS`, mobilnom zariadení `iPhone / Android` a televízii `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="100" alt="SK" title="SK">
`Vyberte si svoj jazyk`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Ako nainštalovať CinemaPress?
> #### Nainštalujte prostredníctvom webových stránok
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Nainštalujte prostredníctvom webových stránok" alt="Nainštalujte prostredníctvom webových stránok"></a>
> #### Inštalácia cez terminál
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Inštalácia cez terminál" alt="Inštalácia cez terminál">
## Kde kúpiť server VPS?
> OS by mal byť **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** bez ovládacích panelov!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**VYBRAŤ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**VYBRAŤ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**VYBRAŤ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**VYBRAŤ**</a>
</center>
> `*` - **15%** zľava, promo kód: `CinemaPress15`
## Kde kúpiť názov domény?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**VYBRAŤ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**VYBRAŤ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**VYBRAŤ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**VYBRAŤ**</a>
</center>
> `*` - údaje nie sú odosielané do verejnej databázy WHOIS
## Téma «hodor»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="šablóna «hodor»"></a>
## Téma «sansa»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="šablóna «sansa»"></a>
## Téma «robb»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="šablóna «robb»"></a>
## Téma «ramsay»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="šablóna «ramsay»"></a>
## Téma «tyrion»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="šablóna «tyrion»"></a>
## Téma «cersei»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="šablóna «cersei»"></a>
## Téma «joffrey»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="šablóna «joffrey»"></a>
## Téma «drogo»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="šablóna «drogo»"></a>
## Téma «bran»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="šablóna «bran»"></a>
## Téma «arya»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="šablóna «arya»"></a>
## Téma «mormont»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="šablóna «mormont»"></a>
## Téma «tarly»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="šablóna «tarly»"></a>
## Téma «daenerys»
> Inštalácia cez FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Inštalácia cez CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="šablóna «daenerys»"></a>
## Možnosti a moduly CinemaPress
Podrobné informácie o všetkých možnostiach a systémových moduloch nájdete v <a href="https://cinemapress.io/admin/admin.html">dokumentácii</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.sl.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Naredite spletno mesto za pretakanje videoposnetkov
</center>
> Ustvarite spletno mesto za pretakanje videoposnetkov, če želite gledati filme in televizijske serije v računalniku `Windows / iOS`, mobilni napravi `iPhone / Android` in televiziji `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="100" alt="SL" title="SL">
`Izberite svoj jezik`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Kako namestiti CinemaPress?
> #### Namestite prek spletnega mesta
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Namestite prek spletnega mesta" alt="Namestite prek spletnega mesta"></a>
> #### Namestite prek terminala
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Namestite prek terminala" alt="Namestite prek terminala">
## Kje kupiti strežnik VPS?
> OS bi moral biti **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** brez nadzornih plošč!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**IZBRATI**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**IZBRATI**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**IZBRATI**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**IZBRATI**</a>
</center>
> `*` - **15%** popust, promocijska koda: `CinemaPress15`
## Kje kupiti ime domene?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**IZBRATI**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**IZBRATI**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**IZBRATI**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**IZBRATI**</a>
</center>
> `*` - podatki niso poslani v javno podatkovno bazo WHOIS
## Tema «hodor»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Predloga «hodor»"></a>
## Tema «sansa»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Predloga «sansa»"></a>
## Tema «robb»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Predloga «robb»"></a>
## Tema «ramsay»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Predloga «ramsay»"></a>
## Tema «tyrion»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Predloga «tyrion»"></a>
## Tema «cersei»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Predloga «cersei»"></a>
## Tema «joffrey»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Predloga «joffrey»"></a>
## Tema «drogo»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Predloga «drogo»"></a>
## Tema «bran»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Predloga «bran»"></a>
## Tema «arya»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Predloga «arya»"></a>
## Tema «mormont»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Predloga «mormont»"></a>
## Tema «tarly»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Predloga «tarly»"></a>
## Tema «daenerys»
> Namestite prek FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Namestite prek CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Predloga «daenerys»"></a>
## Možnosti in moduli CinemaPress
Podrobne informacije o vseh možnostih in sistemskih modulih najdete v <a href="https://cinemapress.io/admin/admin.html">dokumentaciji</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.sq.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Bëni një faqe interneti për transmetim video
</center>
> Krijo një faqe interneti për të shikuar filma dhe seri televizive në kompjuter `Windows / iOS`, pajisje celulare `iPhone / Android` dhe TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="100" alt="SQ" title="SQ">
`Zgjidhni gjuhën tuaj`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Si ta instaloni CinemaPress?
> #### Instaloni nëpërmjet faqes së internetit
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Instaloni nëpërmjet faqes së internetit" alt="Instaloni nëpërmjet faqes së internetit"></a>
> #### Instaloni nëpërmjet terminalit
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Instaloni nëpërmjet terminalit" alt="Instaloni nëpërmjet terminalit">
## Ku mund të blini një server VPS?
> OS duhet të jetë **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** pa panele kontrolli!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**ZGJEDH**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**ZGJEDH**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**ZGJEDH**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**ZGJEDH**</a>
</center>
> `*` - **15%** zbritje, kodi promo: `CinemaPress15`
## Ku mund të blini një emër domain?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**ZGJEDH**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**ZGJEDH**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**ZGJEDH**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**ZGJEDH**</a>
</center>
> `*` - të dhënat nuk dërgohen në bazën publike të WHOIS
## Temë «hodor»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Shabllon «hodor»"></a>
## Temë «sansa»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Shabllon «sansa»"></a>
## Temë «robb»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Shabllon «robb»"></a>
## Temë «ramsay»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Shabllon «ramsay»"></a>
## Temë «tyrion»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Shabllon «tyrion»"></a>
## Temë «cersei»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Shabllon «cersei»"></a>
## Temë «joffrey»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Shabllon «joffrey»"></a>
## Temë «drogo»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Shabllon «drogo»"></a>
## Temë «bran»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Shabllon «bran»"></a>
## Temë «arya»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Shabllon «arya»"></a>
## Temë «mormont»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Shabllon «mormont»"></a>
## Temë «tarly»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Shabllon «tarly»"></a>
## Temë «daenerys»
> Instalo me FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Instaloni nëpërmjet CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Shabllon «daenerys»"></a>
## Opsionet dhe modulet CinemaPress
Informacione të hollësishme për të gjitha opsionet dhe modulet e sistemit mund të gjenden në <a href="https://cinemapress.io/admin/admin.html">dokumentacion</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.sr.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Направите вебсајт за видео стреаминг
</center>
Направите веб сајт за стримовање видео записа да бисте гледали филмове и ТВ серије на рачунару `Windows / iOS`, мобилном уређају `iPhone / Android` и телевизору `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="100" alt="SR" title="SR">
`Изаберите језик`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Како инсталирати CinemaPress?
> #### Инсталирајте преко веб сајта
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Инсталирајте преко веб сајта" alt="Инсталирајте преко веб сајта"></a>
> #### Инсталирајте преко терминала
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Инсталирајте преко терминала" alt="Инсталирајте преко терминала">
## Где купити VPS сервер?
> Оперативни систем би требао бити **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** без контролних панела!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**ИЗАБРАТИ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**ИЗАБРАТИ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**ИЗАБРАТИ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**ИЗАБРАТИ**</a>
</center>
> `*` - **15%** попуста, промо код: `CinemaPress15`
## Где купити име домена?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**ИЗАБРАТИ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**ИЗАБРАТИ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**ИЗАБРАТИ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**ИЗАБРАТИ**</a>
</center>
> `*` - подаци се не шаљу у јавну WHOIS базу података
## Theme «hodor»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Template «hodor»"></a>
## Theme «sansa»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Template «sansa»"></a>
## Theme «robb»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Template «robb»"></a>
## Theme «ramsay»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Template «ramsay»"></a>
## Theme «tyrion»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Template «tyrion»"></a>
## Theme «cersei»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Template «cersei»"></a>
## Theme «joffrey»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Template «joffrey»"></a>
## Theme «drogo»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Template «drogo»"></a>
## Theme «bran»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Template «bran»"></a>
## Theme «arya»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Template «arya»"></a>
## Theme «mormont»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Template «mormont»"></a>
## Theme «tarly»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Template «tarly»"></a>
## Theme «daenerys»
> Инсталирајте преко FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Инсталирајте преко CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Template «daenerys»"></a>
## Опције и модули CinemaPress
Детаљне информације о свим опцијама и системским модулима можете наћи у <a href="https://cinemapress.io/admin/admin.html">документацији</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.sv.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Skapa en videostreamingswebbplats
</center>
> Skapa en videostreamingswebbplats för att titta på filmer och tv-serier på dator `Windows / iOS`, mobilenhet `iPhone / Android` och TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="100" alt="SV" title="SV">
`Välj ditt språk`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Hur man installerar CinemaPress?
> #### Installera via webbplats
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Installera via webbplats" alt="Installera via webbplats"></a>
> #### Installera via terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Installera via terminal" alt="Installera via terminal">
## Var kan man köpa en VPS-server?
> Operativsystemet ska vara **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** utan kontrollpaneler!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**VÄLJ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**VÄLJ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**VÄLJ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**VÄLJ**</a>
</center>
> `*` - **15%** rabatt, promo-kod: `CinemaPress15`
## Var kan man köpa ett domännamn?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**VÄLJ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**VÄLJ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**VÄLJ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**VÄLJ**</a>
</center>
> `*` - data skickas inte till den offentliga WHOIS-databasen
## Tema «hodor»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Mall «hodor»"></a>
## Tema «sansa»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Mall «sansa»"></a>
## Tema «robb»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Mall «robb»"></a>
## Tema «ramsay»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Mall «ramsay»"></a>
## Tema «tyrion»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Mall «tyrion»"></a>
## Tema «cersei»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Mall «cersei»"></a>
## Tema «joffrey»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Mall «joffrey»"></a>
## Tema «drogo»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Mall «drogo»"></a>
## Tema «bran»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Mall «bran»"></a>
## Tema «arya»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Mall «arya»"></a>
## Tema «mormont»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Mall «mormont»"></a>
## Tema «tarly»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Mall «tarly»"></a>
## Tema «daenerys»
> Installera via FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Installera via CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Mall «daenerys»"></a>
## Alternativ och moduler CinemaPress
Detaljerad information om alla alternativ och systemmoduler finns i <a href="https://cinemapress.io/admin/admin.html">dokumentationen</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.sw.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Fanya video ya kusambaza tovuti
</center>
> Unda tovuti ya kusambaza video ili uone sinema na mfululizo wa televisheni kwenye kompyuta `Windows / iOS`, kifaa cha simu `iPhone / Android` na TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="100" alt="SW" title="SW">
`Chagua lugha yako`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Jinsi ya kufunga CinemaPress?
> #### Sakinisha kupitia tovuti
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Sakinisha kupitia tovuti" alt="Sakinisha kupitia tovuti"></a>
> #### Sakinisha kupitia terminal
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Sakinisha kupitia terminal" alt="Sakinisha kupitia terminal">
## Ambapo kununua server ya VPS?
> OS lazima iwe **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** bila paneli za kudhibiti!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**CHAGUA**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**CHAGUA**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**CHAGUA**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**CHAGUA**</a>
</center>
> `*` - **15%** discount, code promo: `CinemaPress15`
## Ambapo kununua jina la uwanja?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**CHAGUA**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**CHAGUA**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**CHAGUA**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**CHAGUA**</a>
</center>
> `*` - data haitumwa kwenye duka la umma la WHOIS
## Mandhari «hodor»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Kigezo «hodor»"></a>
## Mandhari «sansa»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Kigezo «sansa»"></a>
## Mandhari «robb»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Kigezo «robb»"></a>
## Mandhari «ramsay»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Kigezo «ramsay»"></a>
## Mandhari «tyrion»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Kigezo «tyrion»"></a>
## Mandhari «cersei»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Kigezo «cersei»"></a>
## Mandhari «joffrey»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Kigezo «joffrey»"></a>
## Mandhari «drogo»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Kigezo «drogo»"></a>
## Mandhari «bran»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Kigezo «bran»"></a>
## Mandhari «arya»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Kigezo «arya»"></a>
## Mandhari «mormont»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Kigezo «mormont»"></a>
## Mandhari «tarly»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Kigezo «tarly»"></a>
## Mandhari «daenerys»
> Sakinisha kupitia FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Sakinisha kupitia CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Kigezo «daenerys»"></a>
## Chaguzi na modules CinemaPress
Taarifa kamili juu ya chaguzi zote na modules za mfumo zinaweza kupatikana katika <a href="https://cinemapress.io/admin/admin.html">nyaraka</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.th.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# ทำเว็บไซต์สตรีมมิ่งวิดีโอ
</center>
> สร้างเว็บไซต์สตรีมมิ่งวิดีโอเพื่อดูภาพยนตร์และละครทีวีบนคอมพิว `Windows / iOS` เตอร์อุปกรณ์พกพา `iPhone / Android` และทีวี `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="100" alt="TH" title="TH">
`เลือกภาษาของคุณ`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## ติดตั้งอย่างไร CinemaPress?
> #### ติดตั้งผ่านเว็บไซต์
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="ติดตั้งผ่านเว็บไซต์" alt="ติดตั้งผ่านเว็บไซต์"></a>
> #### ติดตั้งผ่านเทอร์มินัล
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="ติดตั้งผ่านเทอร์มินัล" alt="ติดตั้งผ่านเทอร์มินัล">
## จะซื้อเซิร์ฟเวอร์ VPS ได้ที่ไหน
> ระบบปฏิบัติการควรเป็น **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** โดยไม่มีแผงควบคุม!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**เลือก**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**เลือก**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**เลือก**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**เลือก**</a>
</center>
> `*` - ส่วนลด **15%**, รหัสโปรโมชั่น: `CinemaPress15`
## ซื้อชื่อโดเมนได้ที่ไหน
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**เลือก**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**เลือก**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**เลือก**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**เลือก**</a>
</center>
> `*` - ข้อมูลจะไม่ถูกส่งไปยังฐานข้อมูล WHOIS สาธารณะ
## กระทู้ «hodor»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="แบบ «hodor»"></a>
## กระทู้ «sansa»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="แบบ «sansa»"></a>
## กระทู้ «robb»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="แบบ «robb»"></a>
## กระทู้ «ramsay»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="แบบ «ramsay»"></a>
## กระทู้ «tyrion»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="แบบ «tyrion»"></a>
## กระทู้ «cersei»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="แบบ «cersei»"></a>
## กระทู้ «joffrey»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="แบบ «joffrey»"></a>
## กระทู้ «drogo»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="แบบ «drogo»"></a>
## กระทู้ «bran»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="แบบ «bran»"></a>
## กระทู้ «arya»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="แบบ «arya»"></a>
## กระทู้ «mormont»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="แบบ «mormont»"></a>
## กระทู้ «tarly»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="แบบ «tarly»"></a>
## กระทู้ «daenerys»
> ติดตั้งผ่าน FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> ติดตั้งผ่าน CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="แบบ «daenerys»"></a>
## ตัวเลือกและโมดูล CinemaPress
ข้อมูลรายละเอียดเกี่ยวกับตัวเลือกทั้งหมดและโมดูลระบบสามารถพบได้ในเอกสารประกอบ
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.tr.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Bir video akışı web sitesi yapın
</center>
> Bilgisayarda `Windows / iOS`, mobil cihazda `iPhone / Android` ve TV'de `Smart TV / Android TV / STB` filmleri ve TV dizilerini izlemek için bir video akışı web sitesi oluşturun
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="100" alt="TR" title="TR">
`Dilinizi seçin`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Nasıl kurulur CinemaPress?
> #### Web sitesi üzerinden yükle
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Web sitesi üzerinden yükle" alt="Web sitesi üzerinden yükle"></a>
> #### Terminal aracılığıyla yükleyin
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Terminal aracılığıyla yükleyin" alt="Terminal aracılığıyla yükleyin">
## Bir VPS sunucusu nereden alınır?
> İşletim sistemi, kontrol panelleri olmayan **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** olmalıdır!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**SEÇ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**SEÇ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**SEÇ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**SEÇ**</a>
</center>
> `*` - **%15** indirim, promosyon kodu: `CinemaPress15`
## Alan adı nereden alınır?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**SEÇ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**SEÇ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**SEÇ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**SEÇ**</a>
</center>
> `*` - Veriler halka açık WHOIS veritabanına gönderilmez
## Tema «hodor»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="şablon «hodor»"></a>
## Tema «sansa»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="şablon «sansa»"></a>
## Tema «robb»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="şablon «robb»"></a>
## Tema «ramsay»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="şablon «ramsay»"></a>
## Tema «tyrion»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="şablon «tyrion»"></a>
## Tema «cersei»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="şablon «cersei»"></a>
## Tema «joffrey»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="şablon «joffrey»"></a>
## Tema «drogo»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="şablon «drogo»"></a>
## Tema «bran»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="şablon «bran»"></a>
## Tema «arya»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="şablon «arya»"></a>
## Tema «mormont»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="şablon «mormont»"></a>
## Tema «tarly»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="şablon «tarly»"></a>
## Tema «daenerys»
> FTP ile kurun: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> CLI ile yükle: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="şablon «daenerys»"></a>
## Seçenekler ve modüller CinemaPress
Tüm seçeneklere ve sistem modüllerine ilişkin ayrıntılı bilgileri <a href="https://cinemapress.io/admin/admin.html">belgelerde</a> bulabilirsiniz.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.uk.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Створіть веб-сайт для перегляду фільмів онлайн
</center>
> Створіть веб-сайт для потокового відео для перегляду фільмів і телесеріалів на комп'ютері `Windows / iOS`, мобільному пристрої `iPhone / Android` та телевізорі `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="100" alt="UK" title="UK">
`Виберіть мову`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Як встановити CinemaPress?
> #### Встановіть через веб-сайт
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Встановіть через веб-сайт" alt="Встановіть через веб-сайт"></a>
> #### Встановіть через термінал
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Встановіть через термінал" alt="Встановіть через термінал">
## Де купити VPS сервер?
> ОС повинна бути **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** без панелей управління!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**ВИБРАТИ**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**ВИБРАТИ**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**ВИБРАТИ**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**ВИБРАТИ**</a>
</center>
> `*` - знижка **15%**, промо-код: `CinemaPress15`
## Де купити доменне ім'я?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**ВИБРАТИ**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**ВИБРАТИ**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**ВИБРАТИ**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**ВИБРАТИ**</a>
</center>
> `*` - дані не надсилаються до загальнодоступної бази даних WHOIS
## Тема «hodor»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Шаблон «hodor»"></a>
## Тема «sansa»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Шаблон «sansa»"></a>
## Тема «robb»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Шаблон «robb»"></a>
## Тема «ramsay»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Шаблон «ramsay»"></a>
## Тема «tyrion»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Шаблон «tyrion»"></a>
## Тема «cersei»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Шаблон «cersei»"></a>
## Тема «joffrey»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Шаблон «joffrey»"></a>
## Тема «drogo»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Шаблон «drogo»"></a>
## Тема «bran»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Шаблон «bran»"></a>
## Тема «arya»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Шаблон «arya»"></a>
## Тема «mormont»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Шаблон «mormont»"></a>
## Тема «tarly»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Шаблон «tarly»"></a>
## Тема «daenerys»
> Встановіть через FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Встановіть через CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Шаблон «daenerys»"></a>
## Опції та модулі CinemaPress
Докладну інформацію про всі параметри та модулі системи можна знайти в <a href="https://cinemapress.io/admin/admin.html">документації</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.vi.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# Tạo một trang web phát video
</center>
> Tạo một trang web phát video để xem phim và phim truyền hình trên máy tính `Windows / iOS`, thiết bị di động `iPhone / Android` và TV `Smart TV / Android TV / STB`
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="100" alt="VI" title="VI">
`Chọn ngôn ngữ của bạn`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="50" alt="ZH" title="ZH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.zh.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## Cài đặt thế nào CinemaPress?
> #### Cài đặt qua trang web
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="Cài đặt qua trang web" alt="Cài đặt qua trang web"></a>
> #### Cài đặt qua thiết bị đầu cuối
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="Cài đặt qua thiết bị đầu cuối" alt="Cài đặt qua thiết bị đầu cuối">
## Mua máy chủ VPS ở đâu?
> Hệ điều hành phải là **CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29** mà không cần bảng điều khiển!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**LỰA CHỌN**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**LỰA CHỌN**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**LỰA CHỌN**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**LỰA CHỌN**</a>
</center>
> `*` - Giảm giá **15%**, mã khuyến mãi: `CinemaPress15`
## Mua tên miền ở đâu?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**LỰA CHỌN**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**LỰA CHỌN**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**LỰA CHỌN**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**LỰA CHỌN**</a>
</center>
> `*` - dữ liệu không được gửi đến cơ sở dữ liệu WHOIS công cộng
## Chủ đề «hodor»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="Bản mẫu «hodor»"></a>
## Chủ đề «sansa»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="Bản mẫu «sansa»"></a>
## Chủ đề «robb»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="Bản mẫu «robb»"></a>
## Chủ đề «ramsay»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="Bản mẫu «ramsay»"></a>
## Chủ đề «tyrion»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="Bản mẫu «tyrion»"></a>
## Chủ đề «cersei»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="Bản mẫu «cersei»"></a>
## Chủ đề «joffrey»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="Bản mẫu «joffrey»"></a>
## Chủ đề «drogo»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="Bản mẫu «drogo»"></a>
## Chủ đề «bran»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="Bản mẫu «bran»"></a>
## Chủ đề «arya»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="Bản mẫu «arya»"></a>
## Chủ đề «mormont»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="Bản mẫu «mormont»"></a>
## Chủ đề «tarly»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="Bản mẫu «tarly»"></a>
## Chủ đề «daenerys»
> Cài đặt qua FTP: <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> Cài đặt qua CLI: `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="Bản mẫu «daenerys»"></a>
## Tùy chọn và mô-đun CinemaPress
Thông tin chi tiết về tất cả các tùy chọn và mô-đun hệ thống có thể được tìm thấy <a href="https://cinemapress.io/admin/admin.html">trong tài liệu</a>.
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

213
doc/README.zh.md Normal file
View File

@ -0,0 +1,213 @@
<center>
# 制作视频流媒体网站
</center>
> 创建视频流媒体网站,`Windows / iOS` 在电脑,`iPhone / Android` 移动设备和 `Smart TV / Android TV / STB` 电视上观看电影和电视剧
<center>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/zh.svg" width="100" alt="ZH" title="ZH">
`选择你的语言`
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ru.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/es.svg" width="50" alt="ES" title="ES">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.es.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/de.svg" width="50" alt="DE" title="DE">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.de.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fr.svg" width="50" alt="FR" title="FR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ja.svg" width="50" alt="JA" title="JA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ja.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pt.svg" width="50" alt="PT" title="PT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/it.svg" width="50" alt="IT" title="IT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.it.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.en.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/pl.svg" width="50" alt="PL" title="PL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.pl.md)
:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/nl.svg" width="50" alt="NL" title="NL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.nl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/tr.svg" width="50" alt="TR" title="TR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.tr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/cs.svg" width="50" alt="CS" title="CS">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.cs.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ko.svg" width="50" alt="KO" title="KO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ko.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/vi.svg" width="50" alt="VI" title="VI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.vi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sv.svg" width="50" alt="SV" title="SV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hu.svg" width="50" alt="HU" title="HU">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hu.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/el.svg" width="50" alt="EL" title="EL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.el.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ro.svg" width="50" alt="RO" title="RO">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ro.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sk.svg" width="50" alt="SK" title="SK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/da.svg" width="50" alt="DA" title="DA">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.da.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/id.svg" width="50" alt="ID" title="ID">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.id.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/fi.svg" width="50" alt="FI" title="FI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.fi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/th.svg" width="50" alt="TH" title="TH">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.th.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bg.svg" width="50" alt="BG" title="BG">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bg.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/uk.svg" width="50" alt="UK" title="UK">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.uk.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ar.svg" width="50" alt="AR" title="AR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.ar.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sq.svg" width="50" alt="SQ" title="SQ">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sq.md)
[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lt.svg" width="50" alt="LT" title="LT">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lt.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hr.svg" width="50" alt="HR" title="HR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sr.svg" width="50" alt="SR" title="SR">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sr.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/bn.svg" width="50" alt="BN" title="BN">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.bn.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sl.svg" width="50" alt="SL" title="SL">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sl.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/et.svg" width="50" alt="ET" title="ET">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.et.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/lv.svg" width="50" alt="LV" title="LV">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.lv.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/hi.svg" width="50" alt="HI" title="HI">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.hi.md)|[<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/sw.svg" width="50" alt="SW" title="SW">](https://github.com/CinemaPress/CinemaPress/blob/master/locales/README.sw.md)
![Admin-panel](https://raw.githubusercontent.com/CinemaPress/CinemaPress.github.io/master/images/themes/admin.png)
&nbsp;|Admin :factory:|Website :computer:|Mobile :iphone:|TV :tv:
:---:|:---:|:---:|:---:|:---:
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/ru.svg" width="50" alt="RU" title="RU">|<a href="http://RU.CinemaPress.io/admin" target="_blank">RU Admin</a>|<a href="http://RU.CinemaPress.io" target="_blank">RU Website</a>|<a href="http://RU.CinemaPress.io/mobile-version" target="_blank">RU Mobile</a>|<a href="http://RU.CinemaPress.io/tv-version" target="_blank">RU TV</a>
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/locales/en.svg" width="50" alt="EN" title="EN">|<a href="http://EN.CinemaPress.io/admin" target="_blank">EN Admin</a>|<a href="http://EN.CinemaPress.io" target="_blank">EN Website</a>|<a href="http://EN.CinemaPress.io/mobile-version" target="_blank">EN Mobile</a>|<a href="http://EN.CinemaPress.io/tv-version" target="_blank">EN TV</a>
</center>
## 如何安装 CinemaPress?
> #### 通过网站安装
`cinemapress.sh`
<a href="https://cinemapress.sh" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/web.png" title="通过网站安装" alt="通过网站安装"></a>
> #### 通过终端安装
`wget -qO- cinemapress.sh | bash`
<img src="https://raw.githubusercontent.com/CinemaPress/CinemaPress/master/themes/default/public/admin/images/cli.png" title="通过终端安装" alt="通过终端安装">
## 哪里可以买到VPS服务器
> 操作系统应该是**CentOS 7, Debian 9/10, Ubuntu 18/19, Fedora 28/29**,没有控制面板!
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | UA-Hosting | Inferno | MyVPS | Zomro
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Netherlands` | `Netherlands` | `France` | `Netherlands`
:computer: | `2x2700MHz` | `2x2600MHz` | `2x2600MHz` | `1x3300MHz`
:rocket: | `4GB` | `2GB` | `2GB` | `2GB`
:floppy_disk: | `60GB` | `20GB` | `50GB` | `12GB`
:dollar: | `$9.9` | `$8.5*` | `$5.7` | `$3.4`
:point_right: | <a href="https://cinemapress.io/ref/ua-hosting.html" target="_blank">**选择**</a> | <a href="https://cinemapress.io/ref/inferno.html" target="_blank">**选择**</a> | <a href="https://cinemapress.io/ref/myvps.html" target="_blank">**选择**</a> | <a href="https://cinemapress.io/ref/zomro.html" target="_blank">**选择**</a>
</center>
> `*` - 促销代码**15**折扣: `CinemaPress15`
## 在哪里买域名?
<center>
&nbsp;&nbsp;&nbsp;&nbsp; | Tonic | InternetBS | Pananames | Namecheap
:---: | :---: | :---: | :---: | :---:
:earth_americas: | `Tonga` | `Bahamas` | `Panama` | `USA`
:moneybag: | `Card` | `PayPal` | `WebMoney` | `Bitcoin`
:see_no_evil: | :lock:* | :unlock: | :unlock: | :unlock:
:dollar: | `> $50/year` | `> $1/year` | `> $1/year` | `> $1/year`
:point_right: | <a href="https://cinemapress.io/ref/tonic.html" target="_blank">**选择**</a> | <a href="https://cinemapress.io/ref/internetbs.html" target="_blank">**选择**</a> | <a href="https://cinemapress.io/ref/pananames.html" target="_blank">**选择**</a> | <a href="https://cinemapress.io/ref/namecheap.html" target="_blank">**选择**</a>
</center>
> `*` - 数据不会发送到公共WHOIS数据库
## 主题 «hodor»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Hodor/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Hodor/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-hodor/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Hodor/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com hodor`
> **DEMO:** <a href="http://Hodor.CinemaPress.io/" target="_blank">Hodor.CinemaPress.io</a>
<a href="http://Hodor.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Hodor/master/screenshot.png" title="模板 «hodor»"></a>
## 主题 «sansa»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Sansa/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Sansa/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-sansa/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Sansa/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com sansa`
> **DEMO:** <a href="http://Sansa.CinemaPress.io/" target="_blank">Sansa.CinemaPress.io</a>
<a href="http://Sansa.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Sansa/master/screenshot.png" title="模板 «sansa»"></a>
## 主题 «robb»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Robb/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Robb/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-robb/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Robb/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com robb`
> **DEMO:** <a href="http://Robb.CinemaPress.io/" target="_blank">Robb.CinemaPress.io</a>
<a href="http://Robb.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Robb/master/screenshot.png" title="模板 «robb»"></a>
## 主题 «ramsay»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Ramsay/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Ramsay/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-ramsay/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Ramsay/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com ramsay`
> **DEMO:** <a href="http://Ramsay.CinemaPress.io/" target="_blank">Ramsay.CinemaPress.io</a>
<a href="http://Ramsay.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Ramsay/master/screenshot.png" title="模板 «ramsay»"></a>
## 主题 «tyrion»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Tyrion/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tyrion/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tyrion/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tyrion/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com tyrion`
> **DEMO:** <a href="http://Tyrion.CinemaPress.io/" target="_blank">Tyrion.CinemaPress.io</a>
<a href="http://Tyrion.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tyrion/master/screenshot.png" title="模板 «tyrion»"></a>
## 主题 «cersei»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Cersei/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Cersei/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-cersei/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Cersei/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com cersei`
> **DEMO:** <a href="http://Cersei.CinemaPress.io/" target="_blank">Cersei.CinemaPress.io</a>
<a href="http://Cersei.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Cersei/master/screenshot.png" title="模板 «cersei»"></a>
## 主题 «joffrey»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Joffrey/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Joffrey/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-joffrey/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Joffrey/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com joffrey`
> **DEMO:** <a href="http://Joffrey.CinemaPress.io/" target="_blank">Joffrey.CinemaPress.io</a>
<a href="http://Joffrey.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Joffrey/master/screenshot.png" title="模板 «joffrey»"></a>
## 主题 «drogo»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Drogo/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Drogo/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-drogo/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Drogo/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com drogo`
> **DEMO:** <a href="http://Drogo.CinemaPress.io/" target="_blank">Drogo.CinemaPress.io</a>
<a href="http://Drogo.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Drogo/master/screenshot.png" title="模板 «drogo»"></a>
## 主题 «bran»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Bran/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Bran/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-bran/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Bran/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com bran`
> **DEMO:** <a href="http://Bran.CinemaPress.io/" target="_blank">Bran.CinemaPress.io</a>
<a href="http://Bran.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Bran/master/screenshot.png" title="模板 «bran»"></a>
## 主题 «arya»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Arya/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Arya/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-arya/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Arya/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com arya`
> **DEMO:** <a href="http://Arya.CinemaPress.io/" target="_blank">Arya.CinemaPress.io</a>
<a href="http://Arya.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Arya/master/screenshot.png" title="模板 «arya»"></a>
## 主题 «mormont»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Mormont/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Mormont/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-mormont/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Mormont/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com mormont`
> **DEMO:** <a href="http://Mormont.CinemaPress.io/" target="_blank">Mormont.CinemaPress.io</a>
<a href="http://Mormont.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Mormont/master/screenshot.png" title="模板 «mormont»"></a>
## 主题 «tarly»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Tarly/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Tarly/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-tarly/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Tarly/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com tarly`
> **DEMO:** <a href="http://Tarly.CinemaPress.io/" target="_blank">Tarly.CinemaPress.io</a>
<a href="http://Tarly.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Tarly/master/screenshot.png" title="模板 «tarly»"></a>
## 主题 «daenerys»
> 通过FTP安装 <a href="https://github.com/CinemaPress/Theme-Daenerys/" target="_blank">GitHub</a> / <a href="https://gitlab.com/CinemaPress/Theme-Daenerys/" target="_blank">GitLab</a> / <a href="https://bitbucket.org/cinemapress/theme-daenerys/" target="_blank">BitBucket</a> / <a href="https://coding.net/u/CinemaPress/p/Theme-Daenerys/" target="_blank">Coding</a>
> 通过CLI安装 `cinemapress theme example.com daenerys`
> **DEMO:** <a href="http://Daenerys.CinemaPress.io/" target="_blank">Daenerys.CinemaPress.io</a>
<a href="http://Daenerys.CinemaPress.io/" target="_blank"><img src="https://raw.githubusercontent.com/CinemaPress/Theme-Daenerys/master/screenshot.png" title="模板 «daenerys»"></a>
## 选项和模块 CinemaPress
有关所有选件和系统模块的详细信息,请参阅文档。
> Copyright (c) 2014-.... [CinemaPress](https://cinemapress.io)

BIN
files/bbb.mp4 Normal file

Binary file not shown.

View File

@ -0,0 +1 @@
document.security_sha1 = {};

703
files/cinemapress.user.js Normal file
View File

@ -0,0 +1,703 @@
// ==UserScript==
// @name cinemapress
// @name:ru синемапресс
// @name:zh cinemapress
// @description Button auto-complete movie information in CinemaPress.
// @description:ru Кнопка автозаполнения информации о фильме в CinemaPress.
// @description:zh CinemaPress电影信息自动完成按钮。
// @author ExtensionsApp
// @homepageURL https://cinemapress.io/
// @supportURL https://enota.club/
// @icon https://avatars3.githubusercontent.com/u/16612433?s=200
// @license MIT
// @version 2019.6
// @run-at document-end
// @include http://*/*/movies?id=*
// @include https://*/*/movies?id=*
// @include http://*/*/movies?kp_id=*
// @include https://*/*/movies?kp_id=*
// @include http://*/*/movies?tmdb_id=*
// @include https://*/*/movies?tmdb_id=*
// @include http://*/*/movies?imdb_id=*
// @include https://*/*/movies?imdb_id=*
// @include http://*/*/movies?douban_id=*
// @include https://*/*/movies?douban_id=*
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_xmlhttpRequest
// ==/UserScript==
autoComplete();
var omdb = getCookie('omdb');
var tmdb = getCookie('tmdb');
if (!omdb) inputOMDb();
if (!tmdb) inputTMDb();
var urls = [];
function parseData() {
var movieData = {};
var icon = document.querySelector('.autoComplete > strong');
var text = document.querySelector('.autoComplete > span');
var lang = document.querySelector('[name="lang"]')
? document.querySelector('[name="lang"]').value
: 'en';
icon.setAttribute('class', 'fa fa-spinner fa-spin');
tmdb = tmdb
? tmdb
: document.querySelector('[name="tmdb"]')
? document.querySelector('[name="tmdb"]').value
: '';
if (tmdb) setCookie('tmdb', tmdb, { expires: 3600000 });
omdb = omdb
? omdb
: document.querySelector('[name="omdb"]')
? document.querySelector('[name="omdb"]').value
: '';
if (omdb) setCookie('omdb', omdb, { expires: 3600000 });
var src = document.querySelector('[data-poster="src"]');
var type = document.querySelector('[name="movie.type"]')
? document.querySelector('[name="movie.type"]').options[
document.querySelector('[name="movie.type"]').selectedIndex
].value
: '';
var kp_id = document.querySelector('[name="movie.kp_id"]')
? document.querySelector('[name="movie.kp_id"]').value
: '';
var tmdb_id = document.querySelector('[name="movie.tmdb_id"]')
? document.querySelector('[name="movie.tmdb_id"]').value
: '';
var imdb_id = document.querySelector('[name="movie.imdb_id"]')
? document.querySelector('[name="movie.imdb_id"]').value
: '';
var douban_id = document.querySelector('[name="movie.douban_id"]')
? document.querySelector('[name="movie.douban_id"]').value
: '';
if (!kp_id && !tmdb_id && !douban_id && !imdb_id) {
icon.setAttribute('class', 'fa fa-bug');
text.innerHTML = 'IDs not filled!';
return;
}
if ((!tmdb && tmdb_id) || (!omdb && imdb_id)) {
icon.setAttribute('class', 'fa fa-bug');
text.innerHTML = 'API keys not filled!';
return;
}
if (kp_id && (lang === 'ru' || (!imdb_id && !tmdb_id && !douban_id))) {
urls.push(
'https://streamguard.cc/api/videos.json?' +
'api_token=6eb82f15e2d7c6cbb2fdcebd05a197a2&' +
'kinopoisk_id=' +
kp_id
);
urls.push('https://www.kinopoisk.ru/film/' + '' + kp_id);
}
if (douban_id && (lang === 'zh' || (!imdb_id && !tmdb_id && !kp_id))) {
urls.push('https://api.douban.com/v2/movie/subject/' + '' + douban_id);
urls.push('https://movie.douban.com/subject/' + '' + douban_id);
}
if (tmdb && tmdb_id) {
urls.push(
'https://api.themoviedb.org/3/' +
(type === '1' ? 'tv' : 'movie') +
'/' +
tmdb_id +
'?' +
'language=' +
lang +
'&' +
'append_to_response=credits&' +
'api_key=' +
tmdb
);
}
if (omdb && imdb_id) {
urls.push(
'https://www.omdbapi.com/?' + 'i=tt' + imdb_id + '&' + 'apikey=' + omdb
);
}
if (kp_id && lang !== 'ru') {
urls.push(
'https://streamguard.cc/api/videos.json?' +
'api_token=6eb82f15e2d7c6cbb2fdcebd05a197a2&' +
'kinopoisk_id=' +
kp_id
);
urls.push('https://www.kinopoisk.ru/film/' + '' + kp_id);
}
if (douban_id && lang !== 'zh') {
urls.push('https://movie.douban.com/subject/' + '' + douban_id);
}
function api() {
var url = urls.length ? urls.shift() : undefined;
if (url) {
getAPI(url, function(err, res) {
for (var r in res) {
if (res.hasOwnProperty(r)) {
if (lang !== 'ru' && (r === 'translate' || r === 'quality')) {
continue;
}
movieData[r] = movieData[r] ? movieData[r] : res[r];
if (
url.indexOf('omdbapi.com') + 1 &&
(r === 'imdb_rating' || r === 'imdb_vote')
) {
movieData[r] = res[r];
} else if (
url.indexOf('streamguard.cc') + 1 &&
(r === 'kp_rating' || r === 'kp_vote')
) {
movieData[r] = res[r];
}
}
}
api();
});
} else {
if (!movieData.title_ru && !movieData.title_en) {
icon.setAttribute('class', 'fa fa-bug');
text.innerHTML = 'No information!';
console.log(movieData);
return;
}
movieData.country = movieData.country
? movieData.country.replace(
/(The United States of America|United States of America|United States|^US$|^US,|,US$)/gi,
'USA'
)
: '';
if (movieData.title_ru) {
document.querySelector('[name="movie.title_ru"]').value =
movieData.title_ru;
}
if (movieData.title_en) {
document.querySelector('[name="movie.title_en"]').value =
movieData.title_en;
}
if (movieData.type) {
document.querySelector('[name="movie.type"]').value = movieData.type;
}
if (movieData.premiere) {
document.querySelector('[name="movie.premiere"]').value =
movieData.premiere;
}
if (movieData.poster) {
document.querySelector('[name="movie.poster"]').value =
movieData.poster;
}
if (movieData.pictures) {
document.querySelector('[name="movie.pictures"]').value =
movieData.pictures;
}
if (movieData.translate) {
document.querySelector('[name="movie.translate"]').value =
movieData.translate;
}
if (movieData.quality) {
document.querySelector('[name="movie.quality"]').value =
movieData.quality;
}
if (movieData.year) {
document.querySelector('[name="movie.year"]').value = movieData.year;
}
if (movieData.country) {
document.querySelector('[name="movie.country"]').value =
movieData.country;
}
if (movieData.genre) {
document.querySelector('[name="movie.genre"]').value = movieData.genre;
}
if (movieData.actor) {
document.querySelector('[name="movie.actor"]').value = movieData.actor;
}
if (movieData.director) {
document.querySelector('[name="movie.director"]').value =
movieData.director;
}
if (movieData.kp_rating) {
document.querySelector('[name="movie.kp_rating"]').value =
movieData.kp_rating;
}
if (movieData.kp_vote) {
document.querySelector('[name="movie.kp_vote"]').value =
movieData.kp_vote;
}
if (movieData.imdb_rating) {
document.querySelector('[name="movie.imdb_rating"]').value =
movieData.imdb_rating;
}
if (movieData.imdb_vote) {
document.querySelector('[name="movie.imdb_vote"]').value =
movieData.imdb_vote;
}
if (movieData.imdb_id) {
document.querySelector('[name="movie.imdb_id"]').value =
movieData.imdb_id;
}
if (
movieData.description &&
document.querySelector('[name="movie.description"]').value.length < 900
) {
document.querySelector('[name="movie.description"]').value =
movieData.description;
}
if (movieData.poster) {
src.src =
movieData.poster === '1'
? 'https://k.1poster.net/images/film_iphone/iphone_' +
kp_id +
'.jpg?width=180'
: movieData.poster[0] === '/'
? 'https://t.1poster.net/t/p/w185' + movieData.poster
: movieData.poster;
}
autoComplete();
}
}
api();
}
function getAPI(url, callback) {
GM_xmlhttpRequest({
method: 'GET',
url: url,
onload: function(response) {
if (response.readyState === 4 && response.status === 200) {
var result = {};
try {
if (response && response.responseText) {
if (url.indexOf('movie.douban.com') + 1) {
var matchDate = /("datePublished":\s*")([0-9]{4}-[0-9]{2}-[0-9]{2})/gi.exec(
response.responseText
);
var matchId = /(title\/tt)([0-9]{1,8})/gi.exec(
response.responseText
);
result.imdb_id = matchId ? matchId[2].replace(/[^0-9]/g, '') : '';
result.premiere = matchDate
? matchDate[2].replace(/[^0-9\-]/g, '')
: '';
if (omdb && result.imdb_id) {
urls.push(
'https://www.omdbapi.com/?' +
'i=tt' +
result.imdb_id +
'&' +
'apikey=' +
omdb
);
}
} else if (url.indexOf('kinopoisk.ru') + 1) {
var matchDate1 = /(dateCreated"\s*content=")([0-9]{4}-[0-9]{2}-[0-9]{2})/i.exec(
response.responseText
);
var matchDate2 = /(data-date-premier-start-link=")([0-9]{8})/i.exec(
response.responseText
);
if (
matchDate1 &&
!isNaN(new Date(matchDate1[2] + '').getFullYear())
) {
result.premiere = matchDate1[2];
} else if (matchDate2) {
var info = matchDate2[2];
var date =
info[0] +
info[1] +
info[2] +
info[3] +
'-' +
info[4] +
info[5] +
'-' +
info[6] +
info[7];
if (info && !isNaN(new Date(date).getFullYear())) {
result.premiere = date;
}
}
} else {
result = JSON.parse(response.responseText);
}
}
} catch (e) {
console.error(e);
}
var res = {};
if (url.indexOf('streamguard.cc') + 1) {
res = parseKP(result);
} else if (url.indexOf('kinopoisk.ru') + 1) {
res = result;
} else if (url.indexOf('omdbapi.com') + 1) {
res = parseOMDb(result);
} else if (url.indexOf('themoviedb.org') + 1) {
res = parseTMDb(result);
} else if (url.indexOf('douban.com') + 1) {
res = parseDouban(result);
}
console.log(url, result, res);
callback(null, res);
} else {
callback(null, {});
}
}
});
}
function parseTMDb(res) {
return {
title_ru: res.title ? res.title : res.name ? res.name : '',
title_en: res.original_title ? res.original_title : '',
year: res.release_date
? res.release_date.substring(0, 4)
: res.first_air_date
? res.first_air_date.substring(0, 4)
: '',
premiere: res.release_date
? res.release_date
: res.first_air_date
? res.first_air_date
: '',
type: res.number_of_seasons ? '1' : '0',
genre: (res.genres
? res.genres.map(function(v) {
return v.name;
})
: []
).join(','),
country: (res.production_countries
? res.production_countries.map(function(v) {
return v.name;
})
: res.origin_country
? res.origin_country.map(function(v) {
return v;
})
: []
).join(','),
actor: (res.credits && res.credits.cast
? res.credits.cast.map(function(v, i) {
return i < 10 ? v.name : null;
})
: []
)
.filter(Boolean)
.join(','),
director: (res.created_by
? res.created_by.map(function(v, i) {
return i < 10 ? v.name : null;
})
: res.credits && res.credits.crew
? res.credits.crew.map(function(v) {
return v.job === 'Director' ? v.name : null;
})
: []
)
.filter(Boolean)
.join(','),
description: res.overview ? res.overview : '',
poster: res.poster_path ? res.poster_path : '',
pictures: res.backdrop_path ? res.backdrop_path : '',
imdb_rating: res.vote_average ? Math.floor(res.vote_average * 10) : '',
imdb_vote: res.vote_count ? Math.floor(res.vote_count) : '',
imdb_id: res.imdb_id ? res.imdb_id.replace(/[^0-9]/g, '') : ''
};
}
function parseOMDb(res) {
var month = 'Jan/Feb/Mar/Apr/May/Jun/Jul/Aug/Sept/Oct/Nov/Dec'.split('/');
return {
title_en: res.Title && res.Title !== 'N/A' ? res.Title : '',
year:
res.Year && res.Year !== 'N/A'
? (res.Year + '').split('-')[0].replace(/[^0-9]/g, '')
: '',
premiere: (res.Released && res.Released !== 'N/A'
? month.map(function(y, i) {
if (res.Released.indexOf(y) === -1) return null;
var d = res.Released.split(y);
if (d && d.length !== 2) return null;
var mon = i + 1 < 10 ? '0' + (i + 1) : i + 1;
return d[1].trim() + '-' + mon + '-' + d[0].trim();
})
: []
)
.filter(Boolean)
.join(''),
type: res.Type && res.Type === 'series' ? '1' : '0',
genre: (res.Genre && res.Genre !== 'N/A'
? res.Genre.split(',').map(function(v) {
return v.trim();
})
: []
).join(','),
country: (res.Country && res.Country !== 'N/A'
? res.Country.split(',').map(function(v) {
return v.trim();
})
: []
).join(','),
actor: (res.Actors && res.Actors !== 'N/A'
? res.Actors.split(',').map(function(v, i) {
return i < 10 ? v.trim() : null;
})
: []
)
.filter(Boolean)
.join(','),
director: (res.Director && res.Director !== 'N/A'
? res.Director.split(',').map(function(v, i) {
return i < 10 ? v.trim() : null;
})
: res.Writer && res.Writer !== 'N/A'
? res.Writer.split(',').map(function(v, i) {
return i < 10 ? v.trim() : null;
})
: []
)
.filter(Boolean)
.join(','),
description: res.Plot && res.Plot !== 'N/A' ? res.Plot : '',
poster: res.Poster && res.Poster !== 'N/A' ? res.Poster : '',
imdb_rating:
res.imdbRating && res.imdbRating !== 'N/A'
? Math.floor(parseInt(res.imdbRating) * 10)
: '',
imdb_vote:
res.imdbVotes && res.imdbVotes !== 'N/A'
? Math.floor(parseInt(res.imdbVotes.replace(/,/g, '')))
: ''
};
}
function parseKP(r) {
if (!r.length) return {};
var result = {};
for (var i = 0; i < r.length; i++) {
if (
r[i].material_data &&
!/укр/i.test(r[i].translator || '') &&
!result.title_ru
) {
var res = r[i];
result = {
title_ru: res.title_ru
? res.title_ru
.split('(')[0]
.split('[')[0]
.trim()
: '',
title_en: res.title_en
? res.title_en
.split('(')[0]
.split('[')[0]
.trim()
: '',
year: res.material_data.year
? (res.material_data.year + '').split('-')[0].replace(/[^0-9]/g, '')
: '',
type: res.type && res.type === 'serial' ? '1' : '0',
genre: (res.material_data.genres
? res.material_data.genres.map(function(v) {
return v;
})
: []
).join(','),
country: (res.material_data.countries
? res.material_data.countries.map(function(v) {
return v;
})
: []
).join(','),
actor: (res.material_data.actors
? res.material_data.actors.map(function(v, i) {
return i < 10 ? v : null;
})
: []
)
.filter(Boolean)
.join(','),
director: (res.material_data.directors
? res.material_data.directors.map(function(v, i) {
return i < 10 ? v : null;
})
: []
)
.filter(Boolean)
.join(','),
description: res.material_data.description
? res.material_data.description
: '',
poster: res.material_data.poster ? '1' : '',
kp_rating: res.material_data.kinopoisk_rating
? Math.floor(res.material_data.kinopoisk_rating * 10)
: '',
kp_vote: res.material_data.kinopoisk_votes
? Math.floor(res.material_data.kinopoisk_votes)
: '',
imdb_rating: res.material_data.imdb_rating
? Math.floor(res.material_data.imdb_rating * 10)
: '',
imdb_vote: res.material_data.imdb_votes
? Math.floor(res.material_data.imdb_votes)
: '',
translate: res.translator ? res.translator : '',
quality: res.source_type ? res.source_type : '',
premiere: res.premiere ? res.premiere : ''
};
}
}
return result;
}
function parseDouban(res) {
return {
title_ru: res.title ? res.title : '',
title_en: res.original_title ? res.original_title : '',
year: res.year ? (res.year + '').split('-')[0].replace(/[^0-9]/g, '') : '',
type: res.subtype && res.subtype === 'tv' ? '1' : '0',
genre: (res.genres
? res.genres.map(function(v) {
return v;
})
: []
).join(','),
country: (res.countries
? res.countries.map(function(v) {
return v;
})
: []
).join(','),
actor: (res.casts
? res.casts.map(function(v, i) {
return i < 10 ? v.name : null;
})
: []
)
.filter(Boolean)
.join(','),
director: (res.directors
? res.directors.map(function(v, i) {
return i < 10 ? v.name : null;
})
: []
)
.filter(Boolean)
.join(','),
description: res.summary ? res.summary : '',
poster: res.images && res.images.medium ? res.images.medium : '',
imdb_rating:
res.rating && res.rating.average
? Math.floor(res.rating.average * 10)
: '',
imdb_vote: res.ratings_count ? Math.floor(res.ratings_count) : '',
imdb_id: res.imdb_id ? res.imdb_id : '',
premiere: res.premiere ? res.premiere : ''
};
}
function autoComplete() {
var elem = document.querySelector('.autoComplete');
if (elem) elem.parentNode.removeChild(elem);
var autoBtn = document.createElement('a');
var autoIcon = document.createElement('strong');
var autoSeparate = document.createElement('i');
var autoText = document.createElement('span');
autoBtn.setAttribute('class', 'btn power-on autoComplete');
autoBtn.setAttribute('href', 'javascript:void(0)');
autoSeparate.innerHTML = '&nbsp;&nbsp;';
autoText.innerHTML = 'Auto-fill information';
autoIcon.setAttribute('class', 'fa fa-video');
autoBtn.appendChild(autoIcon);
autoBtn.appendChild(autoSeparate);
autoBtn.appendChild(autoText);
var right = document.querySelector('.window > .actionbar > .pull-right > a');
if (right) {
right.parentNode.insertBefore(autoBtn, right);
}
autoBtn.addEventListener('click', parseData, false);
}
function inputOMDb() {
var omdbDiv = document.createElement('div');
var omdbInput = document.createElement('input');
omdbDiv.setAttribute('class', 'spacer-10');
omdbInput.setAttribute('class', 'form-control');
omdbInput.setAttribute('name', 'omdb');
omdbInput.setAttribute('placeholder', 'OMDb apikey [omdbapi.com]');
var omdbInsert = document.querySelector('[name="movie.id"]');
if (omdbInsert) {
omdbInsert.parentNode.insertBefore(omdbDiv, omdbInsert.nextSibling);
omdbInsert.parentNode.insertBefore(omdbInput, omdbInsert.nextSibling);
}
}
function inputTMDb() {
var tmdbDiv = document.createElement('div');
var tmdbInput = document.createElement('input');
tmdbDiv.setAttribute('class', 'spacer-10');
tmdbInput.setAttribute('class', 'form-control');
tmdbInput.setAttribute('name', 'tmdb');
tmdbInput.setAttribute('placeholder', 'TMDb api_key [tmdb.org]');
var tmdbInsert = document.querySelector('[name="movie.id"]');
if (tmdbInsert) {
tmdbInsert.parentNode.insertBefore(tmdbDiv, tmdbInsert.nextSibling);
tmdbInsert.parentNode.insertBefore(tmdbInput, tmdbInsert.nextSibling);
}
}
function getCookie(name) {
var matches = document.cookie.match(
new RegExp(
'(?:^|; )' + name.replace(/([.$?*|{}()\[\]\\\/+^])/g, '\\$1') + '=([^;]*)'
)
);
return matches ? decodeURIComponent(matches[1]) : undefined;
}
function setCookie(name, value, options) {
options = options || {};
var expires = options.expires;
if (typeof expires === 'number' && expires) {
var d = new Date();
d.setTime(d.getTime() + expires * 1000);
expires = options.expires = d;
}
if (expires && expires.toUTCString) {
options.expires = expires.toUTCString();
}
value = encodeURIComponent(value);
var updatedCookie = name + '=' + value;
for (var propName in options) {
if (options.hasOwnProperty(propName)) {
updatedCookie += '; ' + propName;
var propValue = options[propName];
if (propValue !== true) {
updatedCookie += '=' + propValue;
}
}
}
document.cookie = updatedCookie;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

BIN
files/content/news1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

BIN
files/content/news10.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Some files were not shown because too many files have changed in this diff Show More