با سلام خدمت دوستان
من میخوام یک اسکریپت نصب کنم که برای نصب اسکریپت حتما باید هاست مجازی ایجاد کنم

من توی نت زیاد گشتم و با کامندی هاست مجازی ایجاد کردم
ولی موقع نصب اسکریپت ارور NOT FOUND میده

این اسکریپت با فریمورک لاراول هست،آیا باید لاراول روی PHP نصب کنم؟

لطفا کامندی که باید استفاده کنم را بفرمایید
ممنون
دستور نصب که به لاتین هست رو در پایین میزارم ببینید

Installation



Overview

Acelle is a self-hosted web application written in PHP, on top of the Laravel 5.2 framework. The followings are required to install Acelle:

  • Operating System: Linux (RedHat, Fedora, CentOS, Debian, Ubuntu, etc.). Unfortunately we have yet to support Windows or Mac OS.
  • PHP Version: 5.x, 7.x
  • MySQL Version: >= 5.x
  • Application server: Apache, Nginx
  • Some other PHP libraries and Linux utilities (OpenSSL for example)

Required PHP extensions

Dependencies will be checked as you install Acelle to your system. Just follow the setup wizard to install the dependencies.

  • Mbstring
  • OpenSSL
  • Socket


  • PDO Driver
  • Tokenizer
  • PHP Zip Archive
  • IMAP Extension

Installation with Apache

Before installing, make sure mod_rewrite is enabled.
Unzip the source file
cd /home/user/
unzip Acelle-2.0.4.zip Put the Acelle source folder into your webroot. For example, if your Acelle source is located at `/home/user/Acelle`, you can configure Apache virtual host as follows (remember to point the DocumentRoot to the public folder of the source)
<VirtualHost *:80>
ServerName yourhost.net
DocumentRoot "/home/user/Acelle/public"
Options Indexes FollowSymLinks
<Directory "/home/user/Acelle/public">
AllowOverride All
Require all granted
</Directory>
</VirtualHost> Change the director/file's owner to Apache's running user (www-data for example), to make sure it has proper permission on your source files
sudo chown www-data:www-data -R /home/user/Acelle
sudo chmod 775 -R /home/user/Acelle Then restart Apache and go to the webapp's installation URL. For example
http://yourhost.net/install Follow the web installation wizard and you will get Acelle installed on your own host.
Installation with other application servers

Although Apache is the recommended application server for production, Acelle webapp can also work with any other application that supports PHP like Nginx, Lightspeed, etc. Please follow the related documentation for how to setup a standard webapp on those application servers.