!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/storage/framework/views/   drwxr-xr-x
Free 13.12 GB of 57.97 GB (22.63%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     7fc9ffea3bb208cf6c3131195e6002c9c20d2699.php (5.99 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('head'); ?>
<?php 
echo $__env->make('layouts.partials.headersection',['title'=>'Cron Jobs'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
<?php $__env
->stopSection(); ?>
<?php $__env
->startSection('content'); ?>

<div class="row">
    <div class="col-12">            
        <div class="card">
            <div class="card-header">
                <h4><i class="fas fa-circle"></i> <?php echo e(__('Make Expired Membership')); ?> <code><?php echo e(__('Once/day')); ?></code></h4>
                
                
            </div>
            <div class="card-body">
                <div class="code"><p>curl -s <?php echo e(url('/cron/make-expire-order')); ?></p></div>
            </div>
        </div>
    </div>

    <div class="col-12">            
        <div class="card">
            <div class="card-header">
                <h4><i class="fas fa-circle"></i> <?php echo e(__('Membership Will Expiration Alert')); ?> <code><?php echo e(__('Once/day')); ?></code></h4>
            </div>
            <div class="card-body">
                <div class="code"><p>curl -s <?php echo e(url('/cron/make-alert-before-expire-plan')); ?></p></div>
            </div>
        </div>
    </div>
    <div class="col-12">            
        <div class="card">
            <div class="card-header">
                <h4><i class="fas fa-circle"></i> <?php echo e(__('Reset Offer Product Price')); ?> <code><?php echo e(__('Once/day')); ?></code></h4>
            </div>
            <div class="card-body">
                <div class="code"><p>curl -s <?php echo e(url('/cron/reset_product_price')); ?></p></div>
            </div>
        </div>
    </div>
    <div class="col-12">            
        <div class="card">
            <div class="card-header">
                <h4><i class="fas fa-circle"></i> <?php echo e(__('Send Mail with Queue')); ?></h4>
                
            </div>
            <div class="card-body">
                <span><?php echo e(__('Note')); ?>: <span class="text-danger"><?php echo e(__('You Need Add This Command In Your Supervisor And Also Make QUEUE_MAIL On From System Settings To Mail Configuration.')); ?></span></span><br>
                <span><?php echo e(__('Command Path')); ?>: <span class="text-danger"><?php echo e(base_path()); ?></span></span>
                <div class="code"><p><?php echo e(__('php artisan queue:work')); ?></p></div>

                
            </div>
        </div>
    </div>


    <div class="col-12">            
        <div class="card">
            <div class="card-header">
                <h4><?php echo e(__('Customize Cron Jobs')); ?></h4>
            </div>
            <form class="basicform" method="post" accept="<?php echo e(route('admin.cron.store')); ?>">
                <?php echo csrf_field(); ?>
            
            <div class="card-body">
                <div class="row">
                    
                    

                    <div class="col-sm-6">
                        <div class="form-group">
                            <label><?php echo e(__('Make Alert To Customer The Subscription Will Ending Soon')); ?></label><br>
                            <span><?php echo e(__('Note:')); ?> <span class="text-danger"><small><?php echo e(__('It Will Send Notification Everyday Within The Selected Days')); ?></small></span></span>
                            <select class="form-control" name="send_mail_to_will_expire_within_days">
                                <option value="7" <?php if($info->send_mail_to_will_expire_within_days==7): ?>  selected=""  <?php endif; ?>><?php echo e(__('7 Days')); ?></option>
                                <option value="6" <?php if($info->send_mail_to_will_expire_within_days==6): ?>  selected=""  <?php endif; ?>><?php echo e(__('6 Days')); ?></option>
                                <option value="5" <?php if($info->send_mail_to_will_expire_within_days==5): ?>  selected=""  <?php endif; ?>><?php echo e(__('5 Days')); ?></option>
                                <option value="4" <?php if($info->send_mail_to_will_expire_within_days==4): ?>  selected=""  <?php endif; ?>><?php echo e(__('4 Days')); ?></option>
                                <option value="3" <?php if($info->send_mail_to_will_expire_within_days==3): ?>  selected=""  <?php endif; ?>><?php echo e(__('3 Days')); ?></option>
                                <option value="2" <?php if($info->send_mail_to_will_expire_within_days==2): ?>  selected=""  <?php endif; ?>><?php echo e(__('2 Days')); ?></option>
                                <option value="1" <?php if($info->send_mail_to_will_expire_within_days==1): ?>  selected=""  <?php endif; ?>><?php echo e(__('1 Days')); ?></option>
                                
                            </select>
                        </div>
                    </div>
                
                    <div class="col-sm-6">
                        <div class="form-group">
                            <label><?php echo e(__('Auto Approve To Plan After Successfull Payment')); ?></label>

                            <select class="form-control mt-4" name="auto_approve">
                                <option value="yes" <?php if($info->auto_approve == 'yes'): ?> selected="" <?php endif; ?>><?php echo e(__('Yes')); ?></option>
                                <option value="no" <?php if($info->auto_approve == 'no'): ?> selected="" <?php endif; ?>><?php echo e(__('No')); ?></option>
                            </select>
                        </div>
                    </div>
                    <div class="col-sm-6">
                        <div class="form-group">
                            <label><?php echo e(__('Alert Message Before Expire The Subscription')); ?> <small>(HTML supported)</small></label>

                            <textarea name="alert_message" class="form-control"><?php echo e($info->alert_message); ?></textarea>

                        </div>
                    </div>
                    <div class="col-sm-6">
                        <div class="form-group">
                            <label><?php echo e(__('Alert Message After Expire The Subscription')); ?> <small>(HTML supported)</small></label>

                            <textarea name="expire_message" class="form-control"><?php echo e($info->expire_message); ?></textarea>

                        </div>
                    </div>
                    <div class="col-sm-6">
                        <div class="form-group">
                            <label><?php echo e(__('Alert Message After Expire The Trial Subscription')); ?> <small>(HTML supported)</small></label>

                            <textarea name="trial_expired_message" class="form-control"><?php echo e($info->trial_expired_message); ?></textarea>

                        </div>
                    </div>
                    <div class="col-sm-12">
                        <button class="btn btn-primary basicbtn" type="submit"><?php echo e(__('Save Changes')); ?></button>
                    </div>
                    </form>    
                </div>
            </div>
        </div>
    </div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env
->startPush('js'); ?>

<script src="<?php echo e(asset('assets/js/form.js')); ?>"></script>
<?php $__env->stopPush(); ?>
<?php 
echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /Volumes/my-works/laravel/dokans/script/resources/views/admin/cron/index.blade.php ENDPATH**/ ?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0059 ]--