Posts by GAT

    So I decided to setup Perch from start.


    It connected to the database and then I hit this error?


    Invalid query: SQLSTATE[HY000]: General error: 1030 Got error 1 from storage engine


    CREATE TABLE IF NOT EXISTS `perch3_content_items` ( `itemRowID` int(10) unsigned NOT NULL AUTO_INCREMENT, `itemID` int(10) unsigned NOT NULL DEFAULT '0', `regionID` int(10) unsigned NOT NULL DEFAULT '0', `pageID` int(10) unsigned NOT NULL DEFAULT '0', `itemRev` int(10) unsigned NOT NULL DEFAULT '0', `itemOrder` int(10) unsigned NOT NULL DEFAULT '1000', `itemJSON` mediumtext NOT NULL, `itemSearch` mediumtext NOT NULL, `itemUpdated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `itemUpdatedBy` char(32) NOT NULL DEFAULT '', PRIMARY KEY (`itemRowID`), KEY `idx_item` (`itemID`), KEY `idx_rev` (`itemRev`), KEY `idx_region` (`regionID`), KEY `idx_regrev` (`itemID`,`regionID`,`itemRev`), KEY `idx_order` (`itemOrder`), FULLTEXT KEY `idx_search` (`itemSearch`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8


    If you look at the following response of MySQL support for Azure - is it possible to run these scripts without having them specify the storage engine?


    https://techcommunity.microsof…se-with-error/ba-p/368896


    Thank you.

    Hi,


    I've recently migrated a pre-existing perch site to a new server. I've followed the guide here -

    https://docs.grabaperch.com/pe…w-do-i-move-a-perch-site/.


    However, when I go to browse my site, the pages are there and come up BUT the css is not resolving and when I click on some links they don't work?


    When I look at the source code to see what is going on, I see references like these - <link href="/css/public.1564509189.css" rel="stylesheet">


    Where that file does not exist on our server - so something is not resolving?


    Everything else looks fine. I'm not seeing a database error so I am thinking that is fine?


    Any help would be appreciated.


    Thank you - Greg.