2013
Introduction of D3.js
What is D3.js Why we use D3.js When and where you should use D3.js What is D3.js D3.js is a JavaScript library for manipulating documents based data. D3.js bring data using SVG, HTML and CSS. D3.js worked on all modern browsers, D3.js affiliating visualization effects as well. Why we use D3.js D3.js providing visualization effect […]
Tutorial Angular ng-controller replaced by Angular components
In Angular, there is no ng-controller directive. The concept of controllers was used in AngularJS, the predecessor of Angular. In the Angular, ng-controllers have been replaced by components. In Angular, components are the building blocks of your application. They encapsulate the view (HTML), logic, and data associated with a particular part of your application’s user […]
MySQL ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’
Somehow the MySQL server process did not create the socket, or the client is looking for the socket in the wrong place that is why MySQL is generate ERROR 2002 (HY000): Can’t connect to local MySQL server through socket To prevent “MySQL Error 2002 Can’t connect to local MySQL server through socket“, we have to […]
SEO friendly URL’s for Magento
SEO (Search Engine Optimization) friendly URLs allow your website to be found quicker within the search engines. To enable SEO friendly links in Magento, please follow steps as define below: Enable SEO Friendly URL in Magento Login to your Magento admin panel Navigate to System->Configuration->Web You will found option “Search Engine Optimization”, click on that […]
Introduction to Angular
Angular.js is an open source JavaScript MVC framework developed by Google. Angular.js is an allows to separate presentation logic and application logic on web applications. HTML is generally use for static documents, What happen when we try to use HTML for dynamic views? Is this possible in web-applications? AngularJS is make that possible dynamic HTML […]
MyISAM vs InnoDB: Discover well-informed MySQL Storage Engines
The storage engine that is used with MySQL databases can have a big impact on features, dependability, and performance for developers. MyISAM and InnoDB are two of the most used engines. This article explain difference between MyISAM vs InnoDB and advantages and disadvantages of each database engines. MyISAM Overview MyISAM, which was originally MySQL’s default […]
Joomla – You are not permitted to use that link
I am going to change my joomla articles, when i changed article and tried to save that articles. I found Error Like You are not permitted to use that link. This is how I have resolve issue of “You are not permitted to use that link” I just refresh it and after that it never […]
How to convert JSON string to Array
Here I an showing convert JSON string to php Array 1. I have taken php Variable, I have assign JSON in that php Variable 2. Here is My JSON Array $jsonArray = ‘{“person_id”:”BC21903E-9D4B-40E9-9DAD-00038273508F”, “last_seen_by”:”8A40E73A-8228-4225-B980-A84D7148925A”, “last_name”:”Last 175759″, “first_name”:”First 175759″, “date_of_birth”:”19710222″, “zip”:”190133306″, “sex”:”F”, “race”:null, “other_id_number”:”NEW502828″, “language”:”English”, “religion”:null, “ethnicity”:”Black Or African American”, “last_appt_date”:”20120726″, “allergies”:[], “diagnoses”:[{ “person_id”:”BC21903E-9D4B-40E9-9DAD-00038273508F”, “provider_id”:”88E6E79C-9627-48C0-A2A2-9C1570396F5B”, “enterprise_id”:”1″, […]
Magento USPS METHOD ERROR
USPS shipping method is not showing while order. check var/log file that will show the error log of USPS.
How to lock the orientation to portrait mode in a iPhone/Andorid Web Application?
You can specify CSS styles based on viewport orientation: Target the browser with body[orient=”landscape”] or body[orient=”portrait”] Try this via the CSS @viewport rule @viewport { orientation: portrait; } Or $(document).ready(function () { $(window) .bind(‘orientationchange’, function(){ if (window.orientation % 180 == 0){ $(document.body).css(“-webkit-transform-origin”, “”) .css(“-webkit-transform”, “”); } else { if ( window.orientation > 0) { //clockwise […]