Posts

How to Install / Upload a plugin in WORDPRESS.

Step 1: Login to Wordpress Step 2: Go to Plugin Menu. Step 3: Click On Add Plugin. Step 4: Search Plugin which you want to install. Step 5: Click on Install Now. Step 6: After successfully installation. Click on Activate. *If you have a ZIP file to upload. Step 1: Click On Add Plugin. Step 2: Click on Upload Plugin. Step 3: Choose File from your Computer. Step 4: Click on Install. Step 5: After successfully installation. Click on Activate.

Creating Sub Domain and Instal WordPress

Step to create Sub Domain: Step 1: Login to your hosting account. (Hostinger) Step 2: Click on Manage hosting Step 3: Select your Domain Name from the left Dropdown. Step 4: Go to Domains Menu -> Click on Subdomains Step 5: Enter Your Prefix. Step 6: Click on Create Button Step to install WordPress on subdomain: Step 7: Now, Click on Overview menu on sidebar Step 8: Click on WordPress   Overview Step 9: Scroll Down and look for "Install Another Wordpress" and click on Install. Step 10: Pop Up will show up -  a) Enter website name b) enter admin email to receive notifications related to website. c) create username and password (eg: parteek , Parteek@ 12##) d) click on Advanced - Select Sub Domain in which you want to install Wordpress. e) Enter database password. (Keep Password same as above) f) Click Next and Install. Login to Wordpress Account using username and password: Step 1: Domain-name/wp-admin (ex: https://parteek.vicharvibes.com/wp-admin) Step 2: Enter us...

SQL - Stored Procedures

 Stored Procedure is a prepared code that you can save and you can use that code over and over again. example: select * from tbemp; Stored Procedure Syntax: create PROCEDURE pro_name AS sql_query GO; Execute the Stored Procedure: EXEC procedure_name; Example: CREATE PROCEDURE getAllEmployee AS select * from tbemp GO; DELIMITER $$ CREATE PROCEDURE `allEmp`() BEGIN select * from tbEmp; END; Excecution: Exce getAllEmployee;  //MSSQL call allEmployees();   // MYSQL DELIMITER $$ CREATE PROCEDURE `allEmployeeDetail`() BEGIN select e.emp_id as ID, e.emp_dept as Department, e.name, s.student_email, s.is_active from tbEmp e inner join stdn s on e.emp_id=s.student_id where s.password_hash!=''; END; DROP PRocedure allEmployeeDetail; call allEmployeeDetail();

WordPress Plugins List

 WordPress Plugins: WordPress plugins are add-ons that extend the functionality of a WordPress site without requiring you to code everything from scratch. They work like “apps” for your website—installing them can add new features, improve performance, enhance SEO, secure your site, and more. 1. What Are WordPress Plugins? Small software packages that integrate with WordPress. Can be free, freemium, or premium. Stored in the /wp-content/plugins/ directory. Installed via the WordPress Plugin Directory (official) or manually uploaded. 2. How to Install a Plugin Go to Dashboard → Plugins → Add New . Search for the plugin name. Click Install Now , then Activate . Configure settings if needed. 3. Types of WordPress Plugins a) SEO Plugins Yoast SEO – SEO optimization & readability analysis. Rank Math – Lightweight alternative with rich snippets. All in One SEO Pack – Beginner-friendly SEO features. b) Security Plugins Wordfence – Firewal...

HTML Tutorial

Module 1: Introduction to HTML 1.1 : What is HTML? HTML stands for HyperText Markup Language. It is the standard language used to create web pages and web applications. HTML structures the content using tags (elements), such as <h1> , <p> , <img> , etc. It tells the browser how to display text, images, links, and other content. Example: <p>This is a paragraph in HTML.</p> 1.2 : History and Versions of HTML Developed by Tim Berners-Lee in 1991. Evolved from HTML 1.0 to HTML5. HTML5 is the latest version, supporting audio, video, canvas, and semantic elements. HTML Versions: HTML 1.0 – Basic structure HTML 4.01 – More features (1999) XHTML – Stricter rules HTML5 – Rich media and better structure (2014+) 1.3 : HTML vs. Other Web Technologies Technology Purpose HTML                Structure/content of page CSS            ...

Effective Social Media Management: Strategy, Engagement & Growth

In today’s digital world, social media is a powerful tool for building brand awareness, engaging with audiences, and driving business growth. A well-planned social media strategy helps businesses connect with their target audience, create meaningful interactions, and stay ahead of trends. This guide covers key aspects of social media management, including content creation, community engagement, campaign management, analytics, and brand consistency. Whether you're looking to enhance your online presence or optimize your current strategy, these essential steps will help you achieve your goals. 1. Content Strategy and Creation: Develop and execute a social media strategy aligned with business goals. Create engaging and relevant content (posts, graphics, videos) tailored to various platforms (Facebook, Instagram, LinkedIn, Twitter, etc.). 2. Community Engagement: Respond to comments, messages, and mentions in a timely and professional manner. Engage with followers to build a strong onl...

Java Script - Table of Content

 Table of Content 1. Introduction to JavaScript What is JavaScript? Evolution of JavaScript How JavaScript Works in Browsers Setting Up the Environment: Choosing a Code Editor (VS Code, Sublime, etc.) Running JavaScript in the Browser Console Setting Up Live Servers 2. JavaScript Fundamentals 2.1 Variables and Data Types Declaring Variables (var, let, const) Primitive Data Types (String, Number, Boolean, Null, Undefined, Symbol, BigInt) Type Conversion and Coercion 2.2 Operators Arithmetic Operators Logical and Comparison Operators Assignment Operators Conditional (Ternary) Operator 2.3 Control Flow Conditional Statements (if, else if, else, switch) Loops (for, while, do-while) Break and Continue 2.4 Functions Function Declaration and Invocation Parameters and Arguments Function Expressions and Arrow Functions Default Parameters 3. Working with the DOM 3.1 DOM Basics What is the DOM? Selecting Elements ( getElementById , querySelector , etc.) Modifyin...