Dev {Tricks}

  • Home
  • WordPress
  • OJS
  • Oxwall
  • Server and Hosting
You are here: Home / Archives for dev

September 1, 2019 by dev Leave a Comment

Testimonials | Feedback | Review

I am very pleased with all aspects of this transaction. Quality product, price and service, thank you for a pleasant and easy transaction.

I have received the product today. Thank you for your super service!

I have received my order. Thanks. It arrived in perfect condition as well I am very happy. Cheers

Thank you very much for your excellent service.I received my order and am pleased with the quality of the product.This is my first order but certainly not the last. Regards

Items received today. Very good service – quick delivery and very nice products.

Hi, Order already received. Thankyou very much for the prompt service. I’ll definately use your service again.

Thank you so much for your EXCELLENT service. I received my order within 24hrs. That is what I call great service! This is my first order from you but it is certainly not the last! Keep up the good work.

Very prompt delivery. Excellent communication. I look forward to dealing with you again in the future. Kind Regards

Thank you for your great service – very pleased. I will be very happy to deal with you again and recommend you to others. Kind Regards

The goods have been great, well packaged and as expected.

Order received safely today. Great service and great product. Will be ordering again from you very soon.

Excellent service, highly recommended. Thanks.

I am DELIGHTED with the goods and price I paid.

No problems at all very pleased with purchase.

Hi. Thank you for your great service. Goods received fast and safe. Very pleased. Will buy again.

Filed Under: Uncategorized

August 29, 2019 by dev Leave a Comment

WHMCS Domain Checker not Working

You can do one of the following ways and check.

  1. Change Template. In most case changing template fixes the WHMCS domain checker issue. Go to Setup > General Settings.
  2. Delete and redo TLD Price List. Delete all TLD price and re-do the process. Go to Setup > Products/Services > Domain Pricing.
  3. Reconfigure Domain Register Module. Configure again your Domain Register Module. Go to Setup > Products/Services > Domain Registers.

Hope one of these methods will solve the issue.

Filed Under: Server and Hosting, WHMCS

August 28, 2019 by dev Leave a Comment

Security Questions Sample

List of security Good questions

  • In what county were you born?
  • What was your childhood nickname?
  • What is your oldest cousin’s first name?
  • What is the name of your favorite childhood friend?
  • What is the name of your favorite childhood teacher?
  • What is your car’s license plate number?
  • What month and day is your anniversary? (e.g. January 2)”
  • To what city did you go on your honeymoon?
  • What was your first car?
  • When is your anniversary?
  • What is the nickname of your oldest child?
  • What is your birth month?
  • What was your dream job as a child?
  • Who was your childhood hero?
  • What was the first concert you attended?
  • What is your grandmother’s first name?
  • What is your mother’s nickname?
  • Where did you vacation last year?
  • What is your preferred musical genre?
  • What is your pet’s name?
  • What is the color of your eyes?
  • What is your favorite animal?
  • What is your favorite team?
  • What is your favorite movie?
  • What is your favorite sport?
  • What is your favorite color?
  • In what city were you born?

Filed Under: Miscellaneous, WHMCS Tagged With: best security questions, good security questions, list of security questions, security questions examples, security questions help

August 26, 2019 by dev Leave a Comment

How to install WHMCS theme

1) Download the template package and extract it to your PC.

2) Open the folder called “WHMCS PHP Files” and upload these files to your WHMCS directory.

3) Open the folder called “WHMCS Template”. You will see another folder within it – this folder needs to be uploaded to your WHMCS “templates” directory via FTP.

4) Login to your WHMCS Admin panel and navigate to: Setup > General Settings. Select the new template from the template drop down menu and save the change.

Filed Under: WHMCS

August 25, 2019 by dev Leave a Comment

How to add ReCaptcha to your form?

Before start you have to generate or collect recaptcha SITE_KEY and SECRET_KEY from admin console at https://www.google.com/recaptcha/

Three easy steps.

Step One

Add following scripts before </head> tag.

<!--Recaptcha script-->
<script src='https://www.google.com/recaptcha/api.js'></script>

<!-- Recaptcha field Required-->
<script>
window.onload = function() {
var recaptcha = document.forms["cvform"]["g-recaptcha-response"];
recaptcha.required = true;
recaptcha.oninvalid = function(e) {
// do something
alert("Please complete the captcha");
}
}
</script>

Step Two

Add following markup to the form where you want to show recaptcha.

<div class="g-recaptcha" data-sitekey="YOUR_RECAPCHA_SITE_KEY"> </div>

Step Three

Add following Recaptcha verification code snippet to the PHP script.

//reCAPTCHA validation
  if(isset($_POST['g-recaptcha-response']) && !empty($_POST['g-recaptcha-response']))
  {
        $secret = 'YOUR_RECAPTCHA_SECRET_KEY';
        $verifyResponse = file_get_contents('https://www.google.com/recaptcha/api/siteverify?secret='.$secret.'&response='.$_POST['g-recaptcha-response']);
        $responseData = json_decode($verifyResponse);

       if($responseData->success)
       {
           $succMsg = 'Your contact request have submitted successfully.';
       }
        else
       {
            $errMsg = 'Robot verification failed, please try again.';
       }
   }

 

Filed Under: Email Solutions, Recaptcha

  • « Previous Page
  • 1
  • …
  • 72
  • 73
  • 74
  • 75
  • 76
  • …
  • 92
  • Next Page »
  • Upwork
  • Freelancer
  • Fiverr
  • Guru

www.ojsexpert.com
www.ojsdev247.com

Recent Posts

  • What is JavaScript? | Learn JavaScript from Scratch | Introduction, History, Uses & Prerequisites | Day01
  • WordPress site with WooCommerce is down with Mod Security
  • To get your email for castamodel.com going to the right place, you need to update your DNS settings.
  • Security and WordPress
  • ROR
  • How do we copy google form to google workspace?
  • Install ImageMagick – Almalinux
  • How to remove /public/ from URL in Laravel
  • How to install Maldet alert?
  • How to Install Maldet and Run a Scan | Maldetect
  • Where is Roundcube location on CWP control panel?
  • How To Add Node.js Projects In aaPanel?
  • SPF/DKIM/DMARC Tools
  • Associative arrays – How to loop over Associative arrays
  • Indexed Arrays. How to loop over Indexed Arrays.
  • PHP Break | Continue
  • For Loop | While Loop | Do…While Loop | Foreach Loop
  • Strict mode in PHP
  • PHP Function Return Types
  • PHP Anonymous Functions (or Closures)

Categories

  • Affiliate Marketing (1)
  • Customization (4)
    • CSS (2)
  • Email Solutions (23)
    • FrontApp (2)
    • Google Spreadsheet (2)
    • Microsoft Outlook (1)
    • PHP Email Form (3)
    • PolyMail (2)
    • Recaptcha (1)
    • Roundcube (4)
    • Thunderbird (3)
    • WebMail (5)
  • Games (1)
  • How to (88)
  • Joomla (6)
    • Akeeba (1)
    • Fix & Tricks (3)
  • jQuery (4)
  • jQuery Plugins (4)
    • BX Slider (1)
    • Slick (1)
  • Laravel (5)
  • Marketplace (5)
  • Miscellaneous (31)
  • MultiSaaS (1)
  • OJS (56)
    • Crossref (1)
    • Help (37)
    • Installation (10)
      • Issues (5)
    • Plugins (8)
    • Scholar Indexing (2)
    • Theme (7)
      • Templates (7)
        • Frontend (6)
        • legacy (1)
    • Theme Customization (10)
    • Theme Development (14)
    • TPL CSS JS (2)
    • Upgrade (11)
  • OSTAD (17)
  • Oxwall (3)
  • Payment Methods (1)
    • Paypal (1)
  • PC Tips and Tricks (14)
    • MS Office (2)
      • PowerPoint (1)
    • Windows (4)
  • PHP Parse error (2)
  • phpBB (2)
  • Server and Hosting (214)
    • Billing and Management (10)
      • Blesta (5)
      • Boxbilling (2)
      • WHMCS (5)
    • Email (10)
      • Postfix (3)
    • Error and Fix (17)
    • FTP (2)
    • Linux Distribusion (29)
      • Almalinux (14)
      • CentOS (18)
      • Debian (22)
      • Ubuntu (20)
    • Mail Server Solusion (7)
      • iRedMain (6)
    • MySQL (12)
    • Providers (70)
      • AWS (38)
      • Bluehost (38)
      • Cloudcone (27)
      • Contabo (41)
      • Digitalocean (69)
      • Hetzner (4)
      • HostGator (37)
      • Hostinger (9)
      • RackNerd (11)
      • VPSDime (39)
    • Security (21)
      • SSH (8)
    • VPS Management (72)
    • Web Control Panel (148)
      • aaPanel (14)
      • CentOS Web Panel (47)
      • cPanel (33)
      • CyberPanel (7)
      • DirectAdmin (96)
        • Find & fix (38)
      • ISPConfig (17)
      • KeyHelp (7)
      • Plesk (27)
      • Webmin (25)
        • Usermin (2)
        • Virtualmin (13)
      • WHM (18)
  • Tutorials (1)
    • JavaScript – ProjuktiPlus (1)
  • Uncategorized (19)
  • Wordpress (90)
    • Elementor (2)
    • Find and Fix (11)
    • Functions (5)
    • Genesis (9)
    • Glossary (1)
    • How to (22)
    • Neuron TD (15)
      • Console Error (1)
      • functions (5)
        • register_post_type (1)
        • register_sidebar (1)
        • theme_files (1)
        • theme_supports (1)
      • Image Directory (1)
      • Menu (2)
      • Query (4)
    • Plugins (14)
      • Contact Form 7 (5)
      • Duplicator (1)
      • Essential Grid (2)
    • Softaculous (3)
    • Speed and Security (4)
    • Stock Theme Development (6)
      • Header Footer (1)
      • PHP (1)
      • VC (1)
    • Theme Development (2)
      • Issues (1)
      • Menu (1)
    • Timer Theme Development (3)
    • Update (2)
    • Woocommerce (3)
    • WP Basic Guideline (8)

Important DEV links

  • Premium Themes
    • Themeforest
    • Envato Market
  • Built With (What Theme is That?)
    • What WP theme is that
    • Joomla Template Detector
    • Drupal Template Detector
    • Prestashop Template Detector
    • Shopify Theme Detector
    • Squarespace Template Detector
    • OpenCart Detector
    • WordPress.com Theme Detector
  • Domain/IP history checker
    • Who IS request
    • Hosting Info
  • Check DNS Propagation
    • DNS Checker
    • intoDNS
  • What is my IP
    • What is My IP Address
    • What is My IP
    • IP location
    • What is My IP
    • Porkbun
  • SEO Tools
    • Visitor Traffic
    • Broken Link
    • Website Speed Test
      • SEMrush
      • GTmetrix
      • Pingdom
      • PageSpeed Insights
      • DebugBear
      • keyCDN
  • Photo Image
    • Remove Background 50 Free Preview Image 375 × 666 per month
  • Domain Registrars
    • 123-Reg
    • Porkbun
    • Freenom
    • Namecheap NEWCOM598
  • Hosting Providers
    • Bluehost
    • Hostgator
    • Inmotion
  • Hosting Control Panel
    • CWPpro (FREE)
    • DirectAdmin (Trial 60 Days, One account $2/month)
    • ISPConfig (Free)
  • Webmaster Tools
    • Google
    • Bing
    • Yandex
  • Miscellaneous
    • Time Calculator

 

Categories

  • Affiliate Marketing (1)
  • Customization (4)
    • CSS (2)
  • Email Solutions (23)
    • FrontApp (2)
    • Google Spreadsheet (2)
    • Microsoft Outlook (1)
    • PHP Email Form (3)
    • PolyMail (2)
    • Recaptcha (1)
    • Roundcube (4)
    • Thunderbird (3)
    • WebMail (5)
  • Games (1)
  • How to (88)
  • Joomla (6)
    • Akeeba (1)
    • Fix & Tricks (3)
  • jQuery (4)
  • jQuery Plugins (4)
    • BX Slider (1)
    • Slick (1)
  • Laravel (5)
  • Marketplace (5)
  • Miscellaneous (31)
  • MultiSaaS (1)
  • OJS (56)
    • Crossref (1)
    • Help (37)
    • Installation (10)
      • Issues (5)
    • Plugins (8)
    • Scholar Indexing (2)
    • Theme (7)
      • Templates (7)
        • Frontend (6)
        • legacy (1)
    • Theme Customization (10)
    • Theme Development (14)
    • TPL CSS JS (2)
    • Upgrade (11)
  • OSTAD (17)
  • Oxwall (3)
  • Payment Methods (1)
    • Paypal (1)
  • PC Tips and Tricks (14)
    • MS Office (2)
      • PowerPoint (1)
    • Windows (4)
  • PHP Parse error (2)
  • phpBB (2)
  • Server and Hosting (214)
    • Billing and Management (10)
      • Blesta (5)
      • Boxbilling (2)
      • WHMCS (5)
    • Email (10)
      • Postfix (3)
    • Error and Fix (17)
    • FTP (2)
    • Linux Distribusion (29)
      • Almalinux (14)
      • CentOS (18)
      • Debian (22)
      • Ubuntu (20)
    • Mail Server Solusion (7)
      • iRedMain (6)
    • MySQL (12)
    • Providers (70)
      • AWS (38)
      • Bluehost (38)
      • Cloudcone (27)
      • Contabo (41)
      • Digitalocean (69)
      • Hetzner (4)
      • HostGator (37)
      • Hostinger (9)
      • RackNerd (11)
      • VPSDime (39)
    • Security (21)
      • SSH (8)
    • VPS Management (72)
    • Web Control Panel (148)
      • aaPanel (14)
      • CentOS Web Panel (47)
      • cPanel (33)
      • CyberPanel (7)
      • DirectAdmin (96)
        • Find & fix (38)
      • ISPConfig (17)
      • KeyHelp (7)
      • Plesk (27)
      • Webmin (25)
        • Usermin (2)
        • Virtualmin (13)
      • WHM (18)
  • Tutorials (1)
    • JavaScript – ProjuktiPlus (1)
  • Uncategorized (19)
  • Wordpress (90)
    • Elementor (2)
    • Find and Fix (11)
    • Functions (5)
    • Genesis (9)
    • Glossary (1)
    • How to (22)
    • Neuron TD (15)
      • Console Error (1)
      • functions (5)
        • register_post_type (1)
        • register_sidebar (1)
        • theme_files (1)
        • theme_supports (1)
      • Image Directory (1)
      • Menu (2)
      • Query (4)
    • Plugins (14)
      • Contact Form 7 (5)
      • Duplicator (1)
      • Essential Grid (2)
    • Softaculous (3)
    • Speed and Security (4)
    • Stock Theme Development (6)
      • Header Footer (1)
      • PHP (1)
      • VC (1)
    • Theme Development (2)
      • Issues (1)
      • Menu (1)
    • Timer Theme Development (3)
    • Update (2)
    • Woocommerce (3)
    • WP Basic Guideline (8)
  • Home
  • WordPress
  • OJS
  • Oxwall
  • Server and Hosting

Copyright © 2026 · Executive Pro Theme on Genesis Framework · WordPress · Log in