keenlio.com
Magento cannot save the customer, Unknown column 'ca.sort_order'
http://www.keenlio.com/magento-upgrade-cannot-save-the-customer-unknown-column-ca-sort_order
Magento upgrade cannot save the customer, Unknown column ‘ca.sort order’. First find out what cause the error. 8220;CANNOT SAVE THE CUSTOMER” is plain text message mask by magento to avoid it display raw message to system user. By find out raw, you are able to debug the error. In ubuntu, you can do like below:. Then, add $e- getMessage() to this line:. Now, try create a customer account again, you will see raw error message like below:. Http:/ yoursite.com/magento-db-repair-tool-1.2.php. Hope this help s...
keenlio.com
JSON Archives
http://www.keenlio.com/category/programming/json
Javascript, jQuery convert PHP string to number. May 9, 2014. Working with PHP data inside javascript. Echo or passing a php number in javascript may turn it to be string instead of integer. example:. PHP get latitude and longitude using google maps API. April 15, 2014. Jquery get the parent element’s id. February 17, 2014. You could use event delegation on the parent div. Or use the closest method to find the parent of the button. The easiest of the two is probably the closest. December 16, 2013. Mia on...
keenlio.com
Ubuntu un-tar/extract tar ball/file to another directory
http://www.keenlio.com/ubuntu-un-tarextract-tar-ballfile-to-another-directory
Ubuntu un-tar/extract tar ball/file to another directory. To extract an archive to a directory different from the current, use the -C, or –directory, tar option, as in:. Tar -xf archive.tar -C /target/directory. By Keenlio, January 4, 2015. What do you think? Click here to cancel reply. Leave a Reply Cancel reply. Your email address will not be published. Required fields are marked *. Give an anwser *. 115;even − 1 =. You may use these. Pip Install error: invalid command ‘bdist wheel’ Mac Os.
keenlio.com
css Archives
http://www.keenlio.com/category/css-style/css
Bootstrap responsive Youtube Youku video embed. July 14, 2014. The bootstrap is not a magic tool, its just a layout engine. Just use the grid provided by bootstrap and remove strict width on the iframe. Use the bootstrap class guides replace the width. For better view of the video, may keep the height. Youtube: Youku example:. Jquery change css background image. May 20, 2014. CSS rounded corner for border, div or button. April 15, 2014. Remove CSS attribute with jQuery. April 14, 2014. April 14, 2014.
keenlio.com
jQuery | www.keenlio.com
http://www.keenlio.com/category/programming/javascript/jquery
JQuery().datepicker is not a function. October 7, 2014. The are several reasons for this error: 1.The jquery.ui is used before jquery. 2.The $ is used by another library. 3.The jquery lib that is referenced locally(wordpress) has different version from that using jquery.ui. 4.When the right library and version is referenced the browser cache must be cleared. JQuery get which radio is selected. August 22, 2014. JQuery handle null value in PHP variable or array. August 6, 2014. August 6, 2014. July 25, 2014.
keenlio.com
Style - CSS Bootstrap | www.keenlio.com
http://www.keenlio.com/category/css-style
Bootstrap responsive Youtube Youku video embed. July 14, 2014. The bootstrap is not a magic tool, its just a layout engine. Just use the grid provided by bootstrap and remove strict width on the iframe. Use the bootstrap class guides replace the width. For better view of the video, may keep the height. Youtube: Youku example:. Jquery change css background image. May 20, 2014. CSS rounded corner for border, div or button. April 15, 2014. Remove CSS attribute with jQuery. April 14, 2014. April 14, 2014.
keenlio.com
Server - Ubuntu - GIT
http://www.keenlio.com/category/server
Ubuntu un-tar/extract tar ball/file to another directory. January 4, 2015. To extract an archive to a directory different from the current, use the -C, or –directory, tar option, as in: tar -xf archive.tar -C /target/directory. Linux Ubuntu move file from one directory to another directory command. November 26, 2014. Ubuntu user management command line. November 14, 2014. SSL certificate problem, verify that the CA cert is OK Windows AWS. October 23, 2014. It’s a pretty common problem in Windows, c...
keenlio.com
Javascript | www.keenlio.com
http://www.keenlio.com/category/programming/javascript
PHP get first day of current month, datepicker friendly. December 22, 2014. The simplest and readable way to do it is using this clean solution. All you need is a string represent the date. First day of the month: Last day of the month:. Javascript toggle show/hide div or anything. October 14, 2014. You would manipulate the elements by toggling between styling rather than changing the elements based on the innerHTML. In this case, you would toggle between display:none and display:block. Example:. This al...
keenlio.com
HTML Archives
http://www.keenlio.com/category/html
JQuery get which radio is selected. August 22, 2014. Use the :checked selector along with the radio selector. With form id, can do this Without form is, it will still work:. JQuery add attribute to html element and remove. July 25, 2014. You can add attributes using attr like below: To remove: However, for DOM properties like checked, disabled and readonly, the proper way to do this (as of JQuery 1.6) is to use prop. To remove:. JQuery get id of last div inside a div. April 8, 2014. March 28, 2014. Mia o...