Tuesday, July 21, 2015

Adobe CS5 Serial keys

1330-1036-2793-5476-2605-5729
1330-1193-9982-0310-7670-2199
1330-1470-0441-6829-3063-2553
1330-1976-0892-7993-3728-5629
1330-1527-2207-3657-2876-1004
1330-1361-6390-5309-5916-6481
1330-1614-6955-3965-0930-9043

Tuesday, July 14, 2015

Contact form with Node.js

Let's see that how to make simple contact form with Node.Js nodemailer module


  • install nodemailer - npm install nodemailer

server.js

var express=require('express');
var nodemailer = require("nodemailer");
var app=express();
var smtpTransport = nodemailer.createTransport({
service: "Gmail",
auth: {
user: "bandara.susantha@gmail.com",
pass: "bankaya86"
}

});
app.get('/',function(req,res){
console.log('works');
res.sendfile('index.html');
});
app.get('/send',function(req,res){
var mailOptions={
to : req.query.to,
subject : req.query.subject,
text : req.query.text
}
console.log(mailOptions);
smtpTransport.sendMail(mailOptions, function(error, response){
if(error){
console.log(error);
res.end("error");
}else{
console.log("Message sent: " + response.message);
res.end("sent");
}
});
});
app.listen(3000,function(){
console.log("Express Started on Port 3000");
});


index.html(html file)

"












"




  • when you use this inside the Apache (LAMP or Xampp ) you should enable the proxypass 
  • for that you can add this into end of your virtual host fileProxyPass /send http://localhost:3000/send


Thursday, July 9, 2015

Fix the Revolution Slider google Chrome Animation Issue

Noramaly Revolution slider text and layers are not working on wp plugin also HTML version.
I fixed this issue


  1.  find code
  2. then change the rev=4.3.5 into rev= 4.6.0
  3. copy the http://demo.woorockets.com/themes/one/wordpress/wp-content/plugins/bwp-minify/min/?f=themes/one/wordpress/wp-content/plugins/revslider/rs-plugin/js/jquery.themepunch.tools.min.js,themes/one/wordpress/wp-content/plugins/revslider/rs-plugin/js/jquery.themepunch.revolution.min.js


all content and replace the code js/jquery.themepunch.revolution.min.js file

Now IT works ! :)