This comprehensive guide will explain setting up an Amazon EC2 instance, Setting up the VPS environment to host multiple WordPress websites by explaining the setup process of PHP, MySQL server and phpMyAdmin on the server. We shall setup the database for one WordPress website and learn how to point multiple domains to the web server Continue Reading …
Category: Uncategorized
Basics of pointers in C++ (cpp)
Pointers in C++ are powerful and versatile variables that store memory addresses. They allow direct manipulation of memory, dynamic memory allocation, and efficient access to data structures. Here are some basics of pointers in C++: Declaration: Pointers are declared using the asterisk (*) symbol followed by the data type of the variable they will point Continue Reading …
Javascript source code to add multiple images to a single pdf file
Here is the complete code to add multiple images to a single pdf file Continue Reading …
How to track click on a link with ajax and javascript
I simply wanted to know on which links the user clicks. So I devised a method to capture these link URLS using javascript and posted them to server storing them in a log file.If this is what or something similar you would like to to do then read on. This allowed me to see the Continue Reading …
Flush DNS Cache in Windows
Flushing DNS cache is required when you have moved your web content to a new IP address or whatever be the reason.Flushing DNS in windows is actually very simple and just requires one command at the command prompt c:\ipconfig /flushdns Continue Reading …