mojoski
Forum Replies Created
-
Forum: Plugins
In reply to: Captcha for registrationThere is another discussion on this topic going on here:
https://www.ads-software.com/support/topic/96820?replies=13
Why don’t we all move to that thread?
Forum: Plugins
In reply to: Captcha for registrationBumping this up as I need an answer as well. Surely someone must have done this already?
Forum: Plugins
In reply to: FeedWordPress plugin imports only date and title, not contentYou might want to check the web server error log. I was having a similiar issue and it turned out to be a problem with the parsing of the dates. If you do a search here for “gmmktime” you will find my fix.
It turns out that I though nothing was happening for me, but in reality all of the posts were being added to my DB, but with ancient 1970 dates, so they weren’t showing up on my site’s front page.
Forum: Everything else WordPress
In reply to: wp-autoblog and wp2.1 working or not?I have gotten it installed and working, kind of.. The first issue I had was with the date formatting in the Atom feed I was trying to parse. I kept getting an error related to the gmmktime funtion parameters in my web server error log.
I found a snippet somewhere on the net that said to edit the rss_utils.inc file so that I replaced this line:
$epoch = gmmktime( $hours, $minutes, $seconds, $month, $day, $year);
with this line:
$epoch = gmmktime( (int) $hours, (int) $minutes, (int) $seconds, (int) $month, (int) $day, (int) $year);
I had seen some people complaining about the same gmmktime errors that I was getting so I thought I’d post this fix that worked for me.
The problem I’m having now is that all of the HTML tags in the posts are getting lost. I’m guessing it has something to do with the brackets around the tags, encoding and the SQL server, but I really have no idea…
Any suggestions?
Forum: Plugins
In reply to: SQL Errors with FeedWordPress & WordPress 2.1Bump! Anyone have any desire to help me figure this one out?