-
Run This to get Collation Path
SHOW VARIABLES LIKE 'character_sets_dir'; -
in
/collation/path/Index.xmladd this to<charset name="utf8">section
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
| <!DOCTYPE html> | |
| <html dir="rtl"> | |
| <title>W3.CSS Template</title> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> | |
| <link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css"> | |
| <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
| <style> |
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
| <html> | |
| <body> | |
| <!-- really dirty! this is just a test drive ;) --> | |
| <script type="text/javascript" src="https://raw.github.com/mozilla/pdf.js/gh-pages/build/pdf.js"></script> | |
| <script type="text/javascript"> | |
| function renderPDF(url, canvasContainer, options) { | |
| var options = options || { scale: 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
| <?php | |
| class myPDO { | |
| var $driver = 'mysql'; | |
| var $host = 'localhost'; | |
| var $dbname = 'database'; | |
| var $username = 'username'; | |
| var $password = 'password'; | |
| var $charset = 'utf8'; |
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
| <?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
| <ew-language date="2019/08/06" version="16.0.0" id="ar" name="Arabic" desc="Arabic" author="saleh alsharif."> | |
| <!-- | |
| *** Important Notes: | |
| 1. Language ID should follow: https://developers.google.com/recaptcha/docs/language, | |
| 2. Locale settings are placed in a separate locale files under the "locales" folder, | |
| 3. Locale files must be named with language ID of language file (and converted to lowercase), e.g. en.json, | |
| 4. Locale files are ALWAYS used, regardless of whether the project is single language or multiple language. | |
| --> | |
| <global> |
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
| mysql -u root -p -e "show databases" -s --skip-column-names |
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
| for /f %%x in ('mysql.exe -u root -p -e "show databases" -s --skip-column-names') do ( | |
| mysqldump.exe -u root --databases %%x > .\databases\%%x.sql | |
| ) |
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
| 'hMailServer Create User Accounts: | |
| '================================= | |
| ' | |
| 'This also requires a CSV file called Users.csv in the same directory as the script. The CSV is in the following format: | |
| 'username,password,domain | |
| Option Explicit | |
| Dim obBaseApp | |
| Dim objFSO |
It turns out that some kind hearted people already set up wildcarded domains for you already. You can use any top level domain below and any subdomain of these and they will always resolve back to 127.0.0.1 (your local machine). Here's the list of ones I know about. Let me know if there are more!
*.fuf.me- Managed by @fidian; it will always point to localhost for IPv4 and IPv6localtest.me- Also has an SSL cert - see http://readme.localtest.me127-0-0-1.org.ukvcap.meyoogle.comlvh.me
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
| RewriteEngine on | |
| RewriteCond %{HTTP_COOKIE} !mycookie=logged_in | |
| RewriteRule ^ - [F] |
OlderNewer