News:

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

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - DJ RONY

#1
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
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
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
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
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
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
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
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
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
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.
#11
If you installed WordPress via the Cyber Panel or manually, but during the website creation process you selected the PHP version 8.1 instead of 7.4

Then install the PHP 8.1 first on your hosting.

Log into your droplet or hosting via terminal/command line (putty)

If you are on Ubuntu then

apt-get install lsphp81*

on Redhat flavours

yum install lsphp81*

This will solve your Database connectivity or installation issue.
#12
You can use a combined one liner command like this too:

$ mysql -u root -p 'MyPassword' -e "PURGE BINARY LOGS TO 'mysql-bin.03';"

OR

$ mysql -u root -p 'MyPassword' -e "PURGE BINARY LOGS BEFORE '2008-12-15 10:06:06';"
#13
As far I have seen there is no restriction in withdrawing in your personal wise account. In wise business account they gave a USD account that is in the name of your company. Unless you create a company in your same name, it won't be easy to add it in the Get Paid section.

You need to contact the support to add your business bank account details in your UpWork profile.
#14
Yes, definitely you can.

Open a Wise account.

Verify it to get USD account details.

In UpWork add the USD bank account details in Get Paid section. UpWork will veryfy it with 2 small amount deposit.

When approved you can withdraw the money for free in this account. It usually takes 1-2 business day to get into your wise account.

You will get 2% bonus if you withdraw from UpWork to BD bank account.
#15
It's easy. Just put the following code in your theme's/child theme's function.php.

add_filter( 'wpcf7_form_elements', 'blogron_wpcf7_form_elements' );

function blogron_wpcf7_form_elements( $form ) {
$form = do_shortcode( $form );

return $form;
}

Now any shortcode you enter in the CF7 edit screen will be shown in the front end.