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
find . -mindepth 2 -type f -print -exec mv {} . \; |
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
<style type="text/css"> | |
.row { | |
display: table; | |
} | |
.row [class*="col-"] { | |
float: none; | |
display: table-cell; | |
vertical-align: top; | |
} | |
</style> |
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
if(recaptchaRegister !== null && recaptchaRegister !== 'undefined'){ | |
var resp = grecaptcha.getResponse(recaptchaRegister); | |
if(resp === null || resp === ""){ | |
alert('Captcha not completed'); | |
} | |
} | |
} |
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
location /SUBFOLDER/ { | |
index index.php; | |
try_files $uri $uri/ /SUBFOLDER/index.php?$args; | |
} |
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
if (!-d $request_filename) { | |
rewrite ^/(.+)/$ /$1 permanent; | |
} |