• Has anyone tried wp-autoblog with wp2.1? I didn’t see the plugin listed as works, kind of works, or broken.

    don (el paso)

Viewing 1 replies (of 1 total)
  • 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?

Viewing 1 replies (of 1 total)
  • The topic ‘wp-autoblog and wp2.1 working or not?’ is closed to new replies.