Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
public_html /
new /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-06-11 02:58
bootstrap.js
68.07
KB
-rw-r--r--
2026-07-12 20:11
bootstrap.min.js
36.18
KB
-rw-r--r--
2026-07-12 20:11
contact_me.js
3.13
KB
-rw-r--r--
2026-07-12 20:11
html5shiv.js
2.32
KB
-rw-r--r--
2026-07-12 20:11
jqBootstrapValidation.js
35.39
KB
-rw-r--r--
2026-07-12 20:11
jquery.inview.min.js
1.39
KB
-rw-r--r--
2026-07-12 20:11
jquery.isotope.min.js
15.66
KB
-rw-r--r--
2026-07-12 20:11
jquery.js
93.54
KB
-rw-r--r--
2026-07-12 20:11
jquery.prettyPhoto.js
21.54
KB
-rw-r--r--
2026-07-12 20:11
main.js
6.13
KB
-rw-r--r--
2026-07-12 20:11
mousescroll.js
9.29
KB
-rw-r--r--
2026-07-12 20:11
owl.carousel.min.js
22.49
KB
-rw-r--r--
2026-07-12 20:11
respond.min.js
3.94
KB
-rw-r--r--
2026-07-12 20:11
select2.min.js
65.1
KB
-rw-r--r--
2026-07-12 20:11
smoothscroll.js
6.44
KB
-rw-r--r--
2026-07-12 20:11
wow.min.js
4.66
KB
-rw-r--r--
2026-07-12 20:11
wp-blog-header.php
2.74
KB
-r--r--r--
2026-06-01 03:28
wp-cron.php
2.74
KB
-rw-r--r--
2026-06-01 03:28
Save
Rename
/* Jquery Validation using jqBootstrapValidation example is taken from jqBootstrapValidation docs */ $(function() { $("#contactForm input,#contactForm textarea").jqBootstrapValidation({ preventSubmit: true, submitError: function($form, event, errors) { // something to have when submit produces an error ? // Not decided if I need it yet }, submitSuccess: function($form, event) { event.preventDefault(); // prevent default submit behaviour // get values from FORM var name = $("input#name").val(); var phone = $("input#phone").val(); var email = $("input#email").val(); var message = $("textarea#message").val(); var firstName = name; // For Success/Failure Message // Check for white space in name for Success/Fail message if (firstName.indexOf(' ') >= 0) { firstName = name.split(' ').slice(0, -1).join(' '); } $.ajax({ url: "./bin/contact_me.php", type: "POST", data: { name: name, phone: phone, email: email, message: message }, cache: false, success: function() { // Success message $('#success').html("<div class='alert alert-success'>"); $('#success > .alert-success').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×") .append("</button>"); $('#success > .alert-success') .append("<strong>Your message has been sent. </strong>"); $('#success > .alert-success') .append('</div>'); //clear all fields $('#contactForm').trigger("reset"); }, error: function() { // Fail message $('#success').html("<div class='alert alert-danger'>"); $('#success > .alert-danger').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×") .append("</button>"); $('#success > .alert-danger').append("<strong>Sorry " + firstName + " it seems that my mail server is not responding...</strong> Could you please email me directly to <a href='mailto:me@example.com?Subject=Message_Me from myprogrammingblog.com;>me@example.com</a> ? Sorry for the inconvenience!"); $('#success > .alert-danger').append('</div>'); //clear all fields $('#contactForm').trigger("reset"); }, }) }, filter: function() { return $(this).is(":visible"); }, }); $("a[data-toggle=\"tab\"]").click(function(e) { e.preventDefault(); $(this).tab("show"); }); }); /*When clicking on Full hide fail/success boxes */ $('#name').focus(function() { $('#success').html(''); });