Tag : Ubuntu 14.04
ItSolutionStuff.com have tutorials for Ubuntu 14.04 tag, here you can study articles of Ubuntu 14.04 tag, Ubuntu 14.04 tag posts collection, most popular and useful tutorials of Ubuntu 14.04 tag, here you can find list of all relevant posts and example about Ubuntu 14.04 tag, we have lists of tutorials and examples about Ubuntu 14.04 tag. very simple and quick example collection of Latest Ubuntu 14.04 tag.

Solved Issue - "/usr/bin/env: ‘node’: No such file or directory"
<br/> In this post i want to share one issue that i fetch. When i started working on my react js project first time on my ubuntu 16.04, i installed npm and then after i run bellow command: <pre> npm install -g create-react-app </pre> this way i installed create-react-app then after i created new com.....

How to create quick apache virtual host in Ubuntu?
We always require to create virtualhost on each project because we don't want to run each project manually, so it is better way to create virtual host address for each project when you development like as bellow: <pre> http://blog.dev http://test.dev http://example.dev http://demo.dev </pre> It wil.....

How to install composer using command line in ubuntu ?
Composer through we can get packages from git and use it in our project. But you require to install composer in your system for getting packages. You can get packages for core PHP, Laravel, codeigniter etc. So, If you are working on ubuntu OS and you require to install composer then this post will .....

How to create virtual host in ubuntu apache?
we always like to create virtual host and run our project that way we can debug properly and run as like our website. But if you are working on ubuntu then we have always follow several step to create virtual host and that very long process. So, i found one package that provide virtualhost command.....

Install Sublime Text 3 in Ubuntu 14.04 using Terminal
Nowdays, Sublime Text Editor is a most popular text editor in the world. Sublime Text Editor 3 are provide several packages like CodeFormatter, GitGutter, Git, Sidebar etc and that's why it is most popular and wide used in today. If you want to install sublime text editor 3 in your ubuntu operatin.....

How to uninstall cordova and ionic in ubuntu
If you require to remove cordova and ionic from ubuntu then you uninstall using terminal command. you can uninstall cordova then you can just run bellow command. I added two command one for uninstall cordova and other uninstall ionic framework. <strong>Example:</strong> <pre class="prettyprint lang-.....

How to Install Sublime Text Editor 3 in Ubuntu?
Sublime Text is a very popular text editor in nowdays. Most of the developer chooes Sublime Test for codding because it is very smooth and pretty easy. I think specially most of the PHP developer are chooes sublime for developing. If you are working on ubunu system then you can install very easily, .....

How to solve "Cannot find module 'bplist-parser'" ?
When i was working in my ionic mobile application on my ubuntu 14.04 system and i try to remove android platform at that time i see bellow error : <pre> module.js:340 throw err; ^ Error: Cannot find module 'bplist-parser' at Function.Module._resolveFilename (module.js:338:15) .....

How to increase upload file size limit PHP in Ubuntu?
When i was working on my php project and i need to direct import mysql database in my phpmyadmin in Ubuntu 14.04 system, but my database size was 30MB, so i can't upload my database. that's why I need to change upload max file in php.ini. so try to find something how to change upload_max_filesize in.....

How to get php.ini file path?
You can get location path of php.ini file using php_ini_loaded_file() of PHP. Sometimes we require to get php.ini file path. So, if you need to get path of php confogration file then you can get following way: <strong>Example:</strong> <pre class="prettyprint lang-php"> print_r(php_ini_loaded_file().....