markj81
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't add images to site now that I've upgraded to 3.7@esmi I’ve just sent them a support ticket to see if they can help rectify the problem. I am unable to view a file that I uploaded directly to the folder also
Thanks
Forum: Fixing WordPress
In reply to: Can't add images to site now that I've upgraded to 3.7Thanks,
I just checked having made the wp-content/uploads/2013/11/ folder 755
I uploaded a new image and the image sits there, at 644, with it’s various sizes created upon upload… but it still shows 403:
https://www.friedmylittlebrain.com/wp-content/uploads/2013/11/dj_shadow-ph-750×600.jpg
Time contact the hosting provider?
Forum: Fixing WordPress
In reply to: Can't add images to site now that I've upgraded to 3.7Hi @wpranger, I checked and the uploads folder seems to be 774
What should it be?
Images were previously organised into a folder called wp-content/up but with the upgrade it seemed to make the wp-content/uploads folder instead
Thanks
MarkForum: Fixing WordPress
In reply to: Can't add images to site now that I've upgraded to 3.7It seems that there’s a 403 on any of the images too
I can check on the server, through FTP and the file does exist
Thanks
MarkThanks. So I’d replace with the following?
<?php if (have_posts()) : ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts(array( 'category_name' => 'News', 'posts_per_page' => 6, 'paged'=>$paged, )); ?> <?php while (have_posts()) : the_post(); ?>
`<!– News –>
<div class=”header-box”><h1><a href=”/tfc/news/”>NEWS</a></h1></div>
<div class=”blog-box”><?php if (have_posts()) : ?>
<?php query_posts(‘category_name=News&showposts=6’); ?>
<?php while (have_posts()) : the_post(); ?>
<!– The post –>
<div class=”post” id=”post-<?php the_ID(); ?>”><!– The title –>
<div class=”title”><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></a></div><!– Meta details –>
<div class=”metaline”>Posted on <?php the_time(‘F jS, Y’) ?> in <? the_category() ?> | <?php the_tags() ?></div><!– Thumbnail –>
<div class=”thumbnail”><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_post_thumbnail(‘thumbnail’); ?></a></div><!– The excerpt –>
<div class=”entry”>
<!– Excerpt limited to 25 words –>
<?php the_excerpt(25); ?>
<p class=”readmore”><a href=”<?php the_permalink() ?>”>Read more</a></p>
</div><div class=”clear”></div>
</div><div class=”clear”></div>
<div class=”break”></div>
<!– end post –><?php endwhile; ?>
</div><div class=”page-navi”>
<?php wp_pagenavi(); ?>
</div>
</div>
<?php endif; ?>I’ve tried that but the comment add box still shows up – im guessing i need to delete something/comment something out in the php template?