Dev {Tricks}

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

July 9, 2024 by dev

PHP Built-in Functions

PHP Built-in functions are the standard functions that are always available in PHP without any special requirement like.

strlen(): To get the length of a string.
array_merge(): To merge two or more arrays.
is_numeric(): To check if a variable is a number or a numeric string.

Build In Functions List
https://www.php.net/manual/en/indexes.functions.php

<?php
// PHP Built in Function
print_r(“Hello”.“\n“);
echo (1+2).“\n“;
var_dump(“Hello World”);
echo“\n“;
$string=“OSTAD”;
$stringLen=strlen($string);
echo $stringLen.“\n“;
// Determine $value=”122″ is numeric or NOT numeric.
$value = 122;
if (is_numeric($value)) {
    echo “The value $value is numeric”;
}
else {
    echo “The value $value is NOT numeric”;
}
echo “\n“;

Filed Under: OSTAD Tagged With: built-in function, builtin function, internal built-in function, php internal function

June 30, 2024 by dev

Mastering Git and GitHub

Git & GitHub

Git Setup and Configuration

Git Initialization

 

Why do we need git?

  • Version control (Git, GitLab, Beanstalk, PerForce, Bitbucket)
  • By git we clone repository and push changes
  • Change tracking
  • Collaborate on project

Why do we need github?

  • Remote folder/repository is hosted on GitHub
  • Local clone of repository
  • It is owned by Microsoft

Difference between Git & GitHub

Git GitHub
1. Tool/Software 1. Service
2. Change control, Version control 2. Host git repository
3. Provides CLI (Command Line Interface Tool) 3. Provides GUI (Graphical User Interface)
4. Installed and maintained locally 4. Maintained on cloud/web

Git setup and configuration

  • Search “git scm” and download it.
    https://git-scm.com/downloads
  • Now install it
  • Open Git Bash and check git version.
    git --version
  • To set your Git username and email, type this in your terminal
    git config --global user.name Shahadat Hossain
    git config --global user.name
    git config --global user.email bdhostit@gmail.com
    git config --global user.email
  • Now open terminal of VS Code and launch profile “Git Bash”.

 

 

 

Filed Under: OSTAD Tagged With: git, github

June 29, 2024 by dev

TROUBLE with deleting windows files. Permission Error.

Two ways to solve the problem

  • Command Prompt
  • File Explorer

Command Prompt

  • Run Command Prompt as Administrator
  • Enter TAKEOWN /F and then type the file or folder name.
    TAKEOWN /F C:\Windows\System32\TestFolder\deleteFile.dill
  • Press Enter to take control of the file.
  • Enter the following command to immediately give your user account permission to delete or change the file or folder:
    icacls C:\Windows\System32\TestFolder\deleteFile.dill /grant Administrators:F /T
  • Edit the File’s Security Options to Fix the TrustedInstaller Error

File Explorer

If you are not comfortable with Command Prompt try with File Explorer.

  • Right-click on the file or the folder you want to delete and then choose Properties.
  • Now go to the Security tab.
  • Select a Group or user name and check permissions. You can select Administrators or Users.
  • You have to make the permission Full control. To change permission
    • First change Ownership
      • To change ownership, click on the Advanced button. Then click on the blue color Change link. From the popup box, click on Advanced… and then find and select a user. Check Replace owner on subcontainers and objects and Replace all child object permission entries with inheritable permission entries from the object and click on OK.
    • Then edit permission
      • To change permission, click on Edit
    • Now change permission to Full control
    • Click OK.
  • Now you can delete the file or the folder.

 

 

 

Filed Under: Miscellaneous Tagged With: how to delete file, permission error, unable to delete file, unable to delete folder

June 25, 2024 by dev

SSL Renew Error | aaPanel

  • after the latest update to 7.0.5 i’ve received errors when creating SSL from Let’s Encrypt in php projects:
  • cannot import name ‘_ED25519_KEY_SIZE’ from ‘cryptography.hazmat.primitives.asymmetric.ed25519’ (/www/server/panel/pyenv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py)

Solutions:

  1. Try restarting aaPanel and check.
  2. If it does not work, use the ssh tool to execute the following command:
    btpip install -I cryptography==40.0.2
    bt restart

It works like charm!
That’s All!.

Filed Under: aaPanel Tagged With: aapanel ssl issue

June 16, 2024 by dev

WordPress WP-CLI for updating themes and plugins and more

  • Connect to SSH
  • Run the following commands
    • To update WordPress core:
      wp core update
    • To update one plugin:
      wp plugin update plugin-name
    • To update all plugins:
      wp plugin update --all
    • To update one theme:
      wp theme update theme-name
    • To update all themes:
      wp theme update --all

For security reasons, it is recommended to keep WordPress, plugins, and themes up to date.

Export the database with WP-CLI

wp db export filename.sql

Import the database with WP-CLI

wp db import filename.sql

Filed Under: Find and Fix, How to, Plugins, Wordpress Tagged With: WP-CLI

  • « Previous Page
  • 1
  • …
  • 4
  • 5
  • 6
  • 7
  • 8
  • …
  • 91
  • Next Page »
  • Upwork
  • Freelancer
  • Fiverr
  • Guru

www.ojsexpert.com
www.ojsdev247.com

Recent Posts

  • 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)
  • PHP Variadic Functions
  • PHP nullable type hints

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 (87)
  • 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 (213)
    • Billing and Management (10)
      • Blesta (5)
      • Boxbilling (2)
      • WHMCS (5)
    • Email (10)
      • Postfix (3)
    • Error and Fix (17)
    • FTP (2)
    • Linux Distribusion (28)
      • Almalinux (13)
      • CentOS (17)
      • Debian (21)
      • Ubuntu (19)
    • Mail Server Solusion (7)
      • iRedMain (6)
    • MySQL (12)
    • Providers (69)
      • AWS (37)
      • Bluehost (37)
      • Cloudcone (26)
      • Contabo (40)
      • Digitalocean (68)
      • Hetzner (3)
      • HostGator (36)
      • Hostinger (8)
      • RackNerd (10)
      • VPSDime (38)
    • Security (21)
      • SSH (8)
    • VPS Management (72)
    • Web Control Panel (147)
      • aaPanel (14)
      • CentOS Web Panel (46)
      • cPanel (33)
      • CyberPanel (7)
      • DirectAdmin (96)
        • Find & fix (38)
      • ISPConfig (17)
      • KeyHelp (7)
      • Plesk (26)
      • Webmin (25)
        • Usermin (2)
        • Virtualmin (13)
      • WHM (18)
  • Uncategorized (19)
  • Wordpress (89)
    • 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 (13)
      • 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 (2)
    • 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 (87)
  • 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 (213)
    • Billing and Management (10)
      • Blesta (5)
      • Boxbilling (2)
      • WHMCS (5)
    • Email (10)
      • Postfix (3)
    • Error and Fix (17)
    • FTP (2)
    • Linux Distribusion (28)
      • Almalinux (13)
      • CentOS (17)
      • Debian (21)
      • Ubuntu (19)
    • Mail Server Solusion (7)
      • iRedMain (6)
    • MySQL (12)
    • Providers (69)
      • AWS (37)
      • Bluehost (37)
      • Cloudcone (26)
      • Contabo (40)
      • Digitalocean (68)
      • Hetzner (3)
      • HostGator (36)
      • Hostinger (8)
      • RackNerd (10)
      • VPSDime (38)
    • Security (21)
      • SSH (8)
    • VPS Management (72)
    • Web Control Panel (147)
      • aaPanel (14)
      • CentOS Web Panel (46)
      • cPanel (33)
      • CyberPanel (7)
      • DirectAdmin (96)
        • Find & fix (38)
      • ISPConfig (17)
      • KeyHelp (7)
      • Plesk (26)
      • Webmin (25)
        • Usermin (2)
        • Virtualmin (13)
      • WHM (18)
  • Uncategorized (19)
  • Wordpress (89)
    • 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 (13)
      • 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 (2)
    • WP Basic Guideline (8)
  • Home
  • WordPress
  • OJS
  • Oxwall
  • Server and Hosting

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