expr:class='"loading" + data:blog.mobileClass'>

Thursday, April 16, 2020

How to Delete Unused Wordpress Themes Installed on Your Website or Blog ? & Why should It Need ?

How to Delete Installed WordPress Themes

Now that you know the importance of not having too many themes on your blog, let's get to the instructions on how to delete the unused ones.
1. Log into your WordPress Dashboard.
2. Go to Appearances, and you'll find Themes.
3. Clicking on Themes will bring up all the themes you have installed on your blog. Find the theme that you want to uninstall or delete.
4. Hover your mouse over the theme and you'll see Theme Details appear in the center of the installed theme. Click Theme Details.
5. This will display information about the theme. In the bottom corner, in red, you'll find Delete. Click Delete.
6. Confirm if you really want to delete the theme. Once you do so, the theme will be permanently deleted from your WordPress site.
How to Delete Unused Wordpress Themes Installed on Your Website or Blog

Note:- 
1. Keep the theme you are currently using and always have a backup theme.
2. Always keep the newest WordPress theme around to assist with any troubleshooting.
3. Always have a backup of your content when changing themes.

Why should It Need ?

It’s easy to amass unused themes in your WordPress install. Each year WordPress releases a new theme, and you get it automatically when you update WordPress. Additionally, there are the themes you used to use, the themes you tried but abandoned, and so on. So, you may ask, what’s the harm?

There are a couple of reasons why you don’t want to keep unused themes around, cluttering up your WordPress install.

1) Themes are subject to vulnerabilities. If the theme developer is NOT issuing updates, your site is vulnerable. If the theme developer is providing security updates, then you have to keep the theme updated to be safe. Updating unused themes is a waste of keystrokes, so I like to remove them instead.

2) Themes take disk space (which may or may not be an issue) but just by being there, they will slow down your backup routine and INCREASE the size of your backup file. Not good.

So, now you have two good reasons to delete unused themes. But here’s why I never delete ALL my unused themes, and always keep the newest WordPress-developed theme around, even if I’m not using it: troubleshooting.
One way to troubleshooting pesky WordPress problems is to switch themes, and see if the problem goes away. If you don’t have an extra unused theme all ready installed, you now have to install one. Depending on the problem you are having, installing a new theme may be difficult. (FYI, another troubleshooting tip is to deactivate all your plugins. But I digress.)
So, now you know why to delete all but one extra theme. Deleting them is easy. Here’s how.
Go to Appearance / Themes and click on the theme thumbnail. When the Theme Details popover appears, look in the lower-right hand corner for Delete (it’s in red).
IMPORTANT NOTES: If your active theme is a child theme that requires a parent theme, the parent theme will NOT display a Delete button. Also, your active theme will never display a Delete button. Just like plugins, in order to delete a theme, it must be inactive.

What Is The Difference Between Tags And Keywords? | WhatBuddy

Keywords are actually a part of the content and are used to identify what the content is all about. On the other hand, tags are just placed by the creator of the content to describe what the content is and what it relates to. It may appear on the same page as the content, but it is not a part of it.
Keywords are everywhere.,while Tags are seen mostly in blogs or sites that organize their contents as distinct pages or articles.
1. Keywords are actually part of the content but not tags
2. Keywords are seen in all web content while tags are seen mostly in blogs
3. Tags are used for organizing similar content in a site while keywords are not

What Are Keywords?
Keywords are used by search engines to identify what your blog and your blog articles are about. A search engine knows what terms are highly searched by users, and looks for those words and phrases on web pages. The search engine uses this information (in addition to other, more complicated algorithms) to assign a particular blog or website a page rank. This is where “search engine optimization” comes in. If you optimize an article on your blog with a particular keyword, the search engine will be able to pick up it and will hopefully assign your article a decent page rank for that particular keyword.

What Are Tags?
Tags are self-assigned “labels” that you can use to categorise the posts on your blog. For example, if your blog’s niche is puppies, you might have a tag for “puppy diet” and another tag for “puppy exercise.” For all posts about puppy food, treats and snacks, you would assign the “puppy diet” tag. For all posts about puppy exercise and playing, you would assign the “puppy exercise” tag.

Monday, April 6, 2020

How to fix maximum upload and php memory limit issues in WordPress ? #WhatBuddy

This error usually occurs when you are trying to upload a WordPress theme or a plugin to your website from the WordPress admin area.
The link you followed has expired error displayed on a WordPress website
WordPress hosting companies have a setting which controls the size of files you can upload from inside the WordPress admin area. They also have a setting which stops scripts from running too long.
You can see the file size upload limit by visiting Media » Add New page.
WordPress file upload limit
These restrictions make your website safer and improves the overall performance of your WordPress hosting server.
If these settings are too low, or you are trying to upload a larger file, then you would see errors like memory exhausted error or maximum execution time exceeded error.
However, if you are trying to upload a WordPress theme or plugin, then you would see ‘The link you followed has expired’ error.
That being said, let’s take a look at how to easily fix this problem.

Fixing ‘The Link You Have Followed Has Expired’ Error

The quickest way to fix ‘The link you followed has expired’ error is by increasing the file upload size, PHP memory, and execution time limits for your website.
There are multiple ways to do that. We will show you all of them, and you can choose the one that looks easier or the one that works on your hosting environment.
Method 1. Increasing limits in functions.php file
This method is easier, but it has a downside. Your site will return back to the old limits if you change WordPress theme. If you are planning on changing your theme, then try one of the other two methods described below.
Simply add the following code to your WordPress theme’s functions.php file.
1
2
3
@ini_set( 'upload_max_size' , '120M' );
@ini_set( 'post_max_size', '120M');
@ini_set( 'max_execution_time', '300' );
You can increase the values in upload_max_size and post_max_size to be more than the file you are trying to upload.
You will also need to increase the max_execution_time to the time you think it would take for the file to upload. If you are unsure, then you can try doubling this value.
Method 2. Fix by increasing limits in .htaccess file
If you don’t want to add code to your theme’s functions file, then you can try the .htaccess method.
For this method, you will need to edit the .htaccess file by using an FTP client or the File Manager app in cPanel.
Simply connect to your website using FTP and edit the .htaccess file.
Editing the .htaccess file using FTP
Now, you need to add the following code at the bottom of your .htaccess file.
1
2
3
4
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_time 300
Don’t forget to save your changes and upload the file back to your website.
Method 3. Fix by increasing limits in php.ini file
The php.ini file is a configuration file used by PHP and WordPress. You’ need to connect to your WordPress site using an FTP client and look for php.ini file in your site’s root folder.
Most users are on a shared hosting account, so they may not find it in their site’s root folder. In that case, you need to create a blank php.ini file using a plain text editor like Notepad and upload it to your website.
Now edit the php.ini file and add the following code inside it.
1
2
3
upload_max_filesize = 128M
post_max_size = 128M
max_execution_time = 300
Don’t forget to save your changes and upload the file back to your website.
You can now visit your website and try to upload the theme or plugin file. The error would disappear, and you should be able to upload the file.
If it doesn’t, then try to increase file limits to match the file size you are trying to upload.


Sunday, April 5, 2020

What is the Difference Between D. Pharm, B. Pharm, M. Pharm and Pharm.D? #WhatBuddy

What is the Difference Between D. Pharm, B. Pharm, M. Pharm and Pharm.D? #WhatBuddy

Qualifications required for each program:
D. Pharm: Minimum 10th std.
B.pharm: D.pharm or 12 th std with required Entrance exam score.
M. Pharm: B.pharm with entrance exam score.

Duration of each program:
D. Pharm : 2 years
B. Pharm : 4 years
M. Pharm : minimum 2 years. Can be extended depending on thesis and research work. I have friends who even required 4 years to complete M. Pharm!

Future prospects for each program:
D. Pharm: can obtain license for medical shop. Job in industry.
B. Pharm: can obtain license for medical shop. Job in industry. Slightly better positions than D. Pharm.
M. Pharm: industrial positions as scientist with better pay than above. (And of course, can also obtain license for medical store).

D-Pharma is the Diploma of Pharmacy.It’s a 2 years course. The minimum qualification required is 10 +2 from science stream. After this you can go for a Bachelor’ s degree. You will get a lateral entry in 2nd year of B-Pharma course. But it will take you 5 years to do a Bachelor degree as compared to B-Pharma. In this you will also get a Pharmacy Shop License.
Note:- D.Pharm {Duration 2 year} ==Diploma in Pharmacy (Good For Medical Shop,Business)
B-Pharma is the Bachelor of Pharmacy. It is a 4 years course. The minimum qualification required is 10+2 from science stream. This will also lead you to get a Pharmacy Shop License.
Note:- B.Pharma {duration 4 year ,3 years after D.Pharma }== Bachelor of Pharmacy (Good for Job ,Production , Business, Marketing , Now in IT companies)
Note:- M.Pharma{2 year after B.Pharma} = = Master of Pharmacy (Good for Job in Pharma Industry, Academics ,Now in IT companies )
Pharm D is the Doctor of Pharmacy. The Pharm.D program is a pre-PhD, post-graduate professional doctoral program of 6 years. It is introduced by the Government of India and the Pharmacy Council of India in 2008. Pharm.D is a post graduate degree and passed out students can directly register for Ph.D. The minimum qualification required is 10+2 from a science stream.
Note:- Pharm.D.{6 year after 12th} = = Doctorate of Pharmacy (Just Lunched in north India ,Having Limited Scope in North Region but Good for Future).
Conclusion:-
The difference between Diploma in Pharmacy (D.Pharm), Bachelors in Pharmacy (B.Pharm) and Doctor in Pharmacy (Pharm.D) are -
  1. Course Duration - Diploma in Pharmacy is a two year course. Bachelors in Pharmacy is a three year course and Doctor in Pharmacy is a six year course.
  2. Scope & Opportunities - You can open up your drug store and practice pharmacy once you complete Diploma in Pharmacy. If you wish to work in the pharmaceutical industries such as Sun Pharmaceutical, Lupin Ltd, Dr. Reddy’s Laboratories etc then a Bachelors degree in Pharmacy is must. Doctor in Pharmacy program is a pre-PhD which involves five years of clinical and community-based theoretical study, with ward rounds and a one-year internship in hospitals. This course involves clinical orientation.
  3. Admissions - For Diploma, admission to universities happens through Interview/ Entrance Test conducted by the respective universities. For Bachelors, admissions to universities happen through entrance exams such as All India Pre-Medical Test (AIPMT), All India Manipal University Online Entrance Test (MU-OET), Panjab University Common Entrance Test (P.U. CET) etc. For Doctor in Pharmacy, admission to universities happens through the norms of Pharmacy Council of India (PCI).
  4. Top Colleges - For Diploma, some of the top institutes are Jamia Hamdard University (Delhi), Delhi Institute of Pharmaceutical Sciences & Research (Delhi) etc. For Bachelors, some of the top institutes are University Institute of Pharmaceutical Sciences (Chandigarh), Bombay College of Pharmacy (Mumbai) etc. For Doctor in Pharmacy, some of the top institutes are VELS University (Chennai), Jagadguru Sri Shivarathreeshwara University (Mysore, Karnataka) etc.