Amazon(AWS) Email PHP showcase 

How to integrate AWS SES with PHP – PHPMailer

In this article we will look in to, how to implement amazon AWS SES (simple email service) in PHP using PHPMailer library. Register with AWS Step 1: Register with AWS and verify your primary email. If you are a new user then by default AWS will give you limited access as an SES sandbox account. this might be enough for testing. But when you want to deploy the application in production then it will be a bit difficult, so after testing, request for production where you will get much more…

Read More
aws-elastic-beanstalk Amazon(AWS) Hosting 

How to fix “413 request entity too large” in AWS elastic beanstalk solution-2

Continuation of EBS error to solution one if it doesn’t work then try the below solution where is process is a bit long, but 100% working solution for 413 request entity too large error. Note: This is not a permanent solution. This Settings reverts to the old version when EBS gets a new version update. Else try this solution click here step1: select the EC2 instance of the elastic beanstalk in the EC2 dashboard, which will be having the same name as the EBS environment name, and in the below…

Read More
aws-elastic-beanstalk Amazon(AWS) Hosting 

How to solve 413 request entity too large in AWS elastic beanstalk solution-1

To solve 413 request error in AWS elastic beanstalk with node.js application follow the below steps. Note: this solution currently tried with the Nginx server but works with apache too. This method is a custom hack to increase the upload file size without using awsebcli. step1: In your node.js application root folder create folder name called .ebextensions. step2: Inside this folder create a file with any filename ending with “.config” extensions example: nginxfile.config. step3: Now open the created file and copy-paste the below-mentioned code into file and save. step4: At…

Read More
mongodb Amazon(AWS) linux Mongo DB NoSQL 

How to Install MongoDB Server in Ubuntu AWS EC2 updated in 2020

MongoDB is a free and open-source NoSQL database used in modern-day web applications. In this article, we will install and configure security auth features. #1 Step: installing MongoDB server First Update your ubuntu so that all the latest LTS settings can configure. Install Mongo using below command Note: If any error occurred while installing please refer below.Click here for force install solution #2 Step: Verifying and configuring server autostart By now the database server is automatically started after installation. if not you can follow the below step. How to verify whether…

Read More
aws-ubuntu Amazon(AWS) Hosting 

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on AWS Ubuntu

While Setting up the AWS or any other linux cloud hosting service there are many things we need to take care of while installing the LAMP stack to ubuntu. LAMP(Linux, APACHE, MySQL, PHP)? AMP stack is a group of open source software used to get web servers up and running. The acronym stands for Linux, Apache, MySQL, and PHP. Since the virtual private server is already running Ubuntu, the linux part is taken care of. Here is how to install the rest. Before Starting LAMP Installation you need to set…

Read More
phpmyadmin Amazon(AWS) Hosting 

How to Install Phpmyadmin in ubuntu.

What is phpmyadmin? phpMyAdmin is a free and open source tool written in PHP intended to handle the administration of MySQL or MariaDB with the use of a web browser. It can perform various tasks such as creating, modifying or deleting databases, tables, fields or rows; executing SQL statements; or managing users and permissions. Before installing phpmyadmin if you want to install LAMP to your server checkout here How To Install Linux, Apache, MySQL, PHP (LAMP) stack on AWS Ubuntu Step One — Install phpMyAdmin To get started, we can…

Read More