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.

Does favicon 404 affect performance?

Yes, missing favicons do affect performance. As you probably already know, adding a favorite icon to your website is a great way to add subtle branding to your website. It's an easy, one-time update to your website that you never need to think about once it's done. Lets say you don't care about the favicon [...]

By |February 26th, 2014|Blog, WordPress|0 Comments

Load Scripts if Post has Short Code

function check_for_shortcode($posts) { if ( empty($posts) ) return $posts; // false because we have to search through the posts first $found = false; // search through each post foreach ($posts as $post) { // check the post content for the short code if ( stripos($post->post_content, 'YOUR_SHORTCODE') ) // we have found a post with the [...]

By |February 25th, 2014|Blog, WordPress|6 Comments

How to Improve SEO Rankings

SEO- Search Engine Optimization, is the process of improving the ranking of a website on Internet search engines. Google's search engine, www.google.com, uses a variety of methods to determine which pages are displayed first in the results. Their exact formula is a secret, but there are a few things you can do to improve your [...]

By |February 24th, 2014|Blog, WordPress|888 Comments

Responsive Web Design

Each web browser has a different viewport. A viewport is the visible part of the web canvas within a browser. For comfortable viewing, a website’s layout must fit perfectly in the browser’s viewport. Otherwise the site looks broken and inconsistent. To have the site layout and content fit perfectly within the dimensions of the web [...]

By |February 21st, 2014|Blog, WordPress|2 Comments

How to Save Images Optimized for Web

Are you saving images wrong? Most beginners don’t know how to save images properly which can have a huge impact on website speed. In this article, we will show you how to properly save images optimized for web. Every blogging expert will tell you that images help increase engagement. However what they don’t tell you [...]

By |February 19th, 2014|Blog, WordPress|1 Comment

Improve WordPress Website Speed

Speed is of essence, especially when it concerns a website. If your page download speed is slow, you are bound to lose customers. The worst part is that you will never know about these lost opportunities. Fortunately there are many ways in which you can optimize your WordPress website speed. Here are some tips to [...]

By |February 19th, 2014|Blog, WordPress|2 Comments

Solving WordPress Database Error [MySQL Server has gone away] in WordPress

If you’re regularly receiving the ‘MySQL server has gone away’ database error in your WordPress  based blog,The error usually occurs at high CPU usage because of MySQL server closing the connection before the full request was made. The error can be rectified by increasing the timeout of the MySQL connection. Here’s how to do it:Editing the [...]

By |February 6th, 2014|Blog, WordPress|0 Comments

The best way to edit your default language is through the wp-config.php file on the root directory. This case should be for Spanish of Spain define ('WPLANG', 'es_ES'); This one to the USA English define ('WPLANG', 'en_US'); You have all the possible combinations at this page: http://xml.coverpages.org/iso639a.html

By |January 27th, 2014|Blog, WordPress|0 Comments

Curl: Location redirect while open_basedir is set

f you need to follow redirects within your php code using Curl and the open_basedir is set you came into some trouble. If you disable this directive all your directories with a 777 permission are not safe (if one or more website on the same server has some security issues). If you don’t have additional [...]

By |January 21st, 2014|Blog, PHP|1 Comment

Can not access phpmyadmin after installing Lampp

Problem:Can not access phpmyadmin after installing Lampp:`New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file "httpd-xampp.conf". If you think this is a server error, please contact the webmaster. Error 403 xser.com Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7`Solution-You need to add this line("Require [...]

By |January 14th, 2014|Blog, WordPress|0 Comments