All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Ericr

Pages: [1]
1
WP-EMail / Empty delimiter error in wp-email.php on line 1252
« on: 05 December 2011, 23:34 »
I wrote a php script that calls wp-load to access the database and is run as a daily cronjob. Its output is appended to a file, and the first line added is "Empty delimiter in /home/[user]/public_html/news/wp-content/plugins/wp-email/wp-email.php on line 1252".

I commented out lines 1252-1332, which appears to have fixed that for me, but it wouldn't work for anyone running wp-stats (unless running wp-stats would have prevented the problem from occurring in the first place).

2
WP-EMail / WP-EMail 2.50 not sending
« on: 17 June 2009, 15:00 »
After upgrading WP-EMail to 2.50 (after upgrading WP to 2.80), it no longer sends.

I updated the permalinks and have tried all modes: PHP, Sendmail, and SMTP. WP-EMail 2.4 under WP 2.7 was working fine using Sendmail. It is back on Sendmail now; see example:

http://www.wind-watch.org/news/2009/06/17/clean-energy-windmills-a-dirty-business-for-farmers-in-mexico/email/

3
WP-EMail / Custom template
« on: 05 November 2007, 16:06 »
Wp-email 2.20 on Wordpress 2.3.1

Upgrading from verson 1-something, I did not like the way the email page now used the theme templates. And in one of my blogs, the preferred use of page.php meant that the email page didn't appear at all since page.php is used there to provide full archive access and not to display a post (I'll get around to giving it its own page one of these days).

So, in wp-email.php, I made a couple of changes.

First, I changed the order of checking for templates, putting page.php last.

Second, I had it check for an "email.php" template first:

### We Use Page Template
if(file_exists(TEMPLATEPATH.'/email.php')) {
   include(TEMPLATEPATH.'/email.php');
} elseif(file_exists(TEMPLATEPATH.'/single.php')) {
   include(get_page_template());
} elseif(file_exists(TEMPLATEPATH.'/index.php')) {
   include(get_single_template());
} else {
   include(TEMPLATEPATH.'/page.php');
}


I created an email.php template much more appropriate to the function than a normal post page, basically stripping away most of the post information, navigation, and other features.

You can see it at: http://www.wind-watch.org/news/. Click on a story, and then on the email icon.

Pages: [1]