forum.smarttutorials.net
Warning : call_user_func_array() expects parameter 1 to be a valid callback, function 'muni' not found or invalid function name
http://forum.smarttutorials.net/2015/01/warning-calluserfuncarray-expects_8.html
Warning : call user func array() expects parameter 1 to be a valid callback, function 'muni' not found or invalid function name. This following error will occur in wordpress theme, When you added function name in wordpress action hook or filter hook, but you forget to define that function in your functions.php file. Then it will throughs the following error. Warning : call user func array() expects parameter 1 to be a valid callback, function 'muni' not found or invalid function name. Muni, Web Developer.
forum.smarttutorials.net
jQuery validation plugin not validating the fields onblur and onkeyup
http://forum.smarttutorials.net/2015/01/jquery-validation-plugin-not-validating.html
JQuery validation plugin not validating the fields onblur and onkeyup. If you want trigger jQuery validation onkeyup and onfocusout event, you must add following two jQuery validation methods to your validation script. Onkeyup: function(element) { $(element).valid(); }, onfocusout: function(element) { $(element).valid(); },. See the jQuery validation demo script. If above script not trigger jQuery validation onkeyup and onfocusout event. Trigger validation this way. Muni, Web Developer.
forum.smarttutorials.net
Too Much Recursion jQuery Validation
http://forum.smarttutorials.net/2014/12/too-much-recursion-jquery-validation.html
Too Much Recursion jQuery Validation. When you validate your HTML form using jQuery validation plugin, while submitting your form browser throughs Error : Too Much Recursion. It creates following two problems. 1 Creates the form submission delay. 2 And makes the browser to hang while submitting the html form. SubmitHandler : function(form) { $('#password btn').attr('disabled','disabled'); form.submit(); }. Please refer some of the validation i had done in the following tutorial. Muni, Web Developer.
forum.smarttutorials.net
Session not active, could not store state Facebook SDK
http://forum.smarttutorials.net/2015/01/session-not-active-could-not-store.html
Session not active, could not store state Facebook SDK. It was session start problem, so you must start your session properly at the start of the page like this. You may also refer following tutorial facebook oAuth login using php. Facebook OAuth 2 Login Using PHP. If (session status() = PHP SESSION NONE) { session start(); }. If you are using CakePHP use session start() at the start of the controller function . Muni, Web Developer. Like Me On Facebook. HTML TO XML ADSENSE PARSER ONLINE FOR BLOGGER.
forum.smarttutorials.net
acceptFileTypes validation For jQuery upload Plugin
http://forum.smarttutorials.net/2014/12/acceptFileTypes-validation-jQuery-upload-Plugin.html
AcceptFileTypes validation For jQuery upload Plugin. This tutorial will help you validate acceptFileTypes if you are using blueimp jQuery File Upload plugin to upload your files. Please refer this validation in the following in live. Drag and Drop File Upload jQuery PHP Ajax HTML5 MySQL and Bootstrap. Upload Image Extension Validation in jQuery. Use this below script to validate acceptFileTypes of image that is jpg,jpeg, png,bmp and etc. G png)$/i, acceptFileTypes: /( . /)(mp3)$/i, });.
forum.smarttutorials.net
Fatal error: Uncaught exception 'Google_AuthException' with message 'Error fetching OAuth2 access token, message: 'invalid_client''
http://forum.smarttutorials.net/2014/11/fatal-error-uncaught-exception.html
Fatal error: Uncaught exception 'Google AuthException' with message 'Error fetching OAuth2 access token, message: 'invalid client'. It's because your Oauth client secret doesn't match with Client secret you created. So please recheck your client your are provided in your script. It may be space added at start or end, please remove those spaces. it will work. Please refer following tutorial on sign in with google php. It has step by step instructions on how to integrate Google Oauth 2 login using php.
forum.smarttutorials.net
The requested PHP extension ext-intl * is missing from your system CakePHP 3
http://forum.smarttutorials.net/2015/06/PHPextension-ext-intl-is-missing--CakePHP-3.html
The requested PHP extension ext-intl * is missing from your system CakePHP 3. The requested PHP extension ext-intl * is missing from your system is shown because ext-intl. Abled in your php.ini file. Extension follow the instructions below. You need enable extension by uncommenting the following line extension=php intl.dll. In the php.ini file. Once you uncomment the extension=php intl.dll, then you must restart apache server using XAMPP control panel. Next follow this tutorial to install CakePHP 3.
thecodeplayer.com
Matrix rain animation using HTML5 canvas and javascript
http://thecodeplayer.com/walkthrough/matrix-rain-animation-html5-canvas-javascript
Matrix rain animation using HTML5 canvas and javascript. This tutorial is inspired by this cool demo. The code is simplified and recorded as a walkthrough covering basic concepts like drawing and animating text on canvas. Uses a different character set(Japanese Engish Numbers) taken from the original matrix animation. Make gauge charts using Canvas and Javascript. Cool Ascii Animation using an Image Sprite, Canvas, and Javascript. Create Binary Trees using Javascript and HTML5 Canvas. Very, very sexy.
thecodeplayer.com
Making iOS 7 squircles using CSS3
http://thecodeplayer.com/walkthrough/css3-squircles
Making iOS 7 squircles using CSS3. Rounded Corners v/s Squircles. Hover Effect - Pinch. Hover Effect - Morphing Into Circles. If you have noticed iOS 7 app icons, they are not normal squares with rounded corners. They are squircles which have properties of both a circle and a square. This demo is an attempt to achieve a similar effect using CSS3. Pseudo elements are used to create 2 fish eye shapes which are later clipped to make the sides of the suqare a bit curved. Make a simple cloud in CSS3. Pure CSS...
SOCIAL ENGAGEMENT