[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: 1d78e8598b3c8d2371ff185362e18b5b.php
<?php $__env->startSection('content'); ?> <div class="row"> <div class="col-sm-3"> <ul class="nav flex-column nav-tabs settings-tab mb-4" role="tablist"> <li class="nav-item"><a class="nav-link active" data-toggle="tab" href="#general"><i class="fas fa-cog"></i><span><?php echo e(_lang('General Settings')); ?></span></a></li> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#system"><i class="fas fa-tools"></i><span><?php echo e(_lang('System Settings')); ?></span></a></li> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#currency_settings"><i class="fas fa-pound-sign"></i><span><?php echo e(_lang('Currency Settings')); ?></span></a></li> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#email"><i class="far fa-envelope"></i><span><?php echo e(_lang('Email Settings')); ?></span></a></li> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#recaptcha"><i class="far fa-check-circle"></i><span><?php echo e(_lang('Google Recaptcha V3')); ?></span></a></li> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#cron_jobs"><i class="far fa-clock"></i><span><?php echo e(_lang('Cron Jobs')); ?></span></a></li> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#logo"><i class="fas fa-tint"></i><span><?php echo e(_lang('Logo and Favicon')); ?></span></a></li> <li class="nav-item"><a class="nav-link" data-toggle="tab" href="#cache"><i class="fas fa-server"></i><span><?php echo e(_lang('Cache Control')); ?></span></a></li> </ul> </div> <?php $settings = \App\Models\Setting::all(); ?> <div class="col-sm-9"> <div class="tab-content"> <div id="general" class="tab-pane active"> <div class="card"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('General Settings')); ?></span> </div> <div class="card-body"> <form method="post" class="settings-submit params-panel" autocomplete="off" action="<?php echo e(route('settings.update_settings','store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Company Name')); ?></label> <input type="text" class="form-control" name="company_name" value="<?php echo e(get_setting($settings, 'company_name')); ?>" required> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Site Title')); ?></label> <input type="text" class="form-control" name="site_title" value="<?php echo e(get_setting($settings, 'site_title')); ?>" required> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Phone')); ?></label> <input type="text" class="form-control" name="phone" value="<?php echo e(get_setting($settings, 'phone')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Email')); ?></label> <input type="email" class="form-control" name="email" value="<?php echo e(get_setting($settings, 'email')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Timezone')); ?></label> <select class="form-control select2" name="timezone" required> <option value=""><?php echo e(_lang('-- Select One --')); ?></option> <?php echo e(create_timezone_option(get_setting($settings, 'timezone'))); ?> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Language')); ?></label> <select class="form-control select2" name="language"> <option value=""><?php echo e(_lang('-- Select One --')); ?></option> <?php echo e(load_language( get_setting($settings, 'language') )); ?> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Address')); ?></label> <textarea class="form-control" name="address"><?php echo e(get_setting($settings, 'address')); ?></textarea> </div> </div> <div class="col-md-12 mt-2"> <div class="form-group"> <button type="submit" class="btn btn-primary"><i class="ti-check-box mr-2"></i><?php echo e(_lang('Save Settings')); ?></button> </div> </div> </div> </form> </div> </div> </div> <div id="system" class="tab-pane"> <div class="card"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('System Settings')); ?></span> </div> <div class="card-body"> <form method="post" class="settings-submit params-panel" autocomplete="off" action="<?php echo e(route('settings.update_settings','store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Currency')); ?></label> <select class="form-control select2" name="currency" required> <option value=""><?php echo e(_lang('Select One')); ?></option> <?php echo e(get_currency_list(get_setting($settings, 'currency'))); ?> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Country')); ?></label> <select class="form-control select2" name="country" required> <option value=""><?php echo e(_lang('Select One')); ?></option> <?php echo e(get_country_list(get_setting($settings, 'country'))); ?> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Backend Direction')); ?></label> <select class="form-control" name="backend_direction" required> <option value="ltr" <?php echo e(get_setting($settings, 'backend_direction') == 'ltr' ? 'selected' : ''); ?>><?php echo e(_lang('LTR')); ?></option> <option value="rtl" <?php echo e(get_setting($settings, 'backend_direction') == 'rtl' ? 'selected' : ''); ?>><?php echo e(_lang('RTL')); ?></option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Date Format')); ?></label> <select class="form-control auto-select" name="date_format" data-selected="<?php echo e(get_setting($settings, 'date_format','Y-m-d')); ?>" required> <option value="Y-m-d"><?php echo e(date('Y-m-d')); ?></option> <option value="d-m-Y"><?php echo e(date('d-m-Y')); ?></option> <option value="d/m/Y"><?php echo e(date('d/m/Y')); ?></option> <option value="m-d-Y"><?php echo e(date('m-d-Y')); ?></option> <option value="m.d.Y"><?php echo e(date('m.d.Y')); ?></option> <option value="m/d/Y"><?php echo e(date('m/d/Y')); ?></option> <option value="d.m.Y"><?php echo e(date('d.m.Y')); ?></option> <option value="d/M/Y"><?php echo e(date('d/M/Y')); ?></option> <option value="d/M/Y"><?php echo e(date('M/d/Y')); ?></option> <option value="d M, Y"><?php echo e(date('d M, Y')); ?></option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Time Format')); ?></label> <select class="form-control auto-select" name="time_format" data-selected="<?php echo e(get_setting($settings, 'time_format',24)); ?>" required> <option value="24"><?php echo e(_lang('24 Hours')); ?></option> <option value="12"><?php echo e(_lang('12 Hours')); ?></option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Member Sign Up')); ?></label> <select class="form-control" name="member_signup" required> <option value="0" <?php echo e(get_setting($settings, 'member_signup') == '0' ? 'selected' : ''); ?>><?php echo e(_lang('Disabled')); ?></option> <option value="1" <?php echo e(get_setting($settings, 'member_signup') == '1' ? 'selected' : ''); ?>><?php echo e(_lang('Enabled')); ?></option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Email Verification')); ?></label> <select class="form-control" name="email_verification" required> <option value="0" <?php echo e(get_setting($settings, 'email_verification') == '0' ? 'selected' : ''); ?>><?php echo e(_lang('Disabled')); ?></option> <option value="1" <?php echo e(get_setting($settings, 'email_verification') == '1' ? 'selected' : ''); ?>><?php echo e(_lang('Enabled')); ?></option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Landing Page')); ?></label> <select class="form-control" name="website_enable" required> <option value="1" <?php echo e(get_setting($settings, 'website_enable') == '1' ? 'selected' : ''); ?>><?php echo e(_lang('Enabled')); ?></option> <option value="0" <?php echo e(get_setting($settings, 'website_enable') == '0' ? 'selected' : ''); ?>><?php echo e(_lang('Disabled')); ?></option> </select> </div> </div> <div class="col-md-12 mt-2"> <div class="form-group"> <button type="submit" class="btn btn-primary"><i class="ti-check-box mr-2"></i><?php echo e(_lang('Save Settings')); ?></button> </div> </div> </div> </form> </div> </div> </div> <div id="currency_settings" class="tab-pane fade"> <div class="card"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('Currency Settings')); ?></span> </div> <div class="card-body"> <form method="post" class="settings-submit params-panel" autocomplete="off" action="<?php echo e(route('settings.update_settings','store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Currency Converter')); ?></label> <select class="form-control auto-select" data-selected="<?php echo e(get_setting($settings, 'currency_converter', 'manual')); ?>" name="currency_converter" id="currency_converter" required> <option value="manual"><?php echo e(_lang('Manual')); ?></option> <option value="apilayer"><?php echo e(_lang('ApiLayer')); ?></option> <option value="fixer"><?php echo e(_lang('Fixer')); ?></option> </select> </div> </div> <div class="col-md-6 fixer <?php echo e(get_setting($settings, 'currency_converter') != 'fixer' ? 'd-none' : ''); ?>"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Fixer API Key')); ?></label> <a href="https://fixer.io/" target="_blank" class="btn-link float-right"><?php echo e(_lang('GET API KEY')); ?></a> <input type="text" class="form-control" name="fixer_api_key" value="<?php echo e(get_setting($settings, 'fixer_api_key')); ?>"> </div> </div> <div class="col-md-6 apilayer <?php echo e(get_setting($settings, 'currency_converter') != 'apilayer' ? 'd-none' : ''); ?>"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Apilayer API Key')); ?></label> <a href="https://apilayer.com/" target="_blank" class="btn-link float-right"><?php echo e(_lang('GET API KEY')); ?></a> <input type="text" class="form-control" name="apilayer_api_key" value="<?php echo e(get_setting($settings, 'apilayer_api_key')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Currency Position')); ?></label> <select class="form-control auto-select" data-selected="<?php echo e(get_setting($settings, 'currency_position','left')); ?>" name="currency_position" required> <option value="left"><?php echo e(_lang('Left')); ?></option> <option value="right"><?php echo e(_lang('Right')); ?></option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Thousand Seperator')); ?></label> <input type="text" class="form-control" name="thousand_sep" value="<?php echo e(get_setting($settings, 'thousand_sep',',')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Decimal Seperator')); ?></label> <input type="text" class="form-control" name="decimal_sep" value="<?php echo e(get_setting($settings, 'decimal_sep','.')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Decimal Places')); ?></label> <input type="text" class="form-control" name="decimal_places" value="<?php echo e(get_setting($settings, 'decimal_places',2)); ?>"> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary"><?php echo e(_lang('Save Settings')); ?></button> </div> </div> </div> </form> </div> </div> </div> <div id="email" class="tab-pane fade"> <div class="card"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('Email Settings')); ?></span> </div> <div class="card-body"> <form method="post" class="settings-submit params-panel" autocomplete="off" action="<?php echo e(route('settings.update_settings','store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Mail Type')); ?></label> <select class="form-control niceselect wide" name="mail_type" id="mail_type" required> <option value="smtp" <?php echo e(get_setting($settings, 'mail_type')=="smtp" ? "selected" : ""); ?>><?php echo e(_lang('SMTP')); ?></option> <option value="sendmail" <?php echo e(get_setting($settings, 'mail_type')=="sendmail" ? "selected" : ""); ?>><?php echo e(_lang('Sendmail')); ?></option> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('From Email')); ?></label> <input type="text" class="form-control" name="from_email" value="<?php echo e(get_setting($settings, 'from_email')); ?>" required> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('From Name')); ?></label> <input type="text" class="form-control" name="from_name" value="<?php echo e(get_setting($settings, 'from_name')); ?>" required> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('SMTP Host')); ?></label> <input type="text" class="form-control smtp" name="smtp_host" value="<?php echo e(get_setting($settings, 'smtp_host')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('SMTP Port')); ?></label> <input type="text" class="form-control smtp" name="smtp_port" value="<?php echo e(get_setting($settings, 'smtp_port')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('SMTP Username')); ?></label> <input type="text" class="form-control smtp" autocomplete="off" name="smtp_username" value="<?php echo e(get_setting($settings, 'smtp_username')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('SMTP Password')); ?></label> <input type="password" class="form-control smtp" autocomplete="off" name="smtp_password" value="<?php echo e(get_setting($settings, 'smtp_password')); ?>"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('SMTP Encryption')); ?></label> <select class="form-control smtp" name="smtp_encryption"> <option value=""><?php echo e(_lang('None')); ?></option> <option value="ssl" <?php echo e(get_setting($settings, 'smtp_encryption')=="ssl" ? "selected" : ""); ?>><?php echo e(_lang('SSL')); ?></option> <option value="tls" <?php echo e(get_setting($settings, 'smtp_encryption')=="tls" ? "selected" : ""); ?>><?php echo e(_lang('TLS')); ?></option> </select> </div> </div> <div class="col-md-12 mt-2"> <div class="form-group"> <button type="submit" class="btn btn-primary"><i class="ti-check-box mr-2"></i><?php echo e(_lang('Save Settings')); ?></button> </div> </div> </div> </form> </div> </div> <div class="card mt-4"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('Send Test Email')); ?></span> </div> <div class="card-body"> <form action="<?php echo e(route('settings.send_test_email')); ?>" class="settings-submit params-panel" method="post"> <div class="row"> <?php echo csrf_field(); ?> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Email To')); ?></label> <input type="email" class="form-control" name="email_address" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Message')); ?></label> <textarea class="form-control" name="message" required></textarea> </div> </div> <div class="col-md-12 mt-2"> <div class="form-group"> <button type="submit" class="btn btn-primary"><i class="far fa-paper-plane"></i> <?php echo e(_lang('Send Test Email')); ?></button> </div> </div> </div> </form> </div> </div> </div> <div id="recaptcha" class="tab-pane fade"> <div class="card"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('GOOGLE RECAPTCHA V3')); ?></span> </div> <div class="card-body"> <form method="post" class="settings-submit params-panel" autocomplete="off" action="<?php echo e(route('settings.update_settings','store')); ?>"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-xl-12"> <div class="form-group row"> <label class="col-xl-4 col-form-label"><?php echo e(_lang('Enable Recaptcha v3')); ?></label> <div class="col-xl-8"> <select class="form-control auto-select" data-selected="<?php echo e(get_setting($settings, 'enable_recaptcha', 0)); ?>" name="enable_recaptcha" required> <option value="0"><?php echo e(_lang('No')); ?></option> <option value="1"><?php echo e(_lang('Yes')); ?></option> </select> </div> </div> <div class="form-group row"> <label class="col-xl-4 col-form-label"><?php echo e(_lang('RECAPTCHA SITE KEY')); ?></label> <div class="col-xl-8"> <input type="text" class="form-control" name="recaptcha_site_key" value="<?php echo e(get_setting($settings, 'recaptcha_site_key')); ?>"> </div> </div> <div class="form-group row"> <label class="col-xl-4 col-form-label"><?php echo e(_lang('RECAPTCHA SECRET KEY')); ?></label> <div class="col-xl-8"> <input type="text" class="form-control" name="recaptcha_secret_key" value="<?php echo e(get_setting($settings, 'recaptcha_secret_key')); ?>"> </div> </div> <div class="form-group row mt-2"> <div class="col-xl-8 offset-xl-4"> <button type="submit" class="btn btn-primary"><?php echo e(_lang('Save Settings')); ?></button> </div> </div> </div> </div> </form> </div> </div> </div> <div id="cron_jobs" class="tab-pane fade"> <div class="card"> <div class="card-header d-flex align-items-center justify-content-between"> <span class="panel-title"><?php echo e(_lang('Cron Jobs')); ?></span> <span><?php echo e(get_option('cornjob_runs_at') != null ? _lang('Last Runs At').' ('.date(get_date_format().' '.get_time_format(), strtotime(get_option('cornjob_runs_at'))).' UTC)' : ''); ?></span> </div> <div class="card-body"> <div class="alert alert-warning"> <span><i class="ti-info-alt"></i> <?php echo e(_lang('Run Cronjobs at least every').' 5 '._lang('minutes')); ?></span> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Schedule Task Command')); ?></label> <div class="border bg-light p-2 rounded">cd /<span class="text-danger">your-project-path</span> && php artisan schedule:run >> /dev/null 2>&1</div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Cronjobs Command example 1 for cPanel')); ?></label> <div class="border bg-light p-2 rounded"><?php echo e('/usr/local/bin/php ' . base_path() . '/artisan schedule:run >> /dev/null 2>&1'); ?></div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Cronjobs Command example 2 for cPanel')); ?></label> <div class="border bg-light p-2 rounded"><?php echo e('cd ' . base_path() . ' && /usr/local/bin/php artisan schedule:run >> /dev/null 2>&1'); ?></div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Schedule Task Command example for Plesk')); ?></label> <div class="border bg-light p-2 rounded"><?php echo e('cd ' . base_path() . ' && /opt/plesk/php/'. substr(phpversion(), 0, 3) .'/bin/php artisan schedule:run >> /dev/null 2>&1'); ?></div> </div> </div> </div> </div> </div> </div> <div id="logo" class="tab-pane fade"> <div class="card"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('Logo and Favicon')); ?></span> </div> <div class="card-body"> <div class="row"> <div class="col-md-6"> <form method="post" class="settings-submit params-panel" autocomplete="off" action="<?php echo e(route('settings.uplaod_logo')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Upload Logo')); ?></label> <input type="file" class="form-control dropify" name="logo" data-max-file-size="8M" data-allowed-file-extensions="png jpg jpeg PNG JPG JPEG" data-default-file="<?php echo e(get_logo()); ?>" required> </div> </div> <br> <div class="col-md-12 mt-2"> <div class="form-group"> <button type="submit" class="btn btn-primary btn-block"><?php echo e(_lang('Upload')); ?></button> </div> </div> </div> </form> </div> <div class="col-md-6"> <form method="post" class="settings-submit params-panel" autocomplete="off" action="<?php echo e(route('settings.update_settings','store')); ?>" enctype="multipart/form-data"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label class="control-label"><?php echo e(_lang('Upload Favicon')); ?> (PNG)</label> <input type="file" class="form-control dropify" name="favicon" data-max-file-size="2M" data-allowed-file-extensions="png" data-default-file="<?php echo e(get_favicon()); ?>" required> </div> </div> <br> <div class="col-md-12 mt-2"> <div class="form-group"> <button type="submit" class="btn btn-primary btn-block"><?php echo e(_lang('Upload')); ?></button> </div> </div> </div> </form> </div> </div> </div> </div> </div><!--End Logo Tab--> <div id="cache" class="tab-pane fade"> <div class="card"> <div class="card-header"> <span class="panel-title"><?php echo e(_lang('Cache Control')); ?></span> </div> <div class="card-body"> <form method="post" class="params-panel" autocomplete="off" action="<?php echo e(route('settings.remove_cache')); ?>"> <?php echo e(csrf_field()); ?> <div class="row"> <div class="col-md-12"> <div class="checkbox"> <div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" name="cache[view_cache]" value="view_cache" id="view_cache"> <label class="custom-control-label" for="view_cache"><?php echo e(_lang('View Cache')); ?></label> </div> </div> </div> <div class="col-md-12"> <div class="checkbox"> <div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" name="cache[application_cache]" value="application_cache" id="application_cache"> <label class="custom-control-label" for="application_cache"><?php echo e(_lang('Application Cache')); ?></label> </div> </div> </div> <br> <br> <div class="col-md-12 mt-2"> <div class="form-group"> <button type="submit" class="btn btn-primary"><?php echo e(_lang('Remove Cache')); ?></button> </div> </div> </div> </form> </div> </div> </div><!--End Cache Tab--> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('js-script'); ?> <script> (function ($) { "use strict"; $(document).on('change', '#currency_converter', function(){ if($(this).val() == 'fixer'){ $('.fixer').removeClass('d-none'); $('.apilayer').addClass('d-none'); }else if($(this).val() == 'apilayer'){ $('.apilayer').removeClass('d-none'); $('.fixer').addClass('d-none'); }else{ $('.fixer').addClass('d-none'); $('.apilayer').addClass('d-none'); } }); })(jQuery); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/eliosofonline/acc.eliosof.com/resources/views/backend/admin/administration/general_settings/settings.blade.php ENDPATH**/ ?>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.97 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002