Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Собственно сабж. Нужна панель управления сервера, чтобы можно было включать плагины, закачивать карты и т.п, ставить собираюсь на Dedic вместе с CS сервером, тоесть все на одном сервере.
1. Unzip the contents of 'Swift_Panel_v1.6.1' to a folder on your computer.
2. Edit the settings in the file 'configuration-dist.php' and rename it to
'configuration.php'. It is located in the '/upload_me' folder.
3. Upload the entire contents of the folder '/upload_me' to your website in
binary mode. It is recommended to change the name of the '/admin' folder.
4. CHMOD the following folder:
/templates_c 777
5. Run the installation script at
Для просмотра ссылки Войдиили Зарегистрируйся
6. Once complete, delete the install folder from your web server.
The following example is for CentOS 5.x w/ cPanel.
Update or install: (Most of these should be installed already if you use cPanel)
automake
php-devel
libtool
openssl-devel
gcc++
Install libssh2
cd /usr/src
wget Для просмотра ссылки Войдиили Зарегистрируйся
tar -zxf libssh2-1.0.tar.gz
cd libssh2-1.0
./configure
make all install
cd /usr/src
rm -Rf libssh2-1.0
rm -f libssh2-1.0.tar.gz
Install ssh2 PHP bindings
cd /usr/lib/php (Path might differ on your server) (Most likely /usr/lib/php4 if you are using PHP 4)
wget Для просмотра ссылки Войдиили Зарегистрируйся
tar -zxf ssh2-0.11.0.tgz
cd ssh2-0.11.0
phpize && ./configure --with-ssh2 && make
cd modules
mv ssh2.so /usr/local/lib/php/extensions/no-debug-non-zts-20060613 (Replace with your Extension Path)
cd /usr/lib/php (Path might differ on your server)
rm -Rf ssh2-0.11.0
rm -f ssh2-0.11.0.tgz
Edit PHP settings
vi /usr/local/lib/php.ini (Replace with your Configuration Path)
extension_dir = "/usr/local/lib/php/extensions/no-debug-non-zts-20060613" (Replace with your Extension Path)
extension = ssh2.so
Restart Apache
service httpd restart
You can run "php -m" and see if ssh2 is listed.