Yea.  That worked for me too.

Actually I thought that was the way it was supposed to be but now upon further investigation it isn't.  Maybe it is missing a file???

Mine has that issue as well.

http://shinji.chaosnet.org/forum/doku.php

I also found a bug where it will redirect to viewtopic.php rather than viewpoll.php when you use the Post Reply link.  This doesn't occur though if you use the Quick Post box.

I have found that there isn't a version of poll.php or moderatepoll.php for if you have attachment mod installed already.  These mods will work together just fine but you must edit the post right now to get an attachment on the post.  I am going to work on a modification of both poll.php and moderatepoll.php so that attachment mod will work seamlessly with easy poll.

Just to let you know but the instructions for installing with global announcements are wrong on steps 9 and 11.  You should be looking for these entries.  The code you mention is what is there before global announcment mod is installed.  I can get you the code for the after part because I commented out the original code so that is the only reason I was able to find what was needed.

In Step 9 it should be:

#
#---------[ 9. FIND (line:113) ]---------------------------------------------------
#

$sql = 'SELECT id, poster, subject, posted, last_post, last_post_id, last_poster, num_views, num_replies, closed, sticky, moved_to, announcement FROM '.$db->prefix.'topics WHERE forum_id='.$id.' OR announcement=\'1\' ORDER BY announcement DESC, sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'];

In Step 11 it should be:

#
#---------[ 11. FIND (line:117) ]---------------------------------------------------
#

    // With "the dot"
    switch ($db_type)
    {
        case 'mysql':
        case 'mysqli':
            $sql = 'SELECT p.poster_id AS has_posted, t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, t.announcement FROM '.$db->prefix.'topics AS t LEFT JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.poster_id='.$pun_user['id'].' WHERE t.forum_id='.$id.' OR t.announcement=\'1\' GROUP BY t.id ORDER BY announcement DESC, sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'];
            break;
        case 'sqlite':
            $sql = 'SELECT p.poster_id AS has_posted, t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, t.announcement FROM '.$db->prefix.'topics AS t LEFT JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.poster_id='.$pun_user['id'].' WHERE t.id IN(SELECT id FROM '.$db->prefix.'topics WHERE forum_id='.$id.' OR announcement=\'1\' ORDER BY announcement DESC, sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'].') GROUP BY t.id ORDER BY t.sticky DESC, t.last_post DESC';
            break;
        default:
            $sql = 'SELECT p.poster_id AS has_posted, t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, t.announcement FROM '.$db->prefix.'topics AS t LEFT JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.poster_id='.$pun_user['id'].' WHERE t.forum_id='.$id.' OR t.announcement=\'1\' GROUP BY t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, t.question, t.announcement, p.poster_id ORDER BY announcement DESC, sticky DESC, '.(($cur_forum['sort_by'] == '1') ? 'posted' : 'last_post').' DESC LIMIT '.$start_from.', '.$pun_user['disp_topics'];
            break;
    }
}

Glad it that worked out for you.

Problem solved.  It was my own damn fault.  It was something I should of checked but thought it was already set.  The "Alter Settings" page has the hard limit.  It is default to 2000 bytes.  I though it said kilobytes.  That was why it was rejecting.  The one I did as member probably was just a small <2k text file I did as a test.

This means that everyone that installs this mod should check that out.  I overlooked it.  *bangs his head a few times with an iron bat*

Oh and there is a typo on the orphan delete confirmation page.  It shows as "Orpahn attachment deleted."

Ok I have it installed now.  I have a problem.

As administrator attachments will not show up during new topic post.  However attachments will get uploaded when I edit the post.

As a regular user attachments will show up during both topic post and edit.

In all cases the file is indeed getting uploaded but it never appears if an administrator is creating the topic or reply.  Only on edits for administrators.

For reference here are the mods installed:
PunDokuWiki 1.1
PunOnline 1.2.1
Attachments Mod 2.0.1
Image Verification Mod 1.0.3

Well it isn't right now.  I just tried again (went to see a movie) and it still ain't working.  The site resolves but no connection.  Grrr...  That would be the main mod too.

I am unable to access the download site to get this mod.  Is there an alternative location where I can download the mod?