Category: Web Development
How to create AWS OpsWorks Stack
Purpose is to automate most of recurring processes like creating user, installing application (apache, apache-tomcat, mysql-server …etc), and modifying security file to hardening Linux machines in AWS environment. 1. Click AWS OpsWorks option from AWS console panel: 2. Now click
CakePHP | Send Email using SMTP in cakephp 3
1. Open config/app.php file inside your project and then modify the default email configuration and setup your SMTP account there: ‘EmailTransport’ => [ ‘default’ => [ ‘className’ => ‘SMTP’, // The following keys are used in SMTP transports ‘host’ =>
Slider Revolution Plugin | Keep text while background images change
Slider revolution plugin is used to create the slider to be used in the wordpress website through its shortcode. We can create as many slides as we want and can design each slide very easily by adding layers above layers.
Split large CSV into multiple smaller CSV files with Python script
Problem: If you are working with millions of record in a CSV it is difficult to handle large sized file. Solution: You can split the file into multiple smaller files according to the number of records you want in one
Configuring AWS WAF (Web Application Firewall)
AWS WAF web application firewall service is built to protect cloud apps from web attacks like DDoS attacks, SQL injections, Cross site scripting. Below are the steps involved in configure AWS WAF security: Step.1 Open CloudFormation and click on create
Queues in salesforce
One primary purpose of creating the queue in salesforce is to manage particular object records. For example in lead queue, the queue is created to automatically assign the lead to particular user of the lead queue. As new lead enters
Software Testing | Understanding Severity & Priority
While testing the Web applications, Software and Projects, sometimes we cannot perform the full test scenarios and bug fixes due to shortage of time or due to project running out of time. A lot of bugs and errors could be
PHP | Send mail through Gmail SMTP server and phpmailer
We have mail() function to send emails in PHP. It uses built in sendmail command that uses local mail server to send emails. PHPMailer, on the other hand, is very different. Rather than relying on sendmail, it communicates directly with
Salesforce | Dynamic table column headings in a VisualForce page
In VisualForce Page I wanted to have different column headings, like this: I tried it using tag and tag but you can not display header value using tag as well as <apex:facetname=”header” > tag. <apex:repeat value=”{!prolist}” var=”ls” > <apex:column headerValue=”Producer
