Notice: file_put_contents(): Write of 9036 bytes failed with errno=28 No space left on device in /home/chemica7/public_html/plugins/system/forsef/vendor/weeblr/wblib/v2/packages/system/log.php on line 314

Notice: file_put_contents(): Write of 9055 bytes failed with errno=28 No space left on device in /home/chemica7/public_html/plugins/system/forseo/vendor/weeblr/wblib/v2/packages/system/log.php on line 314
Can't create/write to file '/tmp/#sql_249d0_0.MAI' (Errcode: 30 "Read-only file system") (500 Whoops, looks like something went wrong.)

mysqli_sql_exception

HTTP 500 Whoops, looks like something went wrong.

Can't create/write to file '/tmp/#sql_249d0_0.MAI' (Errcode: 30 "Read-only file system")

Exception

mysqli_sql_exception

  1.         $this->connection   $connection;
  2.         $this->query        $query;
  3.         $query $this->prepareParameterKeyMapping($query);
  4.         $this->statement  $connection->prepare($query);
  5.         if (!$this->statement)
  6.         {
  7.             throw new PrepareStatementFailureException($this->connection->error$this->connection->errno);
  8.         }
  1.         $this->connection   $connection;
  2.         $this->query        $query;
  3.         $query $this->prepareParameterKeyMapping($query);
  4.         $this->statement  $connection->prepare($query);
  5.         if (!$this->statement)
  6.         {
  7.             throw new PrepareStatementFailureException($this->connection->error$this->connection->errno);
  8.         }
  1.      * @since   2.0.0
  2.      * @throws  PrepareStatementFailureException
  3.      */
  4.     protected function prepareStatement(string $query): StatementInterface
  5.     {
  6.         return new MysqliStatement($this->connection$query);
  7.     }
  8.     /**
  9.      * Unlocks tables in the database.
  10.      *
  1.         $query->setLimit($limit$offset);
  2.         $sql $this->replacePrefix((string) $query);
  3.         $this->statement $this->prepareStatement($sql);
  4.         $this->sql    $query;
  5.         $this->limit  = (int) max(0$limit);
  6.         $this->offset = (int) max(0$offset);
  1.         $this->connect();
  2.         $result = [];
  3.         // Set the query to get the table fields statement.
  4.         $fields $this->setQuery('SHOW FULL COLUMNS FROM ' $this->quoteName($this->escape($table)))->loadObjectList();
  5.         // If we only want the type as the value add just that to the list.
  6.         if ($typeOnly)
  7.         {
  8.             foreach ($fields as $field)
MysqliDriver->getTableColumns('#__content', false) in /home/chemica7/public_html/libraries/src/Table/Table.php (line 248)
  1.         $key $this->_db->getServerType() . ':' $this->_db->getName() . ':' $this->_tbl;
  2.         if (!isset(self::$tableFields[$key]) || $reload) {
  3.             // Lookup the fields for this table only once.
  4.             $name   $this->_tbl;
  5.             $fields $this->_db->getTableColumns($namefalse);
  6.             if (empty($fields)) {
  7.                 throw new \UnexpectedValueException(sprintf('No columns found for %s table'$name));
  8.             }
  1.         $this->_tbl_key $this->getKeyName();
  2.         $this->_db $db;
  3.         // Initialise the table properties.
  4.         $fields $this->getFields();
  5.         if ($fields) {
  6.             foreach ($fields as $name => $v) {
  7.                 // Add the field if it is not already present.
  8.                 if (!$this->hasField($name)) {
Table->__construct('#__content', array('id'), object(MysqliDriver)) in /home/chemica7/public_html/libraries/src/Table/Content.php (line 56)
  1.      */
  2.     public function __construct(DatabaseDriver $db)
  3.     {
  4.         $this->typeAlias 'com_content.article';
  5.         parent::__construct('#__content''id'$db);
  6.         // Set the alias since the column is called state
  7.         $this->setColumnAlias('published''state');
  8.     }
Content->__construct(object(MysqliDriver)) in /home/chemica7/public_html/libraries/src/Table/Table.php (line 317)
  1.         if (Factory::getContainer()->has($tableClass)) {
  2.             return Factory::getContainer()->get($tableClass);
  3.         }
  4.         // Instantiate a new table class and return it.
  5.         return new $tableClass($db);
  6.     }
  7.     /**
  8.      * Add a filesystem path where Table should search for table class files.
  9.      *
  1.         if (empty($catid))
  2.         {
  3.             switch (true)
  4.             {
  5.                 case 'com_content' === $contentType && 'article' === $view:
  6.                     $table Table::getInstance('Content');
  7.                     $table->load($id);
  8.                     $catid $table->catid;
  9.                     break;
  10.                 case 'com_contact' === $contentType && 'contact' === $view:
  11.                     if ($this->majorVersion() < 4)
  1.          *
  2.          * @return object
  3.          */
  4.         $currentRequestCategory $this->factory->getThe('hook')->filter(
  5.             'forseo_current_request_category',
  6.             $this->platform->getCurrentRequestCategory()
  7.         );
  8.         $currentRequestCategoryPath = empty($currentRequestCategory)
  9.             ? ''
  10.             $currentRequestCategory->extension '.' $currentRequestCategory->path;
  1.             ->filterByIpAddress()
  2.             ->filterByHomeAddress()
  3.             ->filterByUrl()
  4.             ->filterByLanguage()
  5.             ->filterByContentType()
  6.             ->filterByCategories()
  7.             ->filterByCustomFieldByExtension();
  8.         return $this;
  9.     }
  1.             ->set('page_status'$errorCode);
  2.         // apply user rules, some redirects or URL blocking may apply on errors.
  3.         $rulesController $this->factory
  4.             ->getA(Rules::class)
  5.             ->filterExecutableRules();
  6.         $rulesController->executeRedirects();
  7.         $this->factory->getThe('forseo.aliasesController')
  8.                       ->execute();
  9.         $rulesController->executeWaf();
Error->errorHandler(object(mysqli_sql_exception))
call_user_func_array(array(object(Error), 'errorHandler'), array(object(mysqli_sql_exception))) in /home/chemica7/public_html/plugins/system/forseo/platform/errorhandlerjdefault.php (line 82)
  1.     public function handleError(PlatformEvent\ErrorEvent $event)
  2.     {
  3.         // pass on to 4SEO: if handled, it won't return.
  4.         call_user_func_array(
  5.             $this->appHandler,
  6.             [$event->getError()]
  7.         );
  8.     }
  9. }
  1.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
Dispatcher->dispatch('onError', object(ErrorEvent)) in /home/chemica7/public_html/libraries/src/Application/EventAware.php (line 111)
  1.             $event     = new $className($eventName$args);
  2.         } else {
  3.             throw new \InvalidArgumentException('The arguments must either be an event or an array');
  4.         }
  5.         $result $dispatcher->dispatch($eventName$event);
  6.         // @todo - There are still test cases where the result isn't defined, temporarily leave the isset check in place
  7.         return !isset($result['result']) || \is_null($result['result']) ? [] : $result['result'];
  8.     }
  9. }
WebApplication->triggerEvent('onError', object(ErrorEvent)) in /home/chemica7/public_html/libraries/src/Application/CMSApplication.php (line 320)
  1.                     'application' => $this,
  2.                 ]
  3.             );
  4.             // Trigger the onError event.
  5.             $this->triggerEvent('onError'$event);
  6.             ExceptionHandler::handleException($event->getError());
  7.         }
  8.         // Trigger the onBeforeRespond event.
CMSApplication->execute() in /home/chemica7/public_html/includes/app.php (line 61)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/home/chemica7/public_html/includes/app.php') in /home/chemica7/public_html/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Trace

mysqli_sql_exception
mysqli_sql_exception:
Can't create/write to file '/tmp/#sql_249d0_0.MAI' (Errcode: 30 "Read-only file system")

  at /home/chemica7/public_html/libraries/vendor/joomla/database/src/Mysqli/MysqliStatement.php:137
  at mysqli->prepare('SHOW FULL COLUMNS FROM `vlo3j_content`')
     (/home/chemica7/public_html/libraries/vendor/joomla/database/src/Mysqli/MysqliStatement.php:137)
  at Joomla\Database\Mysqli\MysqliStatement->__construct(object(mysqli), 'SHOW FULL COLUMNS FROM `vlo3j_content`')
     (/home/chemica7/public_html/libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php:1089)
  at Joomla\Database\Mysqli\MysqliDriver->prepareStatement('SHOW FULL COLUMNS FROM `vlo3j_content`')
     (/home/chemica7/public_html/libraries/vendor/joomla/database/src/DatabaseDriver.php:1900)
  at Joomla\Database\DatabaseDriver->setQuery(object(MysqliQuery))
     (/home/chemica7/public_html/libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php:625)
  at Joomla\Database\Mysqli\MysqliDriver->getTableColumns('#__content', false)
     (/home/chemica7/public_html/libraries/src/Table/Table.php:248)
  at Joomla\CMS\Table\Table->getFields()
     (/home/chemica7/public_html/libraries/src/Table/Table.php:193)
  at Joomla\CMS\Table\Table->__construct('#__content', array('id'), object(MysqliDriver))
     (/home/chemica7/public_html/libraries/src/Table/Content.php:56)
  at Joomla\CMS\Table\Content->__construct(object(MysqliDriver))
     (/home/chemica7/public_html/libraries/src/Table/Table.php:317)
  at Joomla\CMS\Table\Table::getInstance('Content')
     (/home/chemica7/public_html/plugins/system/forseo/vendor/weeblr/wblib/v2/packages/platform/joomla/platform.php:401)
  at Weeblr\Wblib\Forseo\Platform\JoomlaPlatform->getCurrentRequestCategory()
     (/home/chemica7/public_html/plugins/system/forseo/vendor/weeblr/forseo/model/rules.php:975)
  at Weeblr\Forseo\Model\Rules->filterByCategories()
     (/home/chemica7/public_html/plugins/system/forseo/vendor/weeblr/forseo/controller/rules.php:121)
  at Weeblr\Forseo\Controller\Rules->filterExecutableRules()
     (/home/chemica7/public_html/plugins/system/forseo/vendor/weeblr/forseo/controller/error.php:126)
  at Weeblr\Forseo\Controller\Error->errorHandler(object(mysqli_sql_exception))
  at call_user_func_array(array(object(Error), 'errorHandler'), array(object(mysqli_sql_exception)))
     (/home/chemica7/public_html/plugins/system/forseo/platform/errorhandlerjdefault.php:82)
  at Weeblr\Forseo\Platform\Errorhandlerjdefault->handleError(object(ErrorEvent))
     (/home/chemica7/public_html/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch('onError', object(ErrorEvent))
     (/home/chemica7/public_html/libraries/src/Application/EventAware.php:111)
  at Joomla\CMS\Application\WebApplication->triggerEvent('onError', object(ErrorEvent))
     (/home/chemica7/public_html/libraries/src/Application/CMSApplication.php:320)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/chemica7/public_html/includes/app.php:61)
  at require_once('/home/chemica7/public_html/includes/app.php')
     (/home/chemica7/public_html/index.php:32)