Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Forum: Plugins
    In reply to: Captcha for registration
    mojoski

    (@mojoski)

    There 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 registration
    mojoski

    (@mojoski)

    Bumping this up as I need an answer as well. Surely someone must have done this already?

    You 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.

    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?

    Thread Starter mojoski

    (@mojoski)

    Bump! Anyone have any desire to help me figure this one out?

Viewing 5 replies - 1 through 5 (of 5 total)