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
http://aardonyx.bid/ |
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
Loading composer repositories with package information | |
Installing dependencies (including require-dev) from lock file | |
Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. Run update to update them. | |
Your requirements could not be resolved to an installable set of packages. | |
Problem 1 | |
- Installation request for doctrine/annotations v1.6.0 -> satisfiable by doctrine/annotations[v1.6.0]. | |
- doctrine/annotations v1.6.0 requires php ^7.1 -> your PHP version (7.0.30) does not satisfy that requirement. | |
Problem 2 | |
- Installation request for doctrine/inflector v1.3.0 -> satisfiable by doctrine/inflector[v1.3.0]. |
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
Laravel 5.4: Specified key was too long error | |
Laravel 5.4 made a change to the default database character set, and it’s now utf8mb4 which includes support for storing emojis. This only affects new applications and as long as you are running MySQL v5.7.7 and higher you do not need to do anything. | |
For those running MariaDB or older versions of MySQL you may hit this error when trying to run migrations: | |
[Illuminate\Database\QueryException] | |
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table users add unique users_email_unique(email)) | |
[PDOException] | |
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes |
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
Laravel 5.4: Specified key was too long error | |
Laravel 5.4 made a change to the default database character set, and it’s now utf8mb4 which includes support for storing emojis. This only affects new applications and as long as you are running MySQL v5.7.7 and higher you do not need to do anything. | |
For those running MariaDB or older versions of MySQL you may hit this error when trying to run migrations: | |
[Illuminate\Database\QueryException] | |
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table users add unique users_email_unique(email)) | |
[PDOException] | |
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes |
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
How to run Laravel from root directory, not from public |
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
To add this license key you need to complete some step -> | |
add this line in C:\Windows\System32\drivers\etc\hosts | |
127.0.0.1 www.sublimetext.com | |
127.0.0.1 sublimetext.com | |
127.0.0.1 sublimehq.com | |
127.0.0.1 license.sublimehq.com | |
127.0.0.1 45.55.255.55 | |
127.0.0.1 45.55.41.223 |
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
Uncaught Error: cannot call methods on tooltip prior to initialization; attempted to call method 'disable' | |
to prevent this error, | |
just put your jquery-ui.js before bootstrap.min.js |
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
MethodNotAllowedHttpException clearly means the route is not found, means it's missing in the collection OR you declared it differently. |
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
Installation -> | |
First, pull in the package through Composer. | |
composer require uxweb/sweet-alert | |
If using laravel < 5.5 include the service provider and alias within config/app.php. | |
'providers' => [ | |
UxWeb\SweetAlert\SweetAlertServiceProvider::class, | |
]; |
OlderNewer