This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
File: qa-plugin/webinoly-custom/qa-plugin.php | |
Description: Anti SPAM Registration Plugin for Question2Answer | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License | |
as published by the Free Software Foundation; either version 2 | |
of the License, or (at your option) any later version. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check if domain is subdomain | |
if [[ -n $domain ]]; then | |
count=1 | |
while true; do | |
tld=$(echo "${domain}" | rev | cut -d'.' -f -$count -s | rev) | |
if ! grep -Fxq "$tld" /opt/webinoly/lib/public_suffix_list.dat; then | |
break | |
fi | |
count=$[$count+1] | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Only numerals 0-9, basic Latin letters, both lowercase and uppercase, hyphen. | |
[[ $domain =~ ^[\.0-9A-Za-z\-]+$ ]] || domfail="true" | |
# Check Lenght | |
[[ ${#domain} -gt 67 ]] && domfail="true" | |
# Can not start or end with a hyphen | |
[[ $(echo "${domain}" | cut -c-1) == "-" || $(echo "${domain}" | rev | cut -c-1) == "-" ]] && domfail="true" | |
# Can not contain two points together and can not start or end with a point |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check for valid IPv4 and IPv6 values, including CIDR. | |
if [[ -n $ip && $ip =~ ^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\/([0-9]|[1-2][0-9]|3[0-2]))?$ || $ip =~ ^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))(\/([0-9]|[1-9][0-9]|1[0-2][0-8]))?$ ]]; then | |
echo "Valid IP!" | |
else | |
echo "[ERROR] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
File: qa-plugin/webinoly-custom/qa-plugin.php | |
Description: Anti SPAM Registration Plugin for Question2Answer | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License | |
as published by the Free Software Foundation; either version 2 | |
of the License, or (at your option) any later version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: SEO Custom Meta-Robots | |
Plugin URI: https://qrokes.com/ | |
Plugin Description: SEO Custom Meta Robots | |
Plugin Version: 1.0 | |
Plugin Date: | |
Plugin Author: QROkes | |
Plugin Author URI: https://qrokes.com/ | |
Plugin License: GPLv3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Amazon SES (AWS) instead php mail. | |
add_action( 'phpmailer_init', 'qr_aws_ses_smtp' ); | |
function qr_aws_ses_smtp( $phpmailer ) { | |
$phpmailer->isSMTP(); | |
$phpmailer->Host = 'email-smtp.us-east-1.amazonaws.com'; | |
$phpmailer->SMTPAuth = true; | |
$phpmailer->Port = 25; | |
$phpmailer->Username = 'AWS SES Credentials - username'; | |
$phpmailer->Password = 'AWS SES Credentials - password'; | |
$phpmailer->SMTPSecure = 'tls'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
listen [::]:80; | |
server_name domain.com; | |
location / { | |
proxy_set_header Host $host; | |
proxy_set_header X-Forwarded-Host $host; | |
proxy_set_header X-Forwarded-Server $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'> | |
<properties> | |
<entry key="config.default">./conf/default.xml</entry> | |
<!-- DataBase MariaDB --> | |
<entry key='database.driver'>com.mysql.jdbc.Driver</entry> | |
<entry key='database.url'>jdbc:mysql://[HOST]:3306/[DATABASE]?useSSL=false&allowMultiQueries=true&autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8&sessionVariables=sql_mode=''</entry> | |
<entry key='database.user'>[USER]</entry> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Based on: https://wordpress.org/plugins/comment-reply-email-notification/ */ | |
add_action('wp_insert_comment', 'qr_comment_notification', 99, 2); | |
add_action('wp_set_comment_status','qr_comment_status_update', 99, 2); | |
add_filter('wp_mail_content_type', function($contentType) { return 'text/html'; }); | |
/** | |
* Sends an email notification when a comment receives a reply | |
* @param int $commentId The comment ID |
NewerOlder