christianmemije
Forum Replies Created
-
Forum: Plugins
In reply to: [Broken Link Checker] 1.11.1 Syntax ErrorIreyesp, I don’t fully understand you, but this is a link to the previous version of the plugin, V. 1.10.1
https://downloads.wordpress.org/plugin/broken-link-checker.1.10.1.zipForum: Plugins
In reply to: [Broken Link Checker] 1.11.1 Syntax ErrorThe following will point you in the right direction:
https://www.godaddy.com/help/view-or-change-your-php-version-3937
https://www.godaddy.com/help/view-or-change-your-php-version-16090Forum: Themes and Templates
In reply to: [JustWrite] Parse error: syntax error, unexpected ':'Just a clarification. I was actually using PHP 5.2, not PHP 5.4.45, which explains the incompatibility. Sorry for the confusion.
Forum: Plugins
In reply to: [Broken Link Checker] 1.11.1 Syntax ErrorApologies. The server was actually using PHP 5.2 something, so the problem was 100% on my end. No error after switching PHP versions.
Dave, you are probably using an old version of PHP.
Forum: Themes and Templates
In reply to: [JustWrite] Parse error: syntax error, unexpected ':'So turns out the shorthand ternary operator isn’t supported in the PHP version on my server, so I just changed line 1018
from:
$format = get_post_format() ? : 'standard';to:
$format = get_post_format() ? get_post_format() : 'standard';Since it is a a very simple fix, hopefully it can implemented in next version to avoid compatibility issues.
Thanks 🙂
Forum: Fixing WordPress
In reply to: Not Found The requested URL / was not found on this server.In my root folder, I don’t. But I have tried to put the original one from the wordpress installation zip file in the root, but the page is just white.