- This topic has 3 replies, 3 voices, and was last updated 8 years, 5 months ago by
Mike Soja.
-
AuthorPosts
-
October 1, 2014 at 6:35 pm #10002537
dzrihen
ParticipantDear Developer,
Great plugin, i only found 2 problems:
1. I didn’t get notifications whenever new users sign up. i checked with 2 different active email addresses.2. UTF-8 Characters (for example: hebrew) are not shown in the emails – instead it looks like gibberish, something like: @#$@#
any help would be appreciated!
October 1, 2014 at 6:47 pm #10002541Pie Register
ParticipantHello,
For your first issue, Please make sure that
1.) Admin Notification is ON at Admin Notification page.
2.) Make sure there is no trailing/leading spaces.
3.) Try to use gmail addressFor your other issue, we have already worked out in our next release
which is planned to release by this weekend. However, if you want to
test it before the release with Hebrew, you may let us know and we will
glad to send you the nightly build version!Thanks
October 21, 2014 at 12:31 pm #10002623Mike Soja
ParticipantMy Admin Notification emails also were not showing up.
Some sloppy programming in pie-register.php between lines 1356 and 1370. A lot of mixing of double quotes and single quotes. I think the ultimate problem is the single quotes around one of the carriage return new line thingies. You have to use double quotes.
Not harmful but still perplexing is the inconsistent uses of concantenation and curly quotes. Pick one or the other and stick with it.
It also seems that a reliance on CKEditor in other areas of the program is misplaced. CKEditor seems to have stopped working in WordPress 4.0 and is no longer, apparently, supported. The “Replacement Keys” feature is rather unclear, anyway, and would be better implemented as a simple text explanation, ie., use “%user_name%” where you want the user name.
Otherwise, marvelous job.
October 21, 2014 at 12:46 pm #10002624Mike Soja
ParticipantI should have said curly braces.
Here is how I rewrote it:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=UTF-8\r\n";
if(!empty($from_email) && filter_var($from_email,FILTER_VALIDATE_EMAIL))//Validating From
$headers .= "From: {$from_name} <{$from_email}>\r\n";if(!empty($bcc) && filter_var($bcc,FILTER_VALIDATE_EMAIL))//Validating BCC
$headers .= "Bcc: {$bcc}\r\n";if(!empty($reply_to_email) && filter_var($reply_to_email,FILTER_VALIDATE_EMAIL))//Validating Reply To
$headers .= "Reply-To: Admin <{$reply_to_email}>\r\n";if($reply_to_email)
$headers .= "Return-Path: {$reply_to_email}\r\n";
else
$headers .= "Return-Path: {$from_email}\r\n"; -
AuthorPosts
- The forum ‘Installation’ is closed to new topics and replies.