minecoin.space Open in urlscan Pro
141.136.39.56  Public Scan

Submitted URL: http://minecoin.space/?shiny
Effective URL: https://minecoin.space/?shiny
Submission Tags: shiny c290acadafe6362a fc6b18fd85158e2b bfst honeypoter@gmail.com Search All
Submission: On March 30 via api from JP — Scanned from JP

Form analysis 0 forms found in the DOM

Text Content

SYMFONY EXCEPTION

Symfony Docs


PDOEXCEPTION QUERYEXCEPTION


HTTP 500 INTERNAL SERVER ERROR


SQLSTATE[28000] [1045] ACCESS DENIED FOR USER 'MINE6676_MINECOIN'@'LOCALHOST'
(USING PASSWORD: YES) (SQL: SELECT * FROM `GENERAL_SETTINGS` LIMIT 1)


Exceptions 2 Stack Traces 2


EXCEPTIONS 2


ILLUMINATE\DATABASE\ QUERYEXCEPTION

Show exception properties
  0 of 0       Illuminate\Database\QueryException {#924 ▼
  +errorInfo: array:3 [▶
    0 => "28000"
    1 => 1045
    2 => "Access denied for user 'mine6676_minecoin'@'localhost' (using password: YES)"
  ]
  #sql: "select * from `general_settings` limit 1"
  #bindings: []
}


in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
(line 760)
 755. 
 756.         // If an exception occurs when attempting to run a query, we'll format the error
 757.         // message to include the bindings with SQL, which will make this exception a
 758.         // lot more helpful to the developer instead of just the database's errors.
 759.         catch (Exception $e) {
 760.             throw new QueryException(
 761.                 $query, $this->prepareBindings($bindings), $e
 762.             );
 763.         }
 764.     }
 765. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> runQueryCallback (line 720)
 715. 
 716.         // Here we will run this query. If an exception occurs we'll determine if it was
 717.         // caused by a connection that has been lost. If that is the cause, we'll try
 718.         // to re-establish connection and re-run the query with a fresh connection.
 719.         try {
 720.             $result = $this->runQueryCallback($query, $bindings, $callback);
 721.         } catch (QueryException $e) {
 722.             $result = $this->handleQueryException(
 723.                 $e, $query, $bindings, $callback
 724.             );
 725.         }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> run (line 422)
 417.             $this->bindValues($statement, $this->prepareBindings($bindings));
 418. 
 419.             $statement->execute();
 420. 
 421.             return $statement->fetchAll();
 422.         });
 423.     }
 424. 
 425.     /**
 426.      * Run a select statement against the database and returns a generator.
 427.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> select (line 2706)
 2701.      * @return array
 2702.      */
 2703.     protected function runSelect()
 2704.     {
 2705.         return $this->connection->select(
 2706.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
 2707.         );
 2708.     }
 2709. 
 2710.     /**
 2711.      * Paginate the given query into a simple paginator.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> runSelect (line 2694)
 2689.      * @return \Illuminate\Support\Collection
 2690.      */
 2691.     public function get($columns = ['*'])
 2692.     {
 2693.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
 2694.             return $this->processor->processSelect($this, $this->runSelect());
 2695.         }));
 2696.     }
 2697. 
 2698.     /**
 2699.      * Run the query as a "select" statement against the connection.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> Illuminate\Database\Query\{closure} (line 3230)
 3225. 
 3226.         if (is_null($original)) {
 3227.             $this->columns = $columns;
 3228.         }
 3229. 
 3230.         $result = $callback();
 3231. 
 3232.         $this->columns = $original;
 3233. 
 3234.         return $result;
 3235.     }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> onceWithColumns (line 2695)
 2690.      */
 2691.     public function get($columns = ['*'])
 2692.     {
 2693.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
 2694.             return $this->processor->processSelect($this, $this->runSelect());
 2695.         }));
 2696.     }
 2697. 
 2698.     /**
 2699.      * Run the query as a "select" statement against the connection.
 2700.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php
-> get (line 710)
 705.      * @return \Illuminate\Database\Eloquent\Model[]|static[]
 706.      */
 707.     public function getModels($columns = ['*'])
 708.     {
 709.         return $this->model->hydrate(
 710.             $this->query->get($columns)->all()
 711.         )->all();
 712.     }
 713. 
 714.     /**
 715.      * Eager load the relationships for the models.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php
-> getModels (line 694)
 689.         $builder = $this->applyScopes();
 690. 
 691.         // If we actually found models we will also eager load any relationships that
 692.         // have been specified as needing to be eager loaded, which will solve the
 693.         // n+1 query issue for the developers to avoid running a lot of queries.
 694.         if (count($models = $builder->getModels($columns)) > 0) {
 695.             $models = $builder->eagerLoadRelations($models);
 696.         }
 697. 
 698.         return $builder->getModel()->newCollection($models);
 699.     }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php
-> get (line 296)
 291.      * @param  array|string  $columns
 292.      * @return \Illuminate\Database\Eloquent\Model|object|static|null
 293.      */
 294.     public function first($columns = ['*'])
 295.     {
 296.         return $this->take(1)->get($columns)->first();
 297.     }
 298. 
 299.     /**
 300.      * Execute the query and get the first result if it's the sole matching record.
 301.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php
-> first (line 23)
 18.      * @throws \BadMethodCallException
 19.      */
 20.     protected function forwardCallTo($object, $method, $parameters)
 21.     {
 22.         try {
 23.             return $object->{$method}(...$parameters);
 24.         } catch (Error|BadMethodCallException $e) {
 25.             $pattern = '~^Call to u
     ndefined method (?P<class>[^:]+)::(?P<method>[^\(]+)\(\)$~';
 26. 
 27.             if (! preg_match($pattern, $e->getMessage(), $matches)) {
 28.                 throw $e;

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php
-> forwardCallTo (line 2330)
 2325.         if (Str::startsWith($method, 'through') &&
 2326.             method_exists($this, $relationMethod = Str::of($method)->after('through')->lcfirst()->toString())) {
 2327.             return $this->through($relationMethod);
 2328.         }
 2329. 
 2330.         return $this->forwardCallTo($this->newQuery(), $method, $parameters);
 2331.     }
 2332. 
 2333.     /**
 2334.      * Handle dynamic static method calls into the model.
 2335.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php
-> __call (line 2342)
 2337.      * @param  array  $parameters
 2338.      * @return mixed
 2339.      */
 2340.     public static function __callStatic($method, $parameters)
 2341.     {
 2342.         return (new static)->$method(...$parameters);
 2343.     }
 2344. 
 2345.     /**
 2346.      * Convert the model to its string representation.
 2347.      *

Model::__callStatic() in
/home/mine6676/public_html/core/app/Http/Helpers/helpers.php (line 449)
 444. 
 445. function gs($key = null)
 446. {
 447.     $general = Cache::get('GeneralSetting');
 448.     if (!$general) {
 449.         $general = GeneralSetting::first();
 450.         Cache::put('GeneralSetting', $general);
 451.     }
 452.     if ($key) return @$general->$key;
 453.     return $general;
 454. }

gs() in /home/mine6676/public_html/core/app/Providers/AppServiceProvider.php
(line 39)
 34.             } else {
 35.                 cache()->put('SystemInstalled', true);
 36.             }
 37.         }
 38. 
 39.         $general                         = gs();
 40.         $activeTemplate                  = activeTemplate();
 41.         $viewShare['general']            = $general;
 42.         $viewShare['activeTemplate']     = $activeTemplate;
 43.         $viewShare['activeTemplateTrue'] = activeTemplate(true);
 44.         $viewShare['emptyMessage']       = 'Data not found';

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php
-> boot (line 36)
 31.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
 32.             return static::callClass($container, $callback, $parameters, $defaultMethod);
 33.         }
 34. 
 35.         return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) {
 36.             return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters)));
 37.         });
 38.     }
 39. 
 40.     /**
 41.      * Call a string reference to a class using Class@method syntax.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Util.php
:: Illuminate\Container\{closure} (line 41)
 36.      * @param  mixed  ...$args
 37.      * @return mixed
 38.      */
 39.     public static function unwrapIfClosure($value, ...$args)
 40.     {
 41.         return $value instanceof Closure ? $value(...$args) : $value;
 42.     }
 43. 
 44.     /**
 45.      * Get the class name of the given parameter's type, if possible.
 46.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php
:: unwrapIfClosure (line 93)
 88. 
 89.         if ($container->hasMethodBinding($method)) {
 90.             return $container->callMethodBinding($method, $callback[0]);
 91.         }
 92. 
 93.         return Util::unwrapIfClosure($default);
 94.     }
 95. 
 96.     /**
 97.      * Normalize the given callback into a Class@method string.
 98.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php
:: callBoundMethod (line 37)
 32.             return static::callClass($container, $callback, $parameters, $defaultMethod);
 33.         }
 34. 
 35.         return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) {
 36.             return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters)));
 37.         });
 38.     }
 39. 
 40.     /**
 41.      * Call a string reference to a class using Class@method syntax.
 42.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
:: call (line 661)
 656.             $this->buildStack[] = $className;
 657. 
 658.             $pushedToBuildStack = true;
 659.         }
 660. 
 661.         $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod);
 662. 
 663.         if ($pushedToBuildStack) {
 664.             array_pop($this->buildStack);
 665.         }
 666. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> call (line 929)
 924.     protected function bootProvider(ServiceProvider $provider)
 925.     {
 926.         $provider->callBootingCallbacks();
 927. 
 928.         if (method_exists($provider, 'boot')) {
 929.             $this->call([$provider, 'boot']);
 930.         }
 931. 
 932.         $provider->callBootedCallbacks();
 933.     }
 934. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> bootProvider (line 910)
 905.         // for any listeners that need to do work after this initial booting gets
 906.         // finished. This is useful when ordering the boot-up processes we run.
 907.         $this->fireAppCallbacks($this->bootingCallbacks);
 908. 
 909.         array_walk($this->serviceProviders, function ($p) {
 910.             $this->bootProvider($p);
 911.         });
 912. 
 913.         $this->booted = true;
 914. 
 915.         $this->fireAppCallbacks($this->bootedCallbacks);

Application->Illuminate\Foundation\{closure}()
in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
array_walk (line 911)
 906.         // finished. This is useful when ordering the boot-up processes we run.
 907.         $this->fireAppCallbacks($this->bootingCallbacks);
 908. 
 909.         array_walk($this->serviceProviders, function ($p) {
 910.             $this->bootProvider($p);
 911.         });
 912. 
 913.         $this->booted = true;
 914. 
 915.         $this->fireAppCallbacks($this->bootedCallbacks);
 916.     }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php
-> boot (line 17)
 12.      * @param  \Illuminate\Contracts\Foundation\Application  $app
 13.      * @return void
 14.      */
 15.     public function bootstrap(Application $app)
 16.     {
 17.         $app->boot();
 18.     }
 19. }
 20. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> bootstrap (line 242)
 237.         $this->hasBeenBootstrapped = true;
 238. 
 239.         foreach ($bootstrappers as $bootstrapper) {
 240.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 241. 
 242.             $this->make($bootstrapper)->bootstrap($this);
 243. 
 244.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
 245.         }
 246.     }
 247. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> bootstrapWith (line 176)
 171.      * @return void
 172.      */
 173.     public function bootstrap()
 174.     {
 175.         if (! $this->app->hasBeenBootstrapped()) {
 176.             $this->app->bootstrapWith($this->bootstrappers());
 177.         }
 178.     }
 179. 
 180.     /**
 181.      * Get the route dispatcher callback.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> bootstrap (line 160)
 155.     {
 156.         $this->app->instance('request', $request);
 157. 
 158.         Facade::clearResolvedInstance('request');
 159. 
 160.         $this->bootstrap();
 161. 
 162.         return (new Pipeline($this->app))
 163.                     ->send($request)
 164.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 165.                     ->then($this->dispatchToRouter());

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 134)
 129.         $this->requestStartedAt = Carbon::now();
 130. 
 131.         try {
 132.             $request->enableHttpMethodParameterOverride();
 133. 
 134.             $response = $this->sendRequestThroughRouter($request);
 135.         } catch (Throwable $e) {
 136.             $this->reportException($e);
 137. 
 138.             $response = $this->renderException($request, $e);
 139.         }

Kernel->handle() in /home/mine6676/public_html/index.php (line 52)
 47. $app = require_once __DIR__.'/core/bootstrap/app.php';
 48. 
 49. $kernel = $app->make(Kernel::class);
 50. 
 51. $response = $kernel->handle(
 52.     $request = Request::capture()
 53. )->send();
 54. 
 55. $kernel->terminate($request, $response);
 56. 


PDOEXCEPTION

SQLSTATE[28000] [1045] Access denied for user 'mine6676_minecoin'@'localhost'
(using password: YES)

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php
(line 70)
 65.     {
 66.         if (class_exists(PDOConnection::class) && ! $this->isPersistentConnection($options)) {
 67.             return new PDOConnection($dsn, $username, $password, $options);
 68.         }
 69. 
 70.         return new PDO($dsn, $username, $password, $options);
 71.     }
 72. 
 73.     /**
 74.      * Determine if the connection is persistent.
 75.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php
-> __construct (line 70)
 65.     {
 66.         if (class_exists(PDOConnection::class) && ! $this->isPersistentConnection($options)) {
 67.             return new PDOConnection($dsn, $username, $password, $options);
 68.         }
 69. 
 70.         return new PDO($dsn, $username, $password, $options);
 71.     }
 72. 
 73.     /**
 74.      * Determine if the connection is persistent.
 75.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php
-> createPdoConnection (line 46)
 41.             $config['username'] ?? null, $config['password'] ?? null,
 42.         ];
 43. 
 44.         try {
 45.             return $this->createPdoConnection(
 46.                 $dsn, $username, $password, $options
 47.             );
 48.         } catch (Exception $e) {
 49.             return $this->tryAgainIfCausedByLostConnection(
 50.                 $e, $dsn, $username, $password, $options
 51.             );

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php
-> createConnection (line 24)
 19.         $options = $this->getOptions($config);
 20. 
 21.         // We need to grab the PDO options that should be used while making the brand
 22.         // new connection instance. The PDO options control various aspects of the
 23.         // connection's behavior, and some might be specified by the developers.
 24.         $connection = $this->createConnection($dsn, $config, $options);
 25. 
 26.         if (! empty($config['database'])) {
 27.             $connection->exec("use `{$config['database']}`;");
 28.         }
 29. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php
-> connect (line 184)
 179.         return function () use ($config) {
 180.             foreach (Arr::shuffle($this->parseHosts($config)) as $host) {
 181.                 $config['host'] = $host;
 182. 
 183.                 try {
 184.                     return $this->createConnector($config)->connect($config);
 185.                 } catch (PDOException $e) {
 186.                     continue;
 187.                 }
 188.             }
 189. 

ConnectionFactory->Illuminate\Database\Connectors\{closure}()
in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
call_user_func (line 1181)
 1176.      * @return \PDO
 1177.      */
 1178.     public function getPdo()
 1179.     {
 1180.         if ($this->pdo instanceof Closure) {
 1181.             return $this->pdo = call_user_func($this->pdo);
 1182.         }
 1183. 
 1184.         return $this->pdo;
 1185.     }
 1186. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> getPdo (line 1217)
 1212. 
 1213.         if ($this->readPdo instanceof Closure) {
 1214.             return $this->readPdo = call_user_func($this->readPdo);
 1215.         }
 1216. 
 1217.         return $this->readPdo ?: $this->getPdo();
 1218.     }
 1219. 
 1220.     /**
 1221.      * Get the current read PDO connection parameter without executing any reconnect logic.
 1222.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> getReadPdo (line 486)
 481.      * @param  bool  $useReadPdo
 482.      * @return \PDO
 483.      */
 484.     protected function getPdoForSelect($useReadPdo = true)
 485.     {
 486.         return $useReadPdo ? $this->getReadPdo() : $this->getPdo();
 487.     }
 488. 
 489.     /**
 490.      * Run an insert statement against the database.
 491.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> getPdoForSelect (line 414)
 409. 
 410.             // For select statements, we'll simply execute the query and return an array
 411.             // of the database result set. Each element in the array will be a single
 412.             // row from the database table, and will either be an array or objects.
 413.             $statement = $this->prepared(
 414.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
 415.             );
 416. 
 417.             $this->bindValues($statement, $this->prepareBindings($bindings));
 418. 
 419.             $statement->execute();

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> Illuminate\Database\{closure} (line 753)
 748.     {
 749.         // To execute the statement, we'll simply call the callback, which will actually
 750.         // run the SQL against the PDO connection. Then we can calculate the time it
 751.         // took to execute and log the query SQL, bindings and time in our memory.
 752.         try {
 753.             return $callback($query, $bindings);
 754.         }
 755. 
 756.         // If an exception occurs when attempting to run a query, we'll format the error
 757.         // message to include the bindings with SQL, which will make this exception a
 758.         // lot more helpful to the developer instead of just the database's errors.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> runQueryCallback (line 720)
 715. 
 716.         // Here we will run this query. If an exception occurs we'll determine if it was
 717.         // caused by a connection that has been lost. If that is the cause, we'll try
 718.         // to re-establish connection and re-run the query with a fresh connection.
 719.         try {
 720.             $result = $this->runQueryCallback($query, $bindings, $callback);
 721.         } catch (QueryException $e) {
 722.             $result = $this->handleQueryException(
 723.                 $e, $query, $bindings, $callback
 724.             );
 725.         }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> run (line 422)
 417.             $this->bindValues($statement, $this->prepareBindings($bindings));
 418. 
 419.             $statement->execute();
 420. 
 421.             return $statement->fetchAll();
 422.         });
 423.     }
 424. 
 425.     /**
 426.      * Run a select statement against the database and returns a generator.
 427.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> select (line 2706)
 2701.      * @return array
 2702.      */
 2703.     protected function runSelect()
 2704.     {
 2705.         return $this->connection->select(
 2706.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
 2707.         );
 2708.     }
 2709. 
 2710.     /**
 2711.      * Paginate the given query into a simple paginator.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> runSelect (line 2694)
 2689.      * @return \Illuminate\Support\Collection
 2690.      */
 2691.     public function get($columns = ['*'])
 2692.     {
 2693.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
 2694.             return $this->processor->processSelect($this, $this->runSelect());
 2695.         }));
 2696.     }
 2697. 
 2698.     /**
 2699.      * Run the query as a "select" statement against the connection.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> Illuminate\Database\Query\{closure} (line 3230)
 3225. 
 3226.         if (is_null($original)) {
 3227.             $this->columns = $columns;
 3228.         }
 3229. 
 3230.         $result = $callback();
 3231. 
 3232.         $this->columns = $original;
 3233. 
 3234.         return $result;
 3235.     }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> onceWithColumns (line 2695)
 2690.      */
 2691.     public function get($columns = ['*'])
 2692.     {
 2693.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
 2694.             return $this->processor->processSelect($this, $this->runSelect());
 2695.         }));
 2696.     }
 2697. 
 2698.     /**
 2699.      * Run the query as a "select" statement against the connection.
 2700.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php
-> get (line 710)
 705.      * @return \Illuminate\Database\Eloquent\Model[]|static[]
 706.      */
 707.     public function getModels($columns = ['*'])
 708.     {
 709.         return $this->model->hydrate(
 710.             $this->query->get($columns)->all()
 711.         )->all();
 712.     }
 713. 
 714.     /**
 715.      * Eager load the relationships for the models.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php
-> getModels (line 694)
 689.         $builder = $this->applyScopes();
 690. 
 691.         // If we actually found models we will also eager load any relationships that
 692.         // have been specified as needing to be eager loaded, which will solve the
 693.         // n+1 query issue for the developers to avoid running a lot of queries.
 694.         if (count($models = $builder->getModels($columns)) > 0) {
 695.             $models = $builder->eagerLoadRelations($models);
 696.         }
 697. 
 698.         return $builder->getModel()->newCollection($models);
 699.     }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php
-> get (line 296)
 291.      * @param  array|string  $columns
 292.      * @return \Illuminate\Database\Eloquent\Model|object|static|null
 293.      */
 294.     public function first($columns = ['*'])
 295.     {
 296.         return $this->take(1)->get($columns)->first();
 297.     }
 298. 
 299.     /**
 300.      * Execute the query and get the first result if it's the sole matching record.
 301.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php
-> first (line 23)
 18.      * @throws \BadMethodCallException
 19.      */
 20.     protected function forwardCallTo($object, $method, $parameters)
 21.     {
 22.         try {
 23.             return $object->{$method}(...$parameters);
 24.         } catch (Error|BadMethodCallException $e) {
 25.             $pattern = '~^Call to u
     ndefined method (?P<class>[^:]+)::(?P<method>[^\(]+)\(\)$~';
 26. 
 27.             if (! preg_match($pattern, $e->getMessage(), $matches)) {
 28.                 throw $e;

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php
-> forwardCallTo (line 2330)
 2325.         if (Str::startsWith($method, 'through') &&
 2326.             method_exists($this, $relationMethod = Str::of($method)->after('through')->lcfirst()->toString())) {
 2327.             return $this->through($relationMethod);
 2328.         }
 2329. 
 2330.         return $this->forwardCallTo($this->newQuery(), $method, $parameters);
 2331.     }
 2332. 
 2333.     /**
 2334.      * Handle dynamic static method calls into the model.
 2335.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php
-> __call (line 2342)
 2337.      * @param  array  $parameters
 2338.      * @return mixed
 2339.      */
 2340.     public static function __callStatic($method, $parameters)
 2341.     {
 2342.         return (new static)->$method(...$parameters);
 2343.     }
 2344. 
 2345.     /**
 2346.      * Convert the model to its string representation.
 2347.      *

Model::__callStatic() in
/home/mine6676/public_html/core/app/Http/Helpers/helpers.php (line 449)
 444. 
 445. function gs($key = null)
 446. {
 447.     $general = Cache::get('GeneralSetting');
 448.     if (!$general) {
 449.         $general = GeneralSetting::first();
 450.         Cache::put('GeneralSetting', $general);
 451.     }
 452.     if ($key) return @$general->$key;
 453.     return $general;
 454. }

gs() in /home/mine6676/public_html/core/app/Providers/AppServiceProvider.php
(line 39)
 34.             } else {
 35.                 cache()->put('SystemInstalled', true);
 36.             }
 37.         }
 38. 
 39.         $general                         = gs();
 40.         $activeTemplate                  = activeTemplate();
 41.         $viewShare['general']            = $general;
 42.         $viewShare['activeTemplate']     = $activeTemplate;
 43.         $viewShare['activeTemplateTrue'] = activeTemplate(true);
 44.         $viewShare['emptyMessage']       = 'Data not found';

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php
-> boot (line 36)
 31.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
 32.             return static::callClass($container, $callback, $parameters, $defaultMethod);
 33.         }
 34. 
 35.         return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) {
 36.             return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters)));
 37.         });
 38.     }
 39. 
 40.     /**
 41.      * Call a string reference to a class using Class@method syntax.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Util.php
:: Illuminate\Container\{closure} (line 41)
 36.      * @param  mixed  ...$args
 37.      * @return mixed
 38.      */
 39.     public static function unwrapIfClosure($value, ...$args)
 40.     {
 41.         return $value instanceof Closure ? $value(...$args) : $value;
 42.     }
 43. 
 44.     /**
 45.      * Get the class name of the given parameter's type, if possible.
 46.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php
:: unwrapIfClosure (line 93)
 88. 
 89.         if ($container->hasMethodBinding($method)) {
 90.             return $container->callMethodBinding($method, $callback[0]);
 91.         }
 92. 
 93.         return Util::unwrapIfClosure($default);
 94.     }
 95. 
 96.     /**
 97.      * Normalize the given callback into a Class@method string.
 98.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php
:: callBoundMethod (line 37)
 32.             return static::callClass($container, $callback, $parameters, $defaultMethod);
 33.         }
 34. 
 35.         return static::callBoundMethod($container, $callback, function () use ($container, $callback, $parameters) {
 36.             return $callback(...array_values(static::getMethodDependencies($container, $callback, $parameters)));
 37.         });
 38.     }
 39. 
 40.     /**
 41.      * Call a string reference to a class using Class@method syntax.
 42.      *

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
:: call (line 661)
 656.             $this->buildStack[] = $className;
 657. 
 658.             $pushedToBuildStack = true;
 659.         }
 660. 
 661.         $result = BoundMethod::call($this, $callback, $parameters, $defaultMethod);
 662. 
 663.         if ($pushedToBuildStack) {
 664.             array_pop($this->buildStack);
 665.         }
 666. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> call (line 929)
 924.     protected function bootProvider(ServiceProvider $provider)
 925.     {
 926.         $provider->callBootingCallbacks();
 927. 
 928.         if (method_exists($provider, 'boot')) {
 929.             $this->call([$provider, 'boot']);
 930.         }
 931. 
 932.         $provider->callBootedCallbacks();
 933.     }
 934. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> bootProvider (line 910)
 905.         // for any listeners that need to do work after this initial booting gets
 906.         // finished. This is useful when ordering the boot-up processes we run.
 907.         $this->fireAppCallbacks($this->bootingCallbacks);
 908. 
 909.         array_walk($this->serviceProviders, function ($p) {
 910.             $this->bootProvider($p);
 911.         });
 912. 
 913.         $this->booted = true;
 914. 
 915.         $this->fireAppCallbacks($this->bootedCallbacks);

Application->Illuminate\Foundation\{closure}()
in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
array_walk (line 911)
 906.         // finished. This is useful when ordering the boot-up processes we run.
 907.         $this->fireAppCallbacks($this->bootingCallbacks);
 908. 
 909.         array_walk($this->serviceProviders, function ($p) {
 910.             $this->bootProvider($p);
 911.         });
 912. 
 913.         $this->booted = true;
 914. 
 915.         $this->fireAppCallbacks($this->bootedCallbacks);
 916.     }

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php
-> boot (line 17)
 12.      * @param  \Illuminate\Contracts\Foundation\Application  $app
 13.      * @return void
 14.      */
 15.     public function bootstrap(Application $app)
 16.     {
 17.         $app->boot();
 18.     }
 19. }
 20. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> bootstrap (line 242)
 237.         $this->hasBeenBootstrapped = true;
 238. 
 239.         foreach ($bootstrappers as $bootstrapper) {
 240.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 241. 
 242.             $this->make($bootstrapper)->bootstrap($this);
 243. 
 244.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
 245.         }
 246.     }
 247. 

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> bootstrapWith (line 176)
 171.      * @return void
 172.      */
 173.     public function bootstrap()
 174.     {
 175.         if (! $this->app->hasBeenBootstrapped()) {
 176.             $this->app->bootstrapWith($this->bootstrappers());
 177.         }
 178.     }
 179. 
 180.     /**
 181.      * Get the route dispatcher callback.

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> bootstrap (line 160)
 155.     {
 156.         $this->app->instance('request', $request);
 157. 
 158.         Facade::clearResolvedInstance('request');
 159. 
 160.         $this->bootstrap();
 161. 
 162.         return (new Pipeline($this->app))
 163.                     ->send($request)
 164.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 165.                     ->then($this->dispatchToRouter());

in
/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 134)
 129.         $this->requestStartedAt = Carbon::now();
 130. 
 131.         try {
 132.             $request->enableHttpMethodParameterOverride();
 133. 
 134.             $response = $this->sendRequestThroughRouter($request);
 135.         } catch (Throwable $e) {
 136.             $this->reportException($e);
 137. 
 138.             $response = $this->renderException($request, $e);
 139.         }

Kernel->handle() in /home/mine6676/public_html/index.php (line 52)
 47. $app = require_once __DIR__.'/core/bootstrap/app.php';
 48. 
 49. $kernel = $app->make(Kernel::class);
 50. 
 51. $response = $kernel->handle(
 52.     $request = Request::capture()
 53. )->send();
 54. 
 55. $kernel->terminate($request, $response);
 56. 


STACK TRACES 2

[2/2] QueryException

Illuminate\Database\QueryException:
SQLSTATE[28000] [1045] Access denied for user 'mine6676_minecoin'@'localhost' (using password: YES) (SQL: select * from `general_settings` limit 1)

  at /home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:760
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:720)
  at Illuminate\Database\Connection->run()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:422)
  at Illuminate\Database\Connection->select()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2706)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2694)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3230)
  at Illuminate\Database\Query\Builder->onceWithColumns()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2695)
  at Illuminate\Database\Query\Builder->get()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:710)
  at Illuminate\Database\Eloquent\Builder->getModels()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:694)
  at Illuminate\Database\Eloquent\Builder->get()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:296)
  at Illuminate\Database\Eloquent\Builder->first()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:23)
  at Illuminate\Database\Eloquent\Model->forwardCallTo()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:2330)
  at Illuminate\Database\Eloquent\Model->__call()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:2342)
  at Illuminate\Database\Eloquent\Model::__callStatic()
     (/home/mine6676/public_html/core/app/Http/Helpers/helpers.php:449)
  at gs()
     (/home/mine6676/public_html/core/app/Providers/AppServiceProvider.php:39)
  at App\Providers\AppServiceProvider->boot()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
  at Illuminate\Container\Container->call()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:929)
  at Illuminate\Foundation\Application->bootProvider()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:910)
  at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
  at array_walk()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:911)
  at Illuminate\Foundation\Application->boot()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
  at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:242)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:160)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/mine6676/public_html/index.php:52)                

[1/2] PDOException

PDOException:
SQLSTATE[28000] [1045] Access denied for user 'mine6676_minecoin'@'localhost' (using password: YES)

  at /home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70
  at PDO->__construct()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:70)
  at Illuminate\Database\Connectors\Connector->createPdoConnection()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:46)
  at Illuminate\Database\Connectors\Connector->createConnection()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php:24)
  at Illuminate\Database\Connectors\MySqlConnector->connect()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php:184)
  at Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure}()
  at call_user_func()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:1181)
  at Illuminate\Database\Connection->getPdo()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:1217)
  at Illuminate\Database\Connection->getReadPdo()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:486)
  at Illuminate\Database\Connection->getPdoForSelect()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:414)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:753)
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:720)
  at Illuminate\Database\Connection->run()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Connection.php:422)
  at Illuminate\Database\Connection->select()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2706)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2694)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3230)
  at Illuminate\Database\Query\Builder->onceWithColumns()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2695)
  at Illuminate\Database\Query\Builder->get()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:710)
  at Illuminate\Database\Eloquent\Builder->getModels()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:694)
  at Illuminate\Database\Eloquent\Builder->get()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:296)
  at Illuminate\Database\Eloquent\Builder->first()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:23)
  at Illuminate\Database\Eloquent\Model->forwardCallTo()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:2330)
  at Illuminate\Database\Eloquent\Model->__call()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:2342)
  at Illuminate\Database\Eloquent\Model::__callStatic()
     (/home/mine6676/public_html/core/app/Http/Helpers/helpers.php:449)
  at gs()
     (/home/mine6676/public_html/core/app/Providers/AppServiceProvider.php:39)
  at App\Providers\AppServiceProvider->boot()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Util.php:41)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37)
  at Illuminate\Container\BoundMethod::call()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:661)
  at Illuminate\Container\Container->call()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:929)
  at Illuminate\Foundation\Application->bootProvider()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:910)
  at Illuminate\Foundation\Application->Illuminate\Foundation\{closure}()
  at array_walk()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:911)
  at Illuminate\Foundation\Application->boot()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php:17)
  at Illuminate\Foundation\Bootstrap\BootProviders->bootstrap()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:242)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:160)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/mine6676/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/mine6676/public_html/index.php:52)