No3x
Forum Replies Created
-
Forum: Plugins
In reply to: [Bootstrap Shortcodes] Fix for invalid table structureWe don’t even support tables. Maybe you have posted to the wrong plugin page.
Forum: Plugins
In reply to: [WP Mail Logging] PHP Notice: is_tax called incorrectlyI checked redux as well. But if I’m not able to reproduce there is nothing I can start from.
Forum: Plugins
In reply to: [WP Mail Logging] Headers missingPlease report when you found the cause.
Forum: Plugins
In reply to: [WP Mail Logging] PHP Notice: is_tax called incorrectlyHi Boldt,
I can’t reproduce this andis_taxis never called by the plugin.Forum: Plugins
In reply to: [WP Mail Logging] Headers missingOtherwise you have to invesigate the code of S2. Find the difference between the wp_mail calls in there. Maybe they don’t set the headers by mistake.
Forum: Plugins
In reply to: [WP Mail Logging] Headers missingIf I can implement that with the WP emails sent out then I’m golden…
That’s what the filter above does if I understand you right.
Forum: Plugins
In reply to: [WP Mail Logging] Headers missingHi Beee,
really happy to hear that you like the plugin.
That really sounds like a problem of WordPress/S2. You could add the missing header if the title is constant. Maybe like this (untested, hack):add_filter( 'wp_mail', 'my_wp_mail_filter', 11 ); function my_wp_mail_filter( $args ) { if( empty( $args['subject'] ) || ( 0 != strcmp($args['subject'], 'The Subject of there S2 mails.' ) ) { return $args; } $args['headers'] = array("missingheader"); return $args; }But I think you should ask them.
Forum: Reviews
In reply to: [WP Mail Logging] NIce plugin, but the Redux splash page is confusingThere are no ads with
WP_DEBUGfalse for me.Forum: Reviews
In reply to: [WP Mail Logging] NIce plugin, but the Redux splash page is confusingThank you very much. I will investigate this.
I might missed some flags in redux to suppress this messages.Forum: Reviews
In reply to: [WP Mail Logging] NIce plugin, but the Redux splash page is confusingHi sethshoultes,
I think this ads are visible if WP_DEBUG is defined only. As redux might think you’r a developer. I did not intend to show any ads.
The plugin comes with an old version of redux framework. I already updated it for a new plugin release.
If you want to beta test this release you can download it at: https://github.com/No3x/wp-mail-logging/releases/download/beta%2F1.6.0R5/wp-mail-logging-1.6.0R5_beta.zipForum: Plugins
In reply to: [WP Mail Logging] Multisite Attachments do not displayHi idealien,
I have created a beta version with a fix you can try:
https://github.com/No3x/wp-mail-logging/releases/tag/beta%2F1.6.0R5
(You should not install this on production. After installation you need to alter some options of the plugin in the database to get a clean state again. Let me know If you need help.)And the issue:
https://github.com/No3x/wp-mail-logging/issues/35Forum: Plugins
In reply to: [WP Mail Logging] Multisite Attachments do not displayWorks just fine on my multisite.
The only difference is the sites/2/ stuff in the upload dir. I don’t actually know how to configure WP to use this path. Any fancy defines on your side?Edit:
Never mind. I’m able to reproduce this! I just used the first created network site for testing. But path’s are different on the other network sites only.Forum: Plugins
In reply to: [WP Mail Logging] Multisite Attachments do not displayPlease check with
foreach( $attachments as $attachment ) { print_r( is_file( $attachment ) ? "Is a file" : "Not a file" ); }If the paths are ok. Or use ls.
The other thread you mention does reduce the scope of issue (that it must be in WP_CONTENT dir), but not resolve the issue itself.
Please execute
print_r ( wp_upload_dir() );In my case the output is:
Array ( [path] => /srv/www/wordpress-develop/src/wp-content/uploads/2016/02 [url] => http://src.wordpress-develop.dev/wp-content/uploads/2016/02 [subdir] => /2016/02 [basedir] => /srv/www/wordpress-develop/src/wp-content/uploads [baseurl] => http://src.wordpress-develop.dev/wp-content/uploads [error] => )Do you want to do a screen sharing?
Forum: Plugins
In reply to: [WP Mail Logging] Using Contact Form 7Hi Jack,
I just found out that
After a user uploads a file through your contact form, Contact Form 7 checks to see if: 1.) Any PHP errors have occurred; 2.) the file type and file size are valid; and then, if the check turns out okay, Contact Form 7 moves the uploaded file to a temporary folder. At this point, Contact Form 7 attaches the file to the mail and sends it. After these procedures, Contact Form 7 then removes the file from the temporary folder.
http://contactform7.com/file-uploading-and-attachment/
So Contact Form 7 is incompatible with this feature. An adaptation would be required to copy the file to uploads or so for persistence.
I’m not sure why Contact Form 7 did not delete this file in my dev environment. Maybe it’s a dev feature of Contact Form 7.Forum: Plugins
In reply to: [WP Mail Logging] Multisite Attachments do not displayHi idealien,
you did not mention following:
How do you send the mail? Which plugin? Is the attachment somewhere in the WP_CONTENT directory?
Please give me details allowing to reproduce this.
Please check if https://wordpress.org/support/topic/using-contact-form-7?replies=6 is relevant for this issue.