Skip to main content

Posts

How to Create PhpMyAdmin for AWS Linux of Ubuntu Server

  setting up phpMyAdmin on Ubuntu Server 22.04. Let's go step by step to get phpMyAdmin working correctly for you: Download phpMyAdmin : First, ensure that you have phpMyAdmin installed on your server. You can download it using the following command: bash Copy code sudo apt update sudo apt install phpmyadmin During the installation, you will be asked to choose a web server. Select apache2 using the arrow keys and press Enter. Now after this the most important work is to set it on URL for example on server's root URL or IP if you have already deployed any python or node project and you want to access phpmyadmin outsite of that Document Root then you have to use Allias for example your server url is 195.35.23.26 and you want to access it on http://195.35.23.26/phpmyadmin/ then you have to make changes in your default conf file like below <VirtualHost *:80> ServerName 195.35.23.26 DocumentRoot /root/homemapp # Rewrite rules for phpMyAdmin Rewrit
Recent posts

How to to deploy python app sepratly on same server (previous one ) /root/demo - Deploy Python app on Ubuntu Server using ssh Terminal - by Vasu Birla

hello friends , am Vasu Birla and Today we will deploy Python App.. in previous post we have deployed NODE js app on 0.0.0.0 (your server IP) and acess it using http://0.0.0.0/   Now  If you want to deploy a Python app separately on the same server, in the /root/demo directory, and access it using http://0.0.0.0/demo,  you can use Apache2 and mod_wsgi to host the Python app.   Additionally, you can configure Apache2 to proxy the requests for the   /demo path to your Python app without affecting the Node.js app hosted at the root.   First of all  put your python project folder on root location of server , using putty with cloning git repo or using FTP server and direct paste folder (in previous post we aleady discussed it)   lets suppose your folder name is demo .. location would be  /root/demo   install necessery things to support your python app .  like pip install or django ..etc     as well install in virtual enviorment also ..       -> python3 -m venv venv        -> source v

How to deploy NodeJS app on server with Apache2 and acess it with Server IP addresss - Node JS deploy project Live.

     hello friens , This is Vasu Birla , in previous post we have seen the deployement of NodeJS app on AWS instance server instance but AWS server is expensive than other servers . SO today we will use simple Ubuntu server for making Live out Project using Apache2 . At the end you will be abe to access your NodeJS app using server IP address from anywhere  .. 1.  Login to your server using SSH terminal . (in AWS part i already explained how to do this )     -> Open your putty in hostname put your server IP -      login with ssh username ->root and password     (if you dont have root username and pass ask your      provider or reset it from cpanel or hosting panel ) 2. after login - on terminal you can Put your project anywhere.     There are two ways to put your project folder on server location     (i) - > using Github - (very popular and easy to track your everyday code changes to your project folder)             you can push your entire project folder to git-hub and and

How To create Chat Server using - PHP with MYsql db connectivity

//-------------- Chat server BY Kilvish ------------ <?php // Establish MySQL database connection $servername = "localhost" ; $username = "root" ; $password = "" ; $dbname = "chatdb" ; $conn = new mysqli ( $servername , $username , $password , $dbname ); if ( $conn -> connect_error ) {     die ( "Connection failed: " . $conn -> connect_error ); } // Retrieve chat messages from the database function getChatMessages () {     global $conn ;     $sql = " SELECT * FROM chat_messages ORDER BY created_at ASC " ;     $result = $conn -> query ( $sql );     $messages = array ();     if ( $result -> num_rows > 0 ) {             while ( $row = $result -> fetch_assoc ()) {             $messages [] = $row ;         }     }     return $messages ; } // Insert a new chat message into the database function insertChatMessage ( $username , $message ) {     global $conn ;     $sql = "

Convert any web page to pdf and save it to Server location - Using AJAX javascript and PHP

 Saving PDF file on local machine is easy - but  if you want to save it on server location - then we have two waays ..  1. Using JavaScript AJAX call ...  2. Using PHP  package -  wkhtmltopdf =====================1. JavaScript Way -============================ pdfmaker.php or .html  < div id = "kil" >       <!--  your can use URL or path for image -->           < img id = "kil2" src = "../folder/vasu.png" >     < p >         Kilvish is the Biggest villan of the Earth Planet.     </ p > </ div > <!-- Include the jsPDF library --> < script src = "https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js" ></ script > < script src = "https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.3.2/html2canvas.min.js" ></ script > < script src = "https://code.jquery.com/jquery-3.5.1.min.js" ></ script > < script > window . jsPDF = win

How to Deploy Node JS App on AWS (Amazon Web Service) - Step by Step - can be deploy any App

  hello coders , Am Vasu Birla and today we will learn how to deploy Nodejs or any App on AWS (Amazon Web Service ); 1.  Log in to AWS account 2.  Select EC2 service in Services section 3. Create / Launch Instance  (select your Instance Type - Ubuntu or choose your own) 4. After Launching Instance open it and copy public IP address 5. Open Putty App on your local machine 6. in Host name give host name - (it can be given by two ways )     -  ec2.user@0.0.0.0  (use your instance public ip instead of 0.0.0.0)                  or     -   ec2-0-0-0-0.ap-southeast-1.compute.amazonaws.com 7. also in putty app go to connection tab -> SSH -> Auth -> Credensials -> Browse and open your key pari (.ppk or .pem file) 8. if you succeced if previous step terminal will be open -   run command  'ls'  it will show nothing     because we didn't put our project folder here . 9. now on your local machine install filezilla or winSCP .... 10. Open Your WinSiP -  create new site ->