const { registerBlockType } = wp . blocks ; const { RichText , InspectorControls } = wp . blockEditor ; const { ToggleControl , PanelBody , PanelRo…
Read more
Showing posts from November, 2021Show all
Wp Plugin basic settings
Kahnu Help
0
Comments
<?php /** * Plugin Name: Push Notifications Reloaded * Version: 1.0 * Requires at least: 4.9 * Requires PHP: 5.6 * Plugin URI: https://lunacreativity.i…
Read more$sudo nano /etc/apache2/apache.conf <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_…
Read moreTo install (Apache, PHP, MariaDB, PHPMyAdmin), please open your terminal and follow the below simple steps: First, install apache2 package: sudo apt in…
Read moreInstall sudo apt update sudo apt install apache2 sudo ufw allow 'Apache' REmove Apache2 sudo apt-get purge apache2 # Restart Apache 2 ser…
Read moreUpload CSV File in PHP
Kahnu Help
0
Comments
<?php // Load the database configuration file include_once 'dbConfig.php' ; // Get status message if ( ! empty ( $_GET [ 'status'…
Read more