walkeprashant

/walkeprashant

About walkeprashant

This author has not yet filled in any details.
So far walkeprashant has created 81 blog entries.

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

Send emails from localhost(WAMP Server)

If you are developing php project on localhost and you are using mail function on your project that time you may face problem with send mail function. so in this tutorial we are explain how to configure sendmail. Follow the step below for configure sendmail: Step 1: Download sendmail Download sendmail and extract all the [...]

By |August 2nd, 2014|Blog, PHP|1 Comment

Filenames with spaces are break the download in Mozilla Firefox

When downloading certain files, you may find that the filename is truncated up to the first space. Thus, a link to download the file "My music.mp3" produces a save dialog containing "My" as the filename. This is a case of the website incorrectly sending the filename, and the browser coping as best it can. if [...]

By |August 1st, 2014|Blog, PHP|1 Comment