Bypass Cloudflare 403 Web Scrapping Error
Getting 403 error scrapping sites behind CloudFlare, here is a simple Curl method that worksYou need Free RapidApi.com Subscription and A Free Scrapeninja API access
Getting 403 error scrapping sites behind CloudFlare, here is a simple Curl method that worksYou need Free RapidApi.com Subscription and A Free Scrapeninja API access
To tighten security of your WordPress blog/website, you should prevent direct access to wp-config.php file. You can prevent this with htaccess. Adding this simple code to your .htaccess file will prevent unauthorized access to your wp-config.php file. # Disable direct access to wp-config.php <files wp-config.php> order allow,deny deny from all </files>
Almost all web sites provide links to other sites, but it’s generally good practice to open these “external” links in a new window or tab. This makes it clear that the content is not part of your site, and also leaves your site open in the browser so the user can easily return. To make…
If you upload images via the WordPress media uploader and insert it into your post, it will automatically include the image width and height attribute in the html <img> tag. These are normally desirable, as it assists the browser in making the appropriate room for the image during layout. But for some reason if you…
A website can be accessed with http://www.domain.com and http://domain.com. If you visit any of these URLs, you will be sent to the same page but they will have different URLs. The main problem is that Google and other search engines consider it as duplicate content and therefore penalize this domain in the search engine ranking….
Browser caching can help to reduce server load by reducing the number of requests per page. By setting the correct file headers on static files that don’t change (like Images, CSS, JavaScript etc) browsers will then cache these files on the user’s computer. This technique allows the browser to check to see if files have…
By default WordPress adds generator meta tag in website head section. The WordPress generator meta tag displays your website’s WordPress version for anyone to see. It can be considered a security risk to make your WordPress version visible and public. Because you are providing the hacker with the useful information by telling them which version…
If you’re using a lot of custom post types then there are very good chance that your search results are displaying some content that you don’t want to display. Even sometimes you don’t want to include pages in search results too. So here is a simple solution to your problem. Adding this WordPress code snippet…
By default WordPress does not allow excerpt to pages and it’s probably for good reason because normally you will never use it for pages. That’s why WordPress provides no option to add excerpts to pages through the WordPress admin panel but it’s fairly very easy to enable excerpt for pages too, similarly like posts. To…
WordPress have a secret options section that contains all core WordPress settings on one single page. Here’s a quick code snippet to display an “All Options” page to view otherwise hidden data. Just add that code to your theme’s functions.php file and then visit the settings menu in the WordPress admin panel. There you’ll see…