We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey there,
I recently installed Coaster CMS and after installation in the Backend there was an upgrade available from v5.4.26 to v5.4.27.
But when I started the upgrade an error occured.
Looks like in the SystemController@getUpgrade a file_put_contents('', $logFile); is called on line 216. But the first param should not be empty.
SystemController@getUpgrade
file_put_contents('', $logFile);
EDIT: On second thoughts I think you want to call file_put_contents($logFile, '');.
file_put_contents($logFile, '');
Best Regards, Naoray
The text was updated successfully, but these errors were encountered:
Updated the Line 216 and run the upgrade again, but still cannot upgrade to latest version.
216
Sorry, something went wrong.
No branches or pull requests
Hey there,
I recently installed Coaster CMS and after installation in the Backend there was an upgrade available from v5.4.26 to v5.4.27.
But when I started the upgrade an error occured.
Looks like in the
SystemController@getUpgrade
afile_put_contents('', $logFile);
is called on line 216. But the first param should not be empty.EDIT: On second thoughts I think you want to call
file_put_contents($logFile, '');
.Best Regards,
Naoray
The text was updated successfully, but these errors were encountered: