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 | |
| // Paths and configurations | |
| $repoPath = '/home/sites/37b/3/396f39af60/public_html'; | |
| $wpConfigPath = $repoPath . '/wp-config.php'; | |
| $dbBackupPath = $repoPath . '/backups/galenko.sql'; | |
| // Load database configuration from wp-config.php | |
| $config = file_get_contents($wpConfigPath); | |
| preg_match("/define\('DB_NAME', '(.+?)'\);/", $config, $dbNameMatch); |
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
| select { | |
| background: #fff; | |
| border: 1px solid #eee; | |
| border-radius: 3px; | |
| padding: 3px 22px 3px 3px; | |
| background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'%3E%3C/path%3E%3C/svg%3E"); | |
| background-position: calc(100% - 3px) 50%; | |
| background-repeat: no-repeat; | |
| background-size: 16px; | |
| -webkit-appearance: none; |