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