<?php
if($handle = opendir('.')) {
while(FALSE !== ($file = readdir($handle))) {
if($file !== '.' && $file !== '..') {
$list .= '<li><a href="' . $file . '">' . $file . '</a></li>';
}
}
closedir($handle);
}
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 | |
| VERSION_MODE=$1 | |
| ENV_TAG_PREFIX=v | |
| # "major": 1, | |
| # "minor": 0, | |
| # "revision": 0, | |
| # "buildNumber": 1 | |
| if [ "$VERSION_MODE" = "" ] ; then | |
| VERSION_MODE="buildNumber" | |
| fi |
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 | |
| $policeStations = ['Dhaka','Dhamrai','Dhanmondi','Gulshan','Jatrabari','Joypara','Keraniganj','Khilgaon','Khilkhet','Lalbag','Mirpur','Mohammadpur','Motijheel','Nawabganj','Kalabagan','Palton','Ramna','Sabujbag','Savar','Sutrapur','Tejgaon','Tejgaon Industrial Area','Uttara','Alfadanga','Bhanga','Boalmari','Charbhadrasan','Faridpur Sadar','Madukhali','Nagarkanda','Sadarpur','Shriangan','Gazipur Sadar','Kaliakaar','Kaliganj','Kapashia','Monnunagar','Turag','Sreepur','Sripur','Gopalganj Sadar','Kashiani','Kotalipara','Maksudpur','Muksudpur','Tungipara','Bajitpur','Kuliarchar','Bhairob','Hossenpur','Itna','Karimganj','Katiadi','Kishoreganj Sadar','Mithamoin','Nikli','Ostagram','Pakundia','Tarial','Barhamganj','Kalkini','Madaripur Sadar','Rajoir','Doulatpur','Ghior','Lechhraganj','Manikganj Sadar','Saturia','Shibloya','Singari','Gajaria','Lohajong','Munshiganj Sadar','Sirajdikhan','Sreenagar','Tangibari','Araihazar','Sonargaon','Baidder Bazar','Bandar','Fatullah','Narayanganj Sadar','Rupganj','Siddirganj', |
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
| Dhaka | |
| Dhamrai | |
| Dhanmondi | |
| Gulshan | |
| Jatrabari | |
| Joypara | |
| Keraniganj | |
| Khilgaon | |
| Khilkhet | |
| Lalbag |
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] | |
| port = 3306 | |
| socket = /var/run/mysqld/mysqld.sock | |
| default-character-set = utf8mb4 | |
| [client] | |
| default-character-set = utf8mb4 | |
| [mysqld] | |
| # Required Settings |
Solution for: https://laragon.org
If you are setting up MySQL v8.x for the first time for Laragon, you will see that MySQL failed to load and asking for an upgrade the MySQL. Although showing user table not found, plugins table not found errors, etc.
To fix the problem, follow the steps accordingly.
- Delete Laragon MySQL
datadirectory. If you have already existeddatabases, make sure toexportfirst. Location path example:C:\laragon\datawhere the folder containsmysql-8. Delete themysql-8folder. You can also delete themysqlfolder if not needed. - Access to the MySQL BIN folder or add the MySQL BIN folder to the windows system environment path. Location example:
C:\laragon\bin\mysql\mysql-8.0.27-winx64\bin. Open a terminal or navigate the location from Laragon's built-in terminal.
/ip dhcp-server network set 0 dns-server=1.1.1.1,1.0.0.1Demonstration with Cloudflare's 1.1.1.1 DNS.
Please note, set 0 means applying the DNS Server change for interface 1. If you have multiple DHCP Server interface, you will have to mention the number of the interface. Normally starts with 0.
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
| # C:\Users\<UserName>\.wslconfig | |
| [wsl2] | |
| memory=8GB | |
| processors=4 | |
| swap=8GB | |
| debugConsole=true |
OlderNewer