lostingraphics
Forum Replies Created
-
Forum: Plugins
In reply to: [Intuitive Custom Post Order] Update 3.1.4 causes error if role doesn’t exist@timohubois thank you!
i guess we would both agree on removing the native roles is not such a good idea, but in this special case it was necessary. and as long as it is possible to remove it, it is a good solution to check for it, i think.
- This reply was modified 3 years, 2 months ago by lostingraphics.
Forum: Plugins
In reply to: [WP PGP Encrypted Emails] Is there a minimum OpenSSL version needed?Thanks for your answer!
I finally found the reason. On the server of the provider the php variable open_basedir was set so that sys_get_temp_dir could somehow not find the right tmp folder.
As long as I cannot convince them to change this, I changed the lines 124 / 125 in class-wp-smime.php from
$infile = tempnam( sys_get_temp_dir(), 'wp_email_' ); $outfile = tempnam( sys_get_temp_dir(), 'wp_email_' );to
$tmp_dir = ini_get('upload_tmp_dir') ? ini_get('upload_tmp_dir') : sys_get_temp_dir(); $infile = tempnam( $tmp_dir, 'wp_email_' ); $outfile = tempnam( $tmp_dir, 'wp_email_' );Of course it is just a temporary solution, but it works for now.
i figured out, that only firefox can’t print the map. the prints with IE and Safari look fine.
but i still don’t have a solution.
I mean of course the following link:
[a href=”javascript:void(0);” onclick=”print(); return false;”]sorry for that.
Forum: Plugins
In reply to: [Plugin: Front-end Editor] Optionspage add/remove toolbar buttonsthx.