How to install Plesk on Linux CentOS?
Download the autoinstaller from our website:wget http://autoinstall.plesk.com/plesk-installerAdd execute permissions to the autoinstaller:chmod +x plesk-installerLaunch the...
View ArticleCentOS: how to execute a php file with different php version than the php...
To execute a php file with different php version than the version installed on the main php of your Server follow this: You should know that where is that php version located so that you can add the...
View ArticleSSH: how to run a PHP script in background forever in Linux (CentOS) ?
If you want to run a PHP script in the background forever through SSH then follow these steps: If you are using a SSH terminal (PuTTY) then directly run following command:// Notice '&'; that...
View ArticlePHP: How to run / execute a script in the background forever through SSH ?
You can execute a php script in the background forever by using SSH through PHP but for that you have to make sure first that SSH2 extension is available. PHP DOCS:...
View ArticleSSH: How to stop a script running in the background?
Open/Login SSH into the server Type in ps x See the list of processes currently on your server Get the PID(process id) from that list and type kill xxxxx That should do it. Source: StackOverflow...
View ArticleHow to lock screen orientation to portrait or landscape?
This article will show you how to lock screen orientation to one direction. Environment Details: – Phonegap Build – cli-5.2.0 – Device: iPhone S5 9.3.2 For locking orientation to portrait add following...
View ArticleHow to Change Bootstrap Carousel Slide Speed
The speed cannot be controlled by the API. Though you can modify CSS that is in charge of that. find in the bootstrap.css file:.carousel-inner > .item { position: relative; display: none;...
View ArticleAngular.js How to remove hash from url?
Configuration:$routeProvider .when('/path', { templateUrl: 'path.html', }); $locationProvider .html5Mode(true);You should set the base in HTML-file<html> <head> <base href="/">...
View Article