Česlav Przywara
Forum Replies Created
-
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Break RSS feedHi,
What do you mean by “our feed is empty”? Is the
your-domain.com/feed/file really just a blank document or you mean that you get 403 error when you try to open the URL in your browser?Cheers,
ČeslavForum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] moving site to sslHi,
When I went into my htacces I put this between the begin wordpress and end wordpress lines
It is not related to your problem, but you should never put your modifications into this block. You are going to lose your changes as soon as WordPress rewrites its permalink settings (for example on your next visit to “Settings > Permalink” screen). Just put your code outside of this block (and any other “special” blocks that might have been added by other plugins like AIOWPSF).
Hope you will find the cause of your original issue.
Cheers,
ČeslavForum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Add subscribers to a listIf I go in the DashBoard, Users the all 600 appear like “Subscribers” with the 4 users directly registred on WP
Ok, in such case, these 600 users are true WordPress users. You can try to resync the “WordPress users” list in MailPoet. Go to MailPoet > Subscribers, click on “Edit lists” and select to “Update” from menu for “WordPress Users” record (you may need to move your mouse over the record for the menu to show up).
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Add subscribers to a listHi Ben,
I only see 4 users (directly registred on WP) from the 600 users of the site.
This suggests that the other 600 users are not true WordPress users.
although they appear like “subscribers” in WP users
Can you clarify what you mean by “WP users” here? Where you can view these 600 users?
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Add subscribers to a listYou should be able to use the same procedure to add your existing WordPress users to subscribers list of your choice. All WordPress users are in a special (automatically maintained) list “WordPress users”.
Try the following:
- Go to MailPoet > Subscribers
- In the filter box, select “WordPress users” list and click on “Filter”
- Select all records
- In the bulk action box, look for “Add to list…” item and then select the list you want to add your users to (and click “Apply”)
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] opens, clicks, unsubscribesCan you check that links in your newsletter have proper query arguments (email_id, user_id, urlpassed)? For example they should look like: http://www.example.com/?email_id=63&user_id=120&urlpassed=aHR0cDovL2t1bnN0aGF1c25leHVzLmNvbS9ldmVudC9kZXRhaWxzL2dzY2huYWdnYS10aGVhdGVyLWRhcy10YXBmZXJlLXNjaG5laWRlcmxlaW4v&controller=stats&action=analyse&wysija-page=1&wysijap=subscriptions
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Add subscribers to a listHi Ben,
If I understand you correctly, you want to add existing subscribers from list A to another list B? You can select them (using checkbox in front of their name) and then use bulk action “Add to list…”. If you want to spare yourself clicking, you can use the checkbox in table header – it will select all records listed on the page. Also, underneath the table you will find a menu which you can use to display up to 100 records per page.
Cheers,
ČeslavForum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Add subscribers to a listHi,
You probably missed “Import” button in the menu at the top of Subscribers page.
Cheers,
ČeslavForum: Plugins
In reply to: [MailPoet Newsletters (Previous)] opens, clicks, unsubscribesYou mean both “open” and “click” statistics show only zeros?
Have you tried to send newsletter to your email address, open it and click on a link (and unsubscribe)?
Btw. I usually have to click on the stats link for the stats to be updated in the list view. I guess, it’s some caching issue in the plugin, maybe you are experiencing it as well.
Also note that the “open” stats are not 100% precise (simply because it is impossible to accurately determine when someone opens/reads an email in general case). For example, if someone configured his/her email client to block downloading of external resources (images), he/she will not show up in the stats.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] opens, clicks, unsubscribesHi,
I believe the statistics are reporting the following:
- open – number of subscribers that opened (~ read) your newsletter
- click – number of subscribers that clicked on link in your newsletter
Cheers,
ČeslavHi All,
Apache 2.3 and later comes with access_compat module that supports configurations containing old directives (including the ones mentioned in this thread). If you administrate your webserver or you can convince your webserver admin to activate it for you, it may help you with this issue until it is fixed in the plugin.
Cheers,
ČeslavHi Jacob,
I did not realize:
1. It is as simple as: [yoursite.com/?author=1] to retrieve the admins name.As @mbrsolution said, you can disable this feature of WordPress with AIOWPSF: the setting is available under
Miscellaneous > Users Enumeration. With Users Enumeration disabled, you’ll be protected against bots that try to find existing usernames on your installation by incrementing user ID param in[yoursite.com/?author=N](starting with[yoursite.com/?author=1], then[yoursite.com/?author=2]etc.)Greetings,
ČeslavHi morio2,
RedirectMatch 403 config\.
This rule is part of “Advanced Character String Filter”, so you have to turn off this ruleset as well (the other one is part of 5G as @mbrsolution pointed out).
I recommend using Custom Rules tab for saving your changes. Copy all rules between (but not including)
#AIOWPS_ADVANCED_CHAR_STRING_FILTER_STARTand#AIOWPS_ADVANCED_CHAR_STRING_FILTER_ENDmarkers from your.htaccessfile, paste them into Custom Rules, make your changes to theRedirectMatch 403 config\.line and save. Then, turn off “Advanced Character String Filter” and save again.Greets,
ČeslavHi,
I ran across the same problem (just have “<” char in password) and I believe this is an issue with WooCommerce rather than the plugin, but it can be fixed (or workarounded) from the plugin – try to add the following methods to
WC_Gateway_MPAY24class (ingateway-mpay24.php):private function validate_mpay24_password_field($key) { $field = $this->get_field_key( $key ); return trim( stripslashes( $_POST[ $field ] ) ); } public function validate_apipassprod_field($key) { return $this->validate_mpay24_password_field($key); } public function validate_apipasstest_field($key) { return $this->validate_mpay24_password_field($key); }Note that, with this snippet, there’s basically zero input sanitization done over both password fields, but if you can trust your users (with access to WooCommerce settings), then you’re fine.
Cheers,
ČeslavWhen you activated the plugin, you got your free API key automatically. See also the documentation.