301 redirect using htaccess

301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It’s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it’s the safest option. The code “301” is interpreted as “moved permanently”. […]

Working with Rest API in WordPress

Start with installing a plugin WordPress REST APIĀ on your wordpress site Second, install Chrome Plugin called “POSTMAN” on your PC To access the JSon Open Postman with GET type : http://your-site-name/wp-json/wp/v2/ To view all posts GET http://your-site-name/wp-json/wp/v2/posts/ To view specific posts/pages, use its id GET http://your-site-name/wp-json/wp/v2/posts/<post id> GET http://your-site-name/wp-json/wp/v2/pages/<page id> Example : GET http://your-site-name/wp-json/wp/v2/posts/30 GET […]

How to create RSS feeds in Joomla 3.x

To create rss feed for you Joomla 3.x site, you dont need to install any 3rd party extension or plugin. Simple add ?format=feed&type=rss at the end of your blog page url for example your joomla site url is http://myjoomla3xsite.ext/blog.html then the RSS feed will read as http://myjoomla3xsite.ext/blog.html?format=feed&type=rss If under Global Configuration > Site > SEO […]

not a valid image while uploading pdf file using media manager

Sometimes Joomla will not allow me to upload the pdf file, saying it is “not a valid image”, and then other times I can upload the file but it only appears as a pdf icon. Solution to this issue is : DO put “.pdf”, “” in allowed extensions. DON’T put pdf into allowed images, DON’T […]