MySQL Issue

Status
Not open for further replies.

gcafex10

New Member
Messages
19
Reaction score
0
Points
1
Xenforo Error:
Code:
Mysqli statement execute error : Got error 28 from storage engine

Zend_Db_Statement_Mysqli->_execute() in Zend/Db/Statement.php at line 297
Zend_Db_Statement->execute() in Zend/Db/Adapter/Abstract.php at line 479
Zend_Db_Adapter_Abstract->query() in XenForo/Model.php at line 218
XenForo_Model->fetchAllKeyed() in XenForo/Model/StyleProperty.php at line 79
XenForo_Model_StyleProperty->getStylePropertiesInStyles() in XenForo/Model/StyleProperty.php at line 597
XenForo_Model_StyleProperty->rebuildPropertyCacheInStyleAndChildren() in XenForo/Model/StyleProperty.php at line 2316
XenForo_Model_StyleProperty->importStylePropertiesFromArray() in XenForo/Model/StyleProperty.php at line 2187
XenForo_Model_StyleProperty->importStylePropertyXml() in XenForo/Model/StyleProperty.php at line 2120
XenForo_Model_StyleProperty->importStylePropertyDevelopmentXml() in XenForo/CacheRebuilder/ImportMasterData.php at line 45
XenForo_CacheRebuilder_ImportMasterData->rebuild() in XenForo/ControllerHelper/CacheRebuild.php at line 26
XenForo_ControllerHelper_CacheRebuild->rebuildCache() in XenForo/Install/Controller/Upgrade.php at line 232
XenForo_Install_Controller_Upgrade->actionRebuild() in XenForo/FrontController.php at line 310
XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 132
XenForo_FrontController->run() in /home/gcafex10/public_html/install/index.php at line 18

At first i thought it was just a bug or i needed to fix somthing, but after some research i read that the server most likely ran out of space somewhere.
See: http://omeka.org/forums/topic/errormysqli-statement-execute-error-got-error-28-from-storage-engine

Error code 28 means "no space left on device". MySQL can throw this error when there is no space remaining for it to store the database, temporary files, or its log.

Frequently, when MySQL gives error 28, this means there is not enough disk space remaining in the server's temporary directory (/tmp). On many servers, even though there is more than enough space remaining on the disk, /tmp is limited to a certain size.

You can ask your server administrators to free up some space in /tmp by deleting some files, or increasing the space allocated to /tmp. Either fix should clear the error.
 
Status
Not open for further replies.
Top