Showing posts with label Phpmyadmin. Show all posts
Showing posts with label Phpmyadmin. Show all posts

Thursday, 3 December 2015

Start Xampp automatically when system start (In Ubuntu)


To Open Xampp Automatically  when system start Follow the Process

Open Terminal (Shortcut key  : cntr+alt+t )

Then type the following command

sudo  /opt/lampp/lampp start
sudo gedit /etc/init.d/lampp

It will open a file paste the following code in that file


#!/bin/bash
/opt/lampp/lampp start



Then save file and type following commands on terminal

sudo chmod +x /etc/init.d/lampp
sudo update-rc.d lampp defaults



Now restart your system.

Friday, 27 February 2015

Increase import file size in phpmyadmin


Increase import file size in phpmyadmin




open php.ini from /opt/lampp/etc location


i.e.    /opt/lampp/etc/php.ini            //    file location


then find for     :    post_max_size


change the size in mb such as you want 512mb file size limit so type 512M


then again find for :    upload_max_filesize



similarly change the size in mb such as you want 512mb file size limit so type 512M


now save the file and restart the xampp


in ubuntu type on terminal to restart the xampp


sudo /opt/lampp/lampp restart