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 RewriteRule .* good.html |
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
$ drush sql-dump > test.sql | |
$ drush sql-drop -y && drush sql-cli < test.sql | |
Do you really want to drop all tables in the database sites/default/files/.ht.sqlite? (y/n): y | |
Error: near line 1837: no such collation sequence: NOCASE_UTF8 | |
Error: near line 1843: no such table: users | |
Error: near line 1844: no such table: users | |
Error: near line 1845: no such collation sequence: NOCASE_UTF8 | |
Error: near line 1863: no such table: users_field_data | |
Error: near line 1864: no such table: users_field_data | |
Error: near line 1955: no such collation sequence: NOCASE_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
{ | |
"require": { | |
"drush/drush": "dev-master" | |
}, | |
"minimum-stability": "dev" | |
} |
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
{ | |
"require": { | |
"drush/drush": "^8.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
Exception trace: | |
() at phar:///home/xubuntu/composer.phar/src/Composer/Util/RemoteFilesystem.php:343 | |
Composer\Util\RemoteFilesystem->get() at phar:///home/xubuntu/composer.phar/src/Composer/Util/RemoteFilesystem.php:99 | |
Composer\Util\RemoteFilesystem->getContents() at phar:///home/xubuntu/composer.phar/src/Composer/Repository/ComposerRepository.php:645 | |
Composer\Repository\ComposerRepository->fetchFile() at phar:///home/xubuntu/composer.phar/src/Composer/Repository/ComposerRepository.php:462 | |
Composer\Repository\ComposerRepository->loadRootServerFile() at phar:///home/xubuntu/composer.phar/src/Composer/Repository/ComposerRepository.php:256 | |
Composer\Repository\ComposerRepository->hasProviders() at phar:///home/xubuntu/composer.phar/src/Composer/DependencyResolver/Pool.php:99 | |
Composer\DependencyResolver\Pool->addRepository() at phar:///home/xubuntu/composer.phar/src/Composer/Installer.php:402 | |
Composer\Installer->doInstall() at phar:///home/xubuntu/composer.phar/src/Composer/Installer.php:228 | |
Composer\Inst |
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 | |
$arrays = array( | |
array( | |
'name'=>'foo', | |
), | |
array( | |
'name'=>'bar', | |
), | |
array( | |
'name'=>'foo', |
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 | |
$input = array( | |
array( | |
'category1' => 'foo', | |
'category2' => 'bar', | |
'value' => 5, | |
), | |
array( |
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
version: '2' | |
services: | |
web: | |
image: drupal:7.43-apache | |
volumes: | |
- .:/var/www/html | |
links: | |
- "db:mysql" | |
ports: | |
- "80:80" |
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
$ docker-compose up | |
ERROR: In file './docker-compose.yml' service 'version' doesn't have any configuration options. All top level keys in your docker-compose.yml must map to a dictionary of configuration options. |
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
vendor | |
composer.lock | |
example.log |