Hi. I just updated to 3.0.1 and tried to use the upgrade tool to upgrade to 3.0.1b and am not having any luck. I tried setting the permissions on the combu folder to 0777 and the upgrader says that my domain is currently unable to handle this request with a HTTP ERROR 500. Any idea what I may need to do to get this to work? Thank you!
If you get HTTP 500 then you should hopefully have something logged in the error log of the website, can you check into it?
FRANCESCO CROCETTI @ SKARED CREATIONS
I don't see any error logs other than one for the Wordpress installation on my website. Might the fact that combu is installed inside a Wordpress installation have something to do with it?
No, only issue I can think is that your server is denying to load an URL using file_get_contents, can you create a new script "test.php" in your Combu admin folder with the following content and call it from web browser:
<?= file_get_contents("http://webservices.skaredcreations.com/combu_update/check.php?version=3.0.1") ?>
As result you should see something like:
{ "version": "3.0.1b", "release_notes": "VERSION 3.0.1b Database: Increased Leaderboard.ValueFloat size to DECIMAL(20,6) ", "sql": [ "ALTER TABLE `LeaderBoard_User` CHANGE COLUMN `ValueFloat` `ValueFloat` DECIMAL(20,6) NOT NULL" ], "files": [ "http://webservices.skaredcreations.com/combu_update/updates/3.0.1b/combu.zip" ], "delete": [] }
FRANCESCO CROCETTI @ SKARED CREATIONS