walkeprashant

/walkeprashant

About walkeprashant

Prashant Walke, with over 10 years of experience as a web developer, currently holds the position of Technical Lead at Parkar Digital. He brings a wealth of expertise in sophisticated website development, showcasing proficiency in PHP, Python, NodeJS, Angular, VueJs, MySQL, PostgreSQL, WordPress, and Laravel.

Cloud Computing (Salesforce) and Salesforce Integration with PHP

Cloud computing is Internet-based computing, whereby shared resources, software, and information are provided to computers and other devices on demand, like the electricity grid. Cloud computing is the use of computing resources (hardware and software) that are delivered as a service over a network (typically the Internet). As a metaphor for the Internet, "the cloud" [...]

By |September 24th, 2015|Blog, PHP|0 Comments

Best WordPress Plugin for Improving Your Customer Service

I have search many support plugin for WPSeeds support and finally  found most popular WP Support Plus plugin. The plugin works great, installation and configuration are very simple, and customization is a breeze. It seems like a very nice and clean plug-in so far. It is great for someone who needs something quickly and make it up. [...]

By |September 15th, 2015|Blog, WordPress|0 Comments

Secure your WordPress Plugin : CSRF protection

I fixed this vulnerability in my WordPress 'WP Database Backup' plugins and would like to share the same knowledge to other developers. Lest you think this security stuff isn't important, a major vulnerability was recently found in the WordPress plugins, which is installed on many WordPress sites and which allowed hackers to manipulate the WordPress database using [...]

By |August 21st, 2015|Blog, PHP, WordPress|0 Comments

Cross-browser compatible

Cross-browser compatible Compatible with all major browsers available During the creation of a website — especially if your aim to make its structure responsive — one of the most important and frequent problems that a web designer has to face involves cross-browser compatibility, that is, compatibility across different browsers. Web developers must test and adapt their sites to [...]

By |July 17th, 2015|Blog|0 Comments

force a web browser NOT to cache images

Problem The problem happens when the administrator wants to change the picture. He would just have to hit the “browse” button, pick a new picture and press ok. And this works fine. Once the image is uploaded, back-end  handles the upload and reloads the form properly. The problem is that the image shown does not [...]

By |June 17th, 2015|General|0 Comments

Creating Great URLs

Creating URLs for your site is more important for increase SEO. You need to select proper URL for pages. Good SEO practices for URLs is to keep them under 100 characters long, to use dashes instead of underscores and to avoid special characters. Bad URL: http://walkeprashant.wordpress.com/php_que=asdasdasda133213ASADSSAD This URL doesn’t have any significance to your user. [...]

By |March 18th, 2015|Blog|0 Comments

Cron job fail to include files

If you select php as the command language for your cron job, relative paths may not work. This is because some PHP scripts expect to be run from the directory where they are stored, and due to the nature of our Sites platform they will be run from another location. This means including or requiring [...]

By |February 4th, 2015|Blog, PHP|0 Comments

Disable WordPress Admin Bar

 Disable WordPress Admin Bar for All Users Except Admin if you want Disable WordPress Admin Bar for All Users Except Admin then Paste following code in your theme’s functions.php file add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } } Disable Admin Bar for All Users If you want to disable Admin Bar for [...]

By |November 25th, 2014|Blog, PHP, WordPress|0 Comments

Why WordPress is popular blogging system?

About WordPress WordPress started in 2003 It was first released on May 27, 2003, by its founders, Matt Mullenweg and Mike Little WordPress is an Open Source project WordPress was used by more than 22.0% of  the top 10 million websites as of August 2013 WordPress is the most popular blogging system in use on the Web, at more than 60 [...]

By |November 10th, 2014|Blog, WordPress|0 Comments

Backing up your WordPress database

Your database contains all your important information if the database is erased or corrupted you lose everything. Sometimes accident can happen when we least expert it. If you can have made a careless mistake and your database is gone how can you restore your data in your database? So Backup your database regularly. The WordPress [...]

By |October 28th, 2014|Blog, PHP, WordPress|0 Comments