Skip to main content

Install Xampp in Ubuntu

Install Xampp in Ubuntu:

Step1:
Open Terminal
Before installing the package, create a directory.
user1@user1:~$ mkdir xampp
user1@user1:~$ cd xampp/
user1@user1:~/xampp$



 * it creates a folder in HOME

Step2:





Check Xampp Status:
sudo /opt/lampp/lampp status
Run Xampp with Control Panel window:
sudo /opt/lampp/manager-linux.run

Run Xampp:
sudo /opt/lampp/manager-linux.run

Stop Xampp:
sudo /opt/lampp/lampp stop


You can create the backup by calling:
sudo /opt/lampp/lampp backup

Comments

Popular posts from this blog

Most Useful .htaccess Tricks for WordPress website

Most Useful .htaccess Tricks for WordPress website Some most useful .htaccess tricks for your WordPress website are here. Wordpress needs htaccess to work perfectly and runs smoothly. Here is the htaccess code for a basic wordpress site: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress ----------- If you are using Localhost , for example: http://localhost/codingsparks Then htaccess is... # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / codingsparks/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /codingsparks /index.php [L] </IfModule> # END WordPress Wordpress MultiSite htaccess: RewriteEngine On RewriteBase / RewriteRu...

Ionic framework Basics - 1

Ionic framework Basics - 1 1. Install Node.js check node js is installed Goto CMD   > type npm --> to check node js is installed   > if not install node js 2. Install git (if necessary) 3. Install Ionic: > check ionic is installed or not   > ionic Installing Ionic: > install ionic cordava -install 4. Creating a blank project in Ionic : Upto 3.19.0 ver > ionic start myApp blank --v2 3.19.1+ ionic start saiApp blank --type=ionic-angular saiApp  >>> your app folder --v2   >>> ionic version 5. Running an ionic App: Goto your App folder ( saiApp ) type > ionic serve -w chrome -lab dev server running: http://localhost:8100/ >>> Files in ionic > src >> component.ts > pages >> home (default) >>> home.html >>> home.ts -------------------------------------------- Tips: 1. ionic start --help 2. You can downgrade to your old version b...