How to download full source of old commit in BitBucket?
It’s very easy to download complete source of your project from an old commit by just following these steps: Click on Commits from the dashboard of your project in BitBucket. Get the commit id of the...
View ArticleHow to install Node.js on Linux CentOS from the EPEL Repository?
An alternative installation method uses the EPEL (Extra Packages for Enterprise Linux) repository that is available for CentOS and related distributions. To gain access to the EPEL repo, you must...
View ArticleHow 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