User contributions for Admin
From AWVVO
Jump to navigationJump to search
7 April 2025
- 06:3906:39, 7 April 2025 diff hist +864 m Laravel Apache →Install Apache2 current
- 06:2606:26, 7 April 2025 diff hist +208 N Laravel Apache Created page with "== Install Apache2 == <syntaxhighlight lang="bash" line highlight="" copy> sudo apt install apache2 sudo systemctl start apache2 sudo systemctl enable apache2 sudo systemctl status apache2 </syntaxhighlight>"
6 April 2025
- 11:3611:36, 6 April 2025 diff hist +6 m Find file →Powershell current
- 11:3611:36, 6 April 2025 diff hist +6 m Find file →Powershell find string in file
- 11:3611:36, 6 April 2025 diff hist +292 m Find file →Powershell
5 April 2025
- 17:5717:57, 5 April 2025 diff hist +533 m Laravel - mongodb →Create unique index current
- 14:3714:37, 5 April 2025 diff hist +36 m Laravel - mongodb →Create unique index
- 14:3314:33, 5 April 2025 diff hist +767 m Laravel - mongodb →Model
- 14:0914:09, 5 April 2025 diff hist −6 m Laravel - mongodb →Model
- 13:5613:56, 5 April 2025 diff hist +12 m Laravel - mongodb →Settings in .env
- 13:5613:56, 5 April 2025 diff hist −153 m Laravel - mongodb →Install dependency
- 13:5513:55, 5 April 2025 diff hist +573 m Laravel - mongodb →Settings in .env
- 13:3813:38, 5 April 2025 diff hist +322 N Laravel - mongodb Created page with "== Install mongodb dependency == <syntaxhighlight lang="bash" copy line highlight="0"> composer require mongodb/laravel-mongodb </syntaxhighlight> == Settings in .env == <syntaxhighlight lang="yaml" copy line highlight="0"> MONGODB_URI="mongodb+srv://..." MONGODB_DATABASE="demo" DB_CONNECTION=mongodb </syntaxhighlight>"
29 March 2025
- 18:5918:59, 29 March 2025 diff hist +38 m Laravel logging →View log current
- 18:5018:50, 29 March 2025 diff hist +138 m Httpie →Installation current
- 18:4618:46, 29 March 2025 diff hist −13 m PHP configuration →Turn of X-Powered-BY header current
- 18:4418:44, 29 March 2025 diff hist +145 N PHP configuration Created page with "== Turn of X-Powered-BY header == <syntaxhighlight lang="ini" copy line highlight="0"> # php.ini expose_php = Off </syntaxhighlight>aText Premium"
- 18:3818:38, 29 March 2025 diff hist +28 m Httpie →Installation
- 18:3218:32, 29 March 2025 diff hist +393 N Httpie Created page with "== Installation == <syntaxhighlight lang="bash" copy line highlight="0"> curl -SsL https://packages.httpie.io/deb/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/httpie.gpg echo "deb [arch=amd64 signed-by=/usr/share/keyrings/httpie.gpg] https://packages.httpie.io/deb ./" | sudo tee /etc/apt/sources.list.d/httpie.list > /dev/null sudo apt update sudo apt install httpie </syntaxhighlight>"
- 16:3916:39, 29 March 2025 diff hist +303 m Laravel logger →Examples current
- 16:3816:38, 29 March 2025 diff hist +975 N Laravel logger Created page with "== Custom logger == <syntaxhighlight lang="php" copy line highlight="0"> <?php namespace App\Util; use Illuminate\Support\Facades\Log; class Logger { public static function info(...$args): void { $trace = collect(debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)) ->first(fn ($t) => isset($t['file']) && str_contains($t['file'], base_path('app'))); $location = $trace ? basename($trace['file']) . ':' . ($trace['line'] ?? '') ...."
- 16:1616:16, 29 March 2025 diff hist +1,777 N Laravel middleware Created page with "== Create middleware == <syntaxhighlight lang="php" copy line highlight="0"> php artisan make:middleware EnsureTokenIsValid </syntaxhighlight> == Middleware == <syntaxhighlight lang="php" copy line highlight="0"> <?php namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Log; use Symfony\Component\HttpFoundation\Response; class EnsureTokenIsValid { /** * Handle an incoming request. * * @param \Clo..." current
- 12:4412:44, 29 March 2025 diff hist +82 m Laravel nginx →Enable nginx config current
- 12:4312:43, 29 March 2025 diff hist +123 m Laravel nginx →Create nginx config file
- 12:3812:38, 29 March 2025 diff hist +333 m Laravel nginx →Create config file
- 12:2912:29, 29 March 2025 diff hist +625 m Laravel nginx →Create config file
- 12:2812:28, 29 March 2025 diff hist +97 N Laravel nginx Created page with "== Create config file == <syntaxhighlight lang="php" copy line highlight="0"> </syntaxhighlight>"
- 11:2611:26, 29 March 2025 diff hist +220 N Laravel web.php Created page with "== web.php == <syntaxhighlight lang="php" copy line highlight="0"> <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\IndexController; Route::resource('/', IndexController::class); </syntaxhighlight>" current
- 10:2210:22, 29 March 2025 diff hist +463 N Laravel template Created page with "== Generate app key == <syntaxhighlight lang="bash" copy line highlight="0"> php artisan key:generate </syntaxhighlight> == Set database settings == <syntaxhighlight lang="php" copy line highlight="0"> DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=mydb DB_USERNAME=root DB_PASSWORD= </syntaxhighlight> == Set rotating log files == <syntaxhighlight lang="ini" copy line highlight="0"> # .env LOG_CHANNEL=daily LOG_DAILY_DAYS=1 </syntaxhighlight>" current
- 10:1910:19, 29 March 2025 diff hist 0 m Laravel →Use rotating logging current
- 10:1810:18, 29 March 2025 diff hist +142 m Laravel →Create app key
- 10:1210:12, 29 March 2025 diff hist +120 m Laravel →Create new application
- 08:1008:10, 29 March 2025 diff hist +35 m GIT →Add current folder to existing github repo current
- 08:0208:02, 29 March 2025 diff hist +9 m GIT →Add current folder to existing github repo
28 March 2025
- 18:1118:11, 28 March 2025 diff hist +12 m Mysql →Installation current
- 18:0918:09, 28 March 2025 diff hist +263 m GIT →Git clone using classic token
- 18:0718:07, 28 March 2025 diff hist +209 m Mysql →Create user
27 March 2025
- 10:4510:45, 27 March 2025 diff hist +28 m GIT →Add current folder to existing github repo
- 10:4510:45, 27 March 2025 diff hist +199 m GIT No edit summary
24 March 2025
- 16:2916:29, 24 March 2025 diff hist +71 m Linux development No edit summary current
- 16:0516:05, 24 March 2025 diff hist +264 m Linux development No edit summary
- 15:5415:54, 24 March 2025 diff hist 0 N File:Install tools.sh No edit summary current
- 15:3815:38, 24 March 2025 diff hist +31 N Linux development Created page with "Development installation script"
- 15:1015:10, 24 March 2025 diff hist +2,016 m Multipass No edit summary current
- 15:0815:08, 24 March 2025 diff hist −1 m Multipass →Deletee a instance
- 15:0815:08, 24 March 2025 diff hist +175 m Multipass No edit summary
- 15:0015:00, 24 March 2025 diff hist +3 m Multipass No edit summary
- 14:5914:59, 24 March 2025 diff hist +385 N Multipass Created page with "Multipass is a lightweight VM manager developed by Canonical that lets you easily run Ubuntu instances on macOS, Windows, and Linux, ideal for development and testing. Example to launch Ubuntu 24.04 LTS with 1 CPU and 2GB memory: == Launch an instance == <syntaxhighlight lang="php" copy line highlight="0"> multipass launch 24.04 --name ubuntu24 --cpus 1 --mem 2G </syntaxhighlight>"
22 March 2025
- 08:3708:37, 22 March 2025 diff hist +4 m AWVVO:About No edit summary current
- 08:3608:36, 22 March 2025 diff hist +7 m AWVVO:About No edit summary