Commands

Commands Mac Server
How to Run PHP Specific Version for a PHP Script in MacOSX?
August 15, 2022
0
Suppose you have a php CLI Script that runs only on php version 5.4, but your default PHP version is 8.0.1. So run the below command to run the php Script in PHP 5.4: # /Applications/MAMP/bin/php/php5.4/bin/php -q test.php If you need to ru the PHP Script inn PHP 7.4 then run the below command: # […]
Coding Commands Programmer
How To Install SAAS on Mac
March 21, 2020
0
SaaS is very important to generate CSS with variables You can install it on your MAC by typing the below command: brew install sass/sass/sass if you are not using MAC, click the URL https://sass-lang.com/install for details to install it for other OS sudo gem install sass Now, suppose I am working on my WordPress Theme […]
Commands Tips & Tricks
How To Copy SVN Project From One Host to Another Host
August 23, 2015
0
Today I need to move the whole SVN to a new server  that is under different IP. I have followed the below step-by-step process. My Current PC IP: 192.162.0.1 New PC IP: 192.162.0.2 MacOSX Command: 1. need to login the old server  and run the below command in your command console: First Run the below Command in […]
Commands
How To Relocate Your MAC Project SVN
August 23, 2015
0
Our Project SVN Folder was moved recently from one Host to another Host. I was looking for the command solution to change the SVN Location of the project that are dumped in my MACOSX. Now, I have found it what command I need to run. 1. Run command prompt 2. cd to the project folder. […]