Jan Koester
Forum Replies Created
-
Forum: Plugins
In reply to: [RecipePress Reloaded] Plugin does not work. Unfexpected parse errorThis is a nasty little bug. You can fix it manually by changing line 4 in ../recipepress-reloaded/templates/metabox_ingredients.php to
$ingredient_link = RPReloaded::get_option('recipe_ingredient_links');
and in ../recipepress-reloaded/templates/metabox_instructions.php change line 3 to$images = RPReloaded::get_option('recipe_instruction_image');Your PHP version throws an error where mine did not, so I could find this error during testing. Please understand that I can not test the plugin again multiple PHP versions.
This fix will also be included in the upcoming releasen 0.6.0 of recipepress-reloaded.
Regards
Forum: Plugins
In reply to: [RecipePress Reloaded] A number of things not workingAll message starting with
bbp_setup_current_userare definitly related to some other plugin and not causeb by recipepress reloaded.
I could only find one message related to recipepress-reloaded:
Warning: parse_url(/123/login/?redirect_to=http://www.bcd/123) [function.parse-url]: Unable to parse URL in /home2/abc/public_html/bcd/123/wp-content/plugins/recipepress-reloaded/php/lib/vafpress/classes/wp/admin.php on line 53. This is related to the settings page of recipepress-reloaded and should not cause the errors you’ve seen.If there are any more messages related to recipepress-reloaded please post them here.
If not try to identify the plugin causing all the errors and warnings an disable it. Then please check again if recipepress-reloaded is showing its strange behaviour.
Forum: Plugins
In reply to: [RecipePress Reloaded] A number of things not workingOK. You could try the following:
in wp-config.php setdefine('WP_DEBUG', true);and tell me the error messages you will then get.Don’t forget to remove this line immediatly after as error messages might expose the path of your installation to possible attackers also on the public page.
I guess you will get an error then concerning either the descruiption or the ingredient fields. On my test system I’ve tested the plugin against wp 3.9.1 and PHP 5.4.4 so it should be working. However there might be a little yet easy to fix issue.
Forum: Plugins
In reply to: [RecipePress Reloaded] A number of things not workingHi.
Most probably there you’re PHP version is causing an error.
Please tell me the following:
– the version of wordpress you are using
– the version of PHP you are usingIf you have the chance to look into your PHP error log please also provide the error message from there.
Forum: Plugins
In reply to: [RecipePress Reloaded] add a new recipeI’m sorry I can’t help you there. The feature you requested is not supported yet and I don’t have plans to do so.
Please keep in mind that I develop this plugin in my spare time and can currently only use about 1 hour per week on it.If yyou waqnt to develop that feature yourself I’ll support you as good as I can and will be happy to include it in a fute version.
This error has been fixed in release 0.5.6 which I luckily could release today.
Forum: Plugins
In reply to: [RecipePress Reloaded] Instructions won´t show upI’m not getting any errors in my development environment. However I’ve change the code to avoid some warnings given.
I assume these warnings were handled as errors by your webserver. So processing the scripts was stopped. Hopefully now its is working with 0.5.6.Please tell me, if you are still experiencing any problems.
Forum: Plugins
In reply to: [RecipePress Reloaded] Fatal error: Using $thisI did indeed chnange something that caused this error. I simply didn’t remeber.
It’s fixed in 0.5.6Forum: Plugins
In reply to: [RecipePress Reloaded] Can't activate plugin after installationThis error should be fixed in release 0.5.6.
In my development environment I’m using PHP 3.4.4 and did not even get a warning about line 232. However I’ve changed it so it should work for you.
Please tell me if you are still experiencing problems.This a major bug!
I accidentally mixed in some lines of code of the upcoming release 0.6 into 0.5.5. To fix this error please downgrade to release 0.5.4 or wait for 0.5.6 which I will release on monday.To fix it manually you can also change line 118 from
require_once('views/admin.php');
to
require_once('templates/admin.php');Forum: Plugins
In reply to: [RecipePress Reloaded] Can't activate plugin after installationI need to further investigate this issue which seems to be related to the PHP version you are using. However I won’t have time for this until monday, so please be patient.
Forum: Plugins
In reply to: [RecipePress Reloaded] Fatal error: Using $thisI’m pretty sure this problem is not related to RecipePress Reloaded as I’m simply using the featured image function provided by wordpress. However I will check for any changes between 0.5.3 and 0.5.4.
As I won’t have time to look any further into this until monday, please be patient.Forum: Plugins
In reply to: [RecipePress Reloaded] Instructions won´t show upPlease check the server log for a Fatal Error. And please tell me the versions of PHP, wordpress and RecipePress Reloaded you are using.
As I won’t have time to look any further into this until monday, please be patient.
Forum: Plugins
In reply to: [RecipePress Reloaded] Can't activate plugin after installationCould you please tell me which version of wordpress and PHP you are using?
You could also try to replace line 232
$taxonomies = get_option('recipe-press-options')['taxonomies'];by `$options = get_option(‘recipe-press-options’);
$taxonomies = $options[‘taxonomies’];`Forum: Plugins
In reply to: [RecipePress Reloaded] Instructions won´t show upThat’s strange. I just tested it myself and could not reproduce the error.
Please check the following:
– ae you using the most recent version of the plugin (0.5.5)?
– add some notes to your recipe. Are those being displayed?
– if possible check your webservers error log.By the way: is it correct you are using the German translation of the plugin?