This file contains hidden or 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
| <div style="text-align:center"> | |
| <a href="https://facebook.com/testclue" style="padding-top:10px;"><img src="http://uhl.hosting/wp-content/uploads/2016/02/Facebook.png" alt="TestClue on Facebook" height="60" width="60" ></a> | |
| <a href="https://twitter.com/testclue" style="padding-top:10px;"><img src="http://uhl.hosting/wp-content/uploads/2016/02/Twitter.png" alt="TestClue on Twitter" height="60" width="60"></a> | |
| <a href="https://www.linkedin.com/company/testclue" style="padding-top:10px;><img src="http://uhl.hosting/wp-content/uploads/2016/02/in.png" alt="TestClue on LinkedIN" height="60" width="60"></a> | |
| <a href="https://plus.google.com/+Testclue" style="padding-top:10px;"><img src="http://uhl.hosting/wp-content/uploads/2016/02/G.png" alt="TestClue on Google+" height="60" width="60"></a> | |
| </div> |
This file contains hidden or 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
| # | |
| # This group is read both both by the client and the server | |
| # use it for options that affect everything | |
| # | |
| [client-server] | |
| # | |
| # include all files from the config directory | |
| # | |
| !includedir /etc/my.cnf.d |
This file contains hidden or 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 | |
| // rewrite /wp-content/themes/theme-name/css/ to /css/ | |
| // rewrite /wp-content/themes/theme-name/js/ to /js/ | |
| // rewrite /wp-content/themes/theme-name/img/ to /img/ | |
| // rewrite /wp-content/plugins/ to /plugins/ | |
| function roots_flush_rewrites() { | |
| global $wp_rewrite; | |
| $wp_rewrite->flush_rules(); | |
| } |
This file contains hidden or 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
| Warning – Location defined as regex has a valid regex operator, but does not include a regex pattern. It is generally more efficient to configure exact or prefix matching for locations that do not really require regex matching. Please refer the documentation describing location directive. | |
| Check the following file(s): | |
| /etc/nginx/conf.d/default.conf, line 114 | |
| Warning – location defined as regex has a regex pattern that does not include ^ or $. It is recommended that the regex pattern always includes anchors ^ and $. | |
| Check the following file(s): | |
| /etc/nginx/conf.d/default.conf, line 114 | |
| Warning – location defined as regex is set up for case-insensitive matching. It is recommended to generally avoid case-insensitive matching for regex locations since it’s prone to many errors. |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
| # | |
| WP_OWNER=www-data # <-- wordpress owner | |
| WP_GROUP=www-data # <-- wordpress group | |
| WP_ROOT=$1 # <-- wordpress root directory |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro | |
| # | |
| WP_OWNER=changeme # <-- wordpress owner | |
| WP_GROUP=changeme # <-- wordpress group | |
| WP_ROOT=/home/changeme # <-- wordpress root directory |
This file contains hidden or 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
| <img src="..wp-content/uploads/2016/02/animat-rocket-color-static.png" onmouseover="../wp-content/uploads/2014/02/testclue-rocket.gif'" onmouseout="this.src='..wp-content/uploads/2016/02/animat-rocket-color-static.png'"> | |
| This is the main code and get broken in this after saving it: | |
| <img src="..wp-content/uploads/2016/02/animat-rocket-color-static.png" /> |
This file contains hidden or 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 | |
| /* | |
| Our Template Page for Single Locations created with Local SEO by Yoast | |
| Local SEO is good at at formatting this data use the schema format, please make sure you continue to support it. | |
| */ | |
| get_header(); ?> | |
| <h1>Locations</h1> |
This file contains hidden or 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 | |
| function my_http_request_args ( $r ) | |
| { | |
| $r['timeout'] = 15; # new timeout | |
| return $r; | |
| } | |
| add_filter( 'http_request_args', 'my_http_request_args', 100, 1 ); |
This file contains hidden or 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
| #!/bin/bash | |
| # Installation: | |
| # | |
| # 1. vim /etc/ssh/sshd_config | |
| # PrintMotd no | |
| # | |
| # 2. vim /etc/pam.d/login | |
| # # session optional pam_motd.so | |
| # |