Main public logs
From AWVVO
Jump to navigationJump to search
Combined display of all available logs of AWVVO. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 06:26, 7 April 2025 Admin talk contribs created page 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>")
- 13:38, 5 April 2025 Admin talk contribs created page 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>")
- 18:44, 29 March 2025 Admin talk contribs created page 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:32, 29 March 2025 Admin talk contribs created page 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:38, 29 March 2025 Admin talk contribs created page 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:16, 29 March 2025 Admin talk contribs created page 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...")