Step 1
If any version of postman is installed we need to remove it
sudo rm -rf /opt/Postman
Step 2
<?php | |
$urls[] = array( | |
"name" => "Domain 1 Name", | |
"url" => "https://domain.com" | |
); | |
$urls[] = array( | |
"name" => "Domain 2 Name", | |
"url" => "https://subdomain.domain.org" |
// HTML | |
<div class="col-md-12"> | |
<div class="form-group" wire:ignore> | |
<label for="desciption">Deskripsi</label> | |
<textarea type="text" input="description" id="summernote" class="form-control summernote">{{ $description }}</textarea> | |
</div> | |
</div> | |
// JAVASCRIPT |
error Failed to install the app. Make sure you have the Android development environment set up: https://facebook.github.io/react-native/docs/getting-started.html#android-development-environment. Run CLI with --verbose flag for more details. Error: spawnSync ./gradlew EACCES at Object.spawnSync (internal/child_process.js:1045:20) at spawnSync (child_process.js:597:24) at execFileSync (child_process.js:624:15) at runOnAllDevices | |
Soluton: chmod 755 android/gradlew |
<?php | |
class CurencyLang | |
{ | |
static function toEnglish($number) | |
{ | |
$hyphen = '-'; | |
$conjunction = ' and '; | |
$separator = ', '; | |
$negative = 'negative '; |
cd /home/forge/domain | |
# turn on maintenance mode | |
#php artisan down | |
git fetch --all | |
git reset --hard origin/master | |
composer install --no-interaction --prefer-dist --optimize-autoloader | |
( flock -w 10 9 || exit 1 |
# | |
# REQUIRES: | |
# - server (the forge server instance) | |
# - event (the forge event instance) | |
# - sudo_password (random password for sudo) | |
# - db_password (random password for database user) | |
# - callback (the callback URL) | |
# |