This is one of my idea to use Cloudflare Web Application Firewall (WAF) and Cloudflare Turnstile (Captcha) to add some extra security layer to your default wordpress login page by stopping most automated login attempt (or brute force).
(more…)
Category: Website
Website
-
Add Extra Security Using Cloudflare to WordPress Login Page
-
PremiumPress – Coupon Theme Review
I purchased the VIP Club membership in PremiumPress, so i have access to all of their themes. Initially i was interested with their Auction Theme, which i need for my project. But i saw that their other themes looked good too, so i bought the bundle package.
Now i will review their coupon theme. As side note, i also have tried to install their auction theme.
Installing the theme is easy. But at the first time of the installation, you will be asked to import dummy data.I suggest you to import the dummy data so that your theme will be filled up with the default setting which is close to the theme live demo. I initially tried to not install the dummy data, and i was very confused because the theme has lot of panels, and setting pages 😀
(more…) -
Change WooCommerce Items Per Page
To change displayed WooCommerce Items Per Page, add this code to any PHP file (end of “woocommerce.php” / your theme functions.php, etc)
// Woo commerce 9 items per page add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 9;' ), 20 );
-
AioShared.com Stole My Script, AioShared Scammer
I have a domain appraisal script here
http://forums.digitalpoint.com/showthread.php?t=1776537I sold it to a person (fortunately there was only one buyer), next someone told me that Aioshared.com stole our script and resell it.
Plus, they ioncubed it.What a shame that someone scrap other’s script, encode, and resold it as “Website Value Calculator” script.
Here is my original demo
http://www.perfectbot.com/ (site is closed now, you can check on google cache)Even i’ve tried to create a thread on their forum that “The script is stolen”
http://www.forum.aioshared.com/website-value-calculator/
But guess what happened next? Yes, they deleted my thread.
Watchout for this “company”.
And it seems aioshared’s owner is on DigitalPoint too
http://forums.digitalpoint.com/member.php?u=298996 -
With or Without WWW
Folks, some of you have might have a website. For example you develop http://www.google.com (OF COURSE this is just an example :)). You might have a question, whether use http://google.com (w/o “www”), or http://www.google.com (w/ “www”). I don’t suggest that “www” is better, vice versa. But i’ll tell it about how to use with only, or without only.
The key is, you must create a .htaccess file in your root directory (or modify the old one if you’ve had it)
If you choose with www, use it in your .htaccess file
RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com$ [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]