No3x
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Mail Logging] Email delivery statusI answered you per mail back then.
I will close this for completeness.Forum: Plugins
In reply to: [WP Mail Logging] Fatal Error on ActivationI just check with WordPress 4.7 | PHP 5.3.29 | Apache/2.4.7 (Ubuntu) | MySQL 5.5.53
The error is shown and the plugin wont activate to prevent php errors:
Forum: Plugins
In reply to: [WP Mail Logging] Fatal error on activationSorry for the late response. I had to figure out how to install legacy php versions first.
I tested with WordPress 4.6.1 | PHP 5.4.45 | Apache/2.4.7 (Ubuntu) | MySQL 5.5.53`
No errors..
Please try to install the plugin again. Make sure to not select cleanup in the settings before (this is not relevant for the problem).- This reply was modified 9 years, 6 months ago by No3x. Reason: fixed versions to tested versions
Forum: Plugins
In reply to: [WP Mail Logging] Fatal Error on ActivationYou can use the previous version of the plugin, I guess. It should not activate with versions prior 5.4 but it behaves like it’s running with php prior 5.4 – strange.
Forum: Plugins
In reply to: [WP Mail Logging] Fatal Error on ActivationYou should not be able to activate the plugin at all as it requires at least php 5.4. This is enforced
Since php 5.4 it is possible to to initialize arrays with a shorthand$array = []instead$array = array().Please have a look at http://php.net/supported-versions.php and consider making an update of php. I’m not willing to adapt my code to support the use of legacy php versions.
Forum: Plugins
In reply to: [WP Mail Logging] Disable demo mode of ReduxI have looked multiple times into this. I’m not able to remove it in embedded redux mode.
https://github.com/No3x/wp-mail-logging/blob/master/inc/redux/WPML_Redux_Framework_config.php#L142-L154- This reply was modified 9 years, 7 months ago by No3x.
Forum: Plugins
In reply to: [WP Mail Logging] Attachments don’t showHi fergusga1815,
the attachment is only shown if it was found in the uploads directory of WordPress in the passed path. That’s the only information I get from WordPress about the attachment of the mail before it is passed to the actual mail dispatcher implementation (phpmailer, smtp …). The path is logged in the database anyway.
So this works only for a subset of plugins that send media or previous uploaded files.
That’s a theoretical feature that came to my mind what I could do with this paths. But I don’t even a plugin that sends attachments this way. At least calling wp_mail with a proper attachment works, so there must be use cases.Please let me know which plugin you use and what it tries to attach.
Forum: Plugins
In reply to: [Theme My Login] Errors not displayingSo, the errors are showing with 6.4.5?
Yes, I think that’s what smartwithyou said:
the errors were displaying on 6.4.5 and are not showing up anymore on 6.4.6.
- This reply was modified 9 years, 7 months ago by No3x. Reason: fixed typo
Forum: Plugins
In reply to: [WP Mail Logging] Mail Logs are created, but mails are not sentEverything seems to be fine regarding the plugin and the theme. It seems like your configuration of smtp is not valid.
You saidI am able to receive the test mails sent from these plugins.
But no mails are received neither in inbox nor in spam.I don’t understand this. Get somebody to fix your config or ask your hosting for problems with the mailserver when not using smtp.
Forum: Plugins
In reply to: [Theme My Login] Errors not displayingThe same happened to me. I switched back to my installed version of 6.4.3 and the login errors are shown.
Sadly the error seems to be not fixed as the change log says.
Forum: Plugins
In reply to: [WP Mail Logging] Full header informationPlease read https://github.com/No3x/wp-mail-logging/issues/36 for controverse about redux. After doing some research to find an alternative I find that redux is fat but still my favourite.
Forum: Plugins
In reply to: [WP Mail Logging] Full header informationHi coccoinomane,
thank you for your donation again! There are all headers logged which wp_mail is called with.
Depending on your setup (Mandrill, phpmailer, SMTP plugin) they add more headers to the mail. But this is beyond the scope of the plugin.The settings are generated by the framework called Redux Framework.
- This reply was modified 9 years, 7 months ago by No3x. Reason: added link to wp_mail
Forum: Plugins
In reply to: [WP Mail Logging] Attachment Error StatusLet’s do it the other way around:
the function is required to determine a file icon based on the file type for attachments.
In the meantime I changed the plugin to avoid throwing an error and showing a generic file icon. This change is not available by a new version yet.There are at least 2 options:
1) You did not even know there are icons for attachemtns / you don’t care about attachment icons: ignore this error, wait for the next update of the plugin, inform me if the error gone after the next update.
2) Fix your server settings to support this kind of function- This reply was modified 9 years, 8 months ago by No3x.
Forum: Plugins
In reply to: [WP Mail Logging] Attachment Error StatusPlease check if the php module php_fileinfo is enabled.
Forum: Plugins
In reply to: [WP Mail Logging] Attachment Error StatusI’v looked a bit more into this now. The problem is not related to the namespace so prefixing \ does not has impact.
It’s related to your php version and installed extensions. Especially mime_magic.
What php version are you running?