@durairaj Have not used ipower panel before.
But you will need to add an entry in the crontab for Laravel's Scheduler to run the job.
Check out the documentation here: https://laravel.com/docs/8.x/scheduling#running-the-scheduler
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Cannot run schedule job in ipower panel server
URL to Access: http://rrawfood.ipower.com/public_html/shop/artisan schedule:run
Run this job:
Daily on Minute 1 of Every Hour we set it on ipower panel server but not working
/// kernal.php
protected function schedule(Schedule $schedule)
{
$schedule->command('command:cancelsubscription')
->everyMinute();
}
//console/commands/cancelsubscription
public function handle()
{
$data[ 'name' ] = 'durair';
$data[ 'message' ] = 'teseting';
Test::create( $data );
}
how to run on schedule job on ipower panel , pls help me
@durairaj You can check with ipower panel's support. Or, checking their support docs should help.
Please or to participate in this conversation.