*Kurulum için Sunucu gerekiyor. Eğer bu sistemi kurmak istiyorsanız Flarum kurulu bir şekilde hosting satıyorum.*
First things first, we need to make sure we have shell access enabled on our cPanel account. If you don’t have this, you will need to contact your host and have them enable it for you.
Next we need to SSH into our cPanel server and install Composer. Start by changing your directory to /bin and downloading Composer.
> Öncelikli olarak sunucumuzda cpanel ve diğer tüm eklentilerin kurulu olması gerekiyor. Daha sonra SSH erişimi olduğundan emin olun. Eğer erişiminiz var ise /bin dizinine gider kuruluma başlayalım.
cd /bin
wget https://getcomposer.org/installer
Note: Depending on your server configuration, you may need to use sudo wget https://getcomposer.org/installer instead
> Not: Giriş yaptığınız kullanıcıya göre sudo wget https://getcomposer.org/installer şeklinde yönetici onayı isteyebilir.
Before installing let’s check our compatibility:
> Yüklemden önce uyumlulukları kontrol edelim
php installer --check
All settings correct for using Composer
If everything looks good let’s install Composer:
>Her şey iyi görünüyorsa, Composer'ı yükleyelim:
php installer
Downloading...
Composer successfully installed to: /bin/composer.phar
Use it: php composer.phar
Now that Composer is installed, we can delete the installer file:
> Kurulum tamamlandığında kurulum dosyamızı silebiliriz:
rm -f installer
Note: If you logged in as root to install Composer make sure you switch back on the cPanel user account before continuing.
>Not: Composer'ı kurmak için root olarak oturum açtıysanız, devam etmeden önce cPanel kullanıcı hesabına tekrar geçiş yaptığınızdan emin olun.
Composer setup is complete. Follow these steps in turn:
> Kurulum tamamlandı. Sırasıyla şu adımları izleyin:
Enter site index
>Site dizinine girin
cd /home/sitename/
Set file permissions:
>Dosya yetkilerini ayarlayın:
chown username.nobody public_html
chmod 0750 public_html
Enter Public_html
>public_html içine girin:
cd public_html
Set up "Flarum"
>Flarum'u Kurun
composer create-project flarum/flarum . --stability=beta
Set file permissions:
>Dosya yetkilerini ayarlayın:
chown username.username -R *
chown username.username -R .htaccess
chown username.username -R .editorconfig
Set this to file permissions.
> Dosya yetkilerini bu şekilde ayarlayın.
Installation completed
>Kurulum tamamlandı.
Kaynak: http://cagdaskorkmaz.com.tr/d/2-cpanel-flarum-install