Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey ideaonly,

    Your post brought me the answer.
    I just had a look in the .htaccess file in my root-folder of my webspace.
    In there was written the following:

    #<IfModule mod_security.c>
    #<Files async-upload.php>
    #SecFilterEngine Off
    #SecFilterScanPOST Off
    #</Files>
    #</IfModule>

    So then I un-commented or activated the text to the following:
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    And now I can upload images without any problems and errors.

    Best regards, Alex

    Hey there,

    Are there already any solutions for this problem please?
    Unfortunately I got the same problem now with my new system!
    fyi:
    – WP Version 3.2.1
    – PHP Version 5.2.9
    – upload_max_filesize = 20 M
    – post_max_size = 10 M
    – uploads-folder CHMOD 777
    – mysql Client API version 5.0.45

    Any suggestions please?
    Would be nice, if someone could help please!

    Hey there,

    For those of you that still have problems with:
    “2nd page not showing, or the posts of the 2nd page are the same as on the first one”
    Here is my fix to this problem, as suggested by alchymyth:

    For your information: I’m Using WP v3.1.2, WP-PageNavi v2.74 and TwentyTen as my Theme.

    In my case it hasn’t anything to do with the index.php
    Here it was the <?php wp_reset_query(); ?> that was missing in the loop.php
    I inserted that now at the top of the file at line 21, followed by the code:

    <?php /* Display navigation to next/previous pages when applicable */ ?>
    <?php if ( $wp_query->max_num_pages > 1 ) : ?>
        <div id="nav-above" class="pageNav">
            <?php if(function_exists('wp_pagenavi')) : wp_pagenavi(); else: ?>
    
                <p style="float:left">
                <?php next_posts_link(__('&laquo; Previous entries','mytheme')); ?>
                </p>
                <p style="float:right">
                <?php previous_posts_link(__('Next entries &raquo;','mytheme')); ?>
                </p>
    
            <?php endif; ?>
        </div><!-- #nav-above -->
    <?php endif; ?>

    Although I had wasted hours to find a solution for this, it works fine now for me. Thanks for all your help!!!

    Greetz, Alex

    Hey Amisanoai,

    Have you found a solution for the problem? ‘Cause I have the same problem as you (had) and I don’t find a solution.

    Would be nice if you could help me please!

    Best regards, Alex

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