When you get “Error initializing Cordova: Class not found” error, it means that the plugin is messed up, corrupted or duplicate. To fix this run
1 | cordova remove platform android |
Hope this helps you out.
When you get “Error initializing Cordova: Class not found” error, it means that the plugin is messed up, corrupted or duplicate. To fix this run
1 | cordova remove platform android |
Hope this helps you out.
I made a git repo to start a laravel project https://github.com/ryan-wong/laravel-boilerplate.git.
Here’s a list of stuff to do to make it work. I’m assuming your running this in /var/www.
1 | cd /var/www/project |
I’m going list out all technical issues I found while developing ionic framework application for ios.
1.What you see on the emulator is not exactly what you see in real ios device.
2.Make sure to load divs that have ng-show last on the page because the device loads these elements slower resulting in them showing when they shouldn’t.
3.When making your project in ios remember to get the following:
4.You cannot use safari to inspect a built ipa app running on the device. Good luck debugging.
5.Really try not to use position absolute CSS on ios because the pixels are not same ratios.
I found this script which will allow you run npm without being sudo.
1 |
|
Heres a list of steps I foun online for my reference.
Download:
wget https://phar.phpunit.de/phpunit.phar
Make executable:
chmod +x phpunit.phar
Move globally:
sudo mv phpunit.phar /usr/local/bin/phpunit
Test
phpunit –version
To edit files in your “/var/www” folder without making the directory 777 permission do the following:
1 | sudo adduser <username> www-data |
Remember to logout and log back in to take effect.
MongoDb 3.0 doesn’t support 32 bit systems so you will need to use version 2.4
Here are the steps:
1 | sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 |
Some UI for mongodb I found were:
Heres steps to install phpmyadmin on ubuntu.
1 | sudo apt-get install phpmyadmin apache2-utils |
Here are the steps:
1 | ssh-keygen |
Now you just need to type this code into your version control.
This is how I installed node on ubuntu 14.04
1 | curl -sL https://deb.nodesource.com/setup | sudo bash - |
Now you get the latest version of node.