News:

Please post your question in the right forum. We will answer it as soon as possible.

Main Menu

Recent posts

#1
WordPress / How to Add Page Rules to Stop ...
Last post by DJ RONY - September 01, 2023, 05:39:15 PM
Login to your Cloudflare account then go to the domain settings >> Rules >>Page Rules

This page rule is only for a bot or someone who's trying to access the wp-login.php file and not the rest of your site.

  • URL Matches: *yourdomain.com/wp-login.php*
  • First Setting: Browser Integrity Check – On
  • Second Setting: Security level – I'm under attack.


You can also add same rules for 2 other pages "wp-admin.php" and "xmlrpc.php" vulnerable to attack


  • URL Matches: *yourdomain.com/wp-admin.php*
  • First Setting: Browser Integrity Check – On
  • Second Setting: Security level – I'm under attack.


  • URL Matches: *yourdomain.com/xmlrpc.php*
  • First Setting: Browser Integrity Check – On
  • Second Setting: Security level – I'm under attack.

#2
Web Hosting / How to manually upgrade MySQL...
Last post by DJ RONY - August 17, 2023, 01:06:59 AM
First Backup all your data and go to SSH. Preferably make a snapshot of the droplet if you are on Digital Ocean.

In SSH do the following one by one and read the instruction when it said what you want to do?

 systemctl stop mariadb
sudo apt-get update
sudo wget https://downloads.mariadb.com/MariaDB/mariadb_repo_setup
sudo chmod +x mariadb_repo_setup
sudo ./mariadb_repo_setup
sudo apt-get upgrade mariadb-server
sudo apt-get update
#3
Web Hosting / How to uninstall ImunifyAV fro...
Last post by DJ RONY - August 17, 2023, 12:35:14 AM
Run this in your SSH terminal
$ wget https://repo.imunify360.cloudlinux.com/defence360/imav-deploy.sh
$ sh imav-deploy.sh --uninstall
$ apt remove --purge imunify*
$ service imunify-antivirus stop
#4
Web Hosting / How to move sites from one Dro...
Last post by DJ RONY - June 29, 2023, 01:25:04 PM
It you are using digital ocean service then you can relate to this.

To move sites from one droplet to others this is the easiest way.

01. Make a snapshot of the current droplet
02. Create a new droplet from the snapshot.
03. Update your DNS IP in the domain panel or cloudflare if you use cloudflare.

The new droplet will have new IP. So pointing the domain to the new droplet is necessary.

04. You can delete the snapshot after everything is working fine.
#5
Web Hosting / Cyberpanel ImunifyAV Blank Pag...
Last post by DJ RONY - June 14, 2023, 09:38:29 AM
If you are using ImunifyAv in Cyberpanel, and after the last update facing the blank page issue. Please open your terminal window and execute the following code.



cd /usr/local/CyberCP/public/imunify
OR
cd /usr/local/CyberCP/public/imunifyav

Then
cp -rf assets bin classes /usr/local/CyberCP/public
Then

chmod +x /usr/local/CyberCP/public/bin/execute.py
#6
WordPress / Re: How to use other shortcode...
Last post by DJ RONY - June 12, 2023, 07:36:44 PM
This is quite helpful when you want to make CF7 form fields in two or more column.

You can then use the shortcodes of the theme or plugin inside the CF7 form builder.
#7
WordPress / Contact form 7 cannot send mes...
Last post by DJ RONY - February 11, 2023, 11:14:28 AM
I have faced this problem for several of my client's sites.

As I was looking for the problem. I saw the SMTP is working just fine. Hosting is not blocking the port.

One thing common was the CF7 integration with the Google Re-captcha V3. After removing the integration of Google Re-Captcha V3 from CF7 the forms started to work again.

Obviously this is not a solution just a turn around.

So, to stop spamming I have activated Akismet Plugin which is better than the Google Re-Captcha system.

Aksimet will stop the comment spam and to add the tag into your CF7 forms, please follow the guidelines in here: You are not allowed to view links. Register or Login
#8
Freelancing / These websites you will pay yo...
Last post by DJ RONY - November 07, 2022, 11:50:49 AM
We are listing websites that will help you to earn money from home. All  you need to do is register and test their products or watch vbideos.

01. You are not allowed to view links. Register or Login
02. You are not allowed to view links. Register or Login
03. You are not allowed to view links. Register or Login
04. You are not allowed to view links. Register or Login
#9
WordPress / How to Restrict Usernames in W...
Last post by DJ RONY - October 28, 2022, 12:13:28 PM
Add this code your theme's functions.php file.

*Remember to replace content of the "restricted array" with the usernames you want to restrict.

<?php
   
function wpsnippet_validate_username($valid$username) {
   
$restricted = array('profile''directory''domain''download''downloads''edit''editor''email''ecommerce''forum''forums''favorite''feedback''follow''files''gadget''gadgets''games''guest''group''groups''homepage''hosting''hostname''httpd''https''information''image''images''index''invite''intranet''indice''iphone''javascript''knowledgebase''lists','websites''webmaster''workshop''yourname''yourusername''yoursite''yourdomain');
   
$pages get_pages();
   foreach (
$pages as $page) {
      
$restricted[] = $page->post_name;
   }
   if(!
$valid || is_user_logged_in() && current_user_can('create_users') ) return $valid;
   
$username strtolower($username);
   if (
$valid && strpos$username' ' ) !== false$valid=false;
   if (
$valid && in_array$username$restricted )) $valid=false;
   if (
$valid && strlen($username) < 5$valid=false;
   return 
$valid;
   }
   
add_filter('validate_username''wpsnippet_validate_username'102);

   function 
wpsnippet_registration_errors($errors) {
      if ( isset( 
$errors->errors['invalid_username'] ) )
         
$errors->errors['invalid_username'][0] = __'ERROR: Invalid username.''wpsnippet' );
      return 
$errors;
   }
   
add_filter('registration_errors''wpsnippet_registration_errors');
?>
#10
Advertising Networks / content.ad is closed after a l...
Last post by DJ RONY - September 01, 2022, 01:59:50 PM
A few days back I got a notice from my You are not allowed to view links. Register or Login dashboard that they are now fighting a dispute with the court.

And today when I tried to enter the site, they are simply gone. The server is down.

It was a great pleasure to use their service. Although my earning wasn't significant from this native advertising network, but they helped me in some way.