uawdijnntqw1x1x1
IP : 216.73.217.47
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
snap
/
..
/
.
/
mail
/
..
/
www
/
yapwebtv.com
/
app
/
Console
/
Kernel.php
/
/
<?php namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [ Commands\NewsletterCron::class, Commands\VideoConverterCron::class, Commands\SchedulePostCron::class, Commands\QueueWorkCron::class, Commands\RssImportCron::class, ]; /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { // $schedule->command('optimize:clear') // ->emailOutputTo('ex4useonly@gmail.com'); // $schedule->command('inspire') // ->hourly(); $schedule->command('newsletter:cron')->withoutOverlapping()->everyFiveMinutes(); $schedule->command('videoConverter:cron')->withoutOverlapping()->everyThirtyMinutes(); $schedule->command('rssImport:cron')->withoutOverlapping()->daily(); $schedule->command('schedulepost:cron')->withoutOverlapping()->everyMinute(); //$schedule->command('queue:cron')->withoutOverlapping()->everyMinute(); // */5 * * * * /usr/local/bin/php /home/project_path/artisan newsletter:cron >> /dev/null 2>&1 // 0,30 * * * * /usr/local/bin/php /home/project_path/artisan videoConverter:cron >> /dev/null 2>&1 // * * * * * /usr/local/bin/php /home/project_path/artisan schedulepost:cron >> /dev/null 2>&1 } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }
/var/snap/.././mail/../www/yapwebtv.com/app/Console/Kernel.php