Jason_K70
Forum Replies Created
-
Forum: Reviews
In reply to: [Search & Replace] Beware! v3.20 update broke my WordPressOne of my clients installed v3.2.0 and had the same issue. I used WP_DEBUG to isolate the problem this morning, and I got the same error message as @vgergo. Removed the plugin and the site is working as normal again. PHP version is 5.6, so it seems that 5.6 might still be too low a version.
Forum: Developing with WordPress
In reply to: Loop with pagination only showing two pagesThank you all for your responses. Michael, I integrated the $max_pages parameter, from the link you posted, but the issue remained. The link you posted, bcworkz, seems to explain the problem. I removed the posts_per_page argument that I was using and everything worked fine. It appears to be that this offset that was causing the problem.
So right now it works, although my current number of posts per page is the default 10, which I can handle for now. I’ll look into using pre_get_posts, though.
Thanks again.
Forum: Fixing WordPress
In reply to: Forbidden access to uploaded PowerPoint filesGlad it helped. I spent such a long time trying to get to the bottom of this, too!
Forum: Fixing WordPress
In reply to: Forbidden access to uploaded PowerPoint filesFor anyone else experienceing this issue, I found the cause. There were a few lines of code in an htaccess file in the uploads directory which were denying access to all file types except those specified. I added ppt and pptx and everything works now.
Order deny,allow Deny from all <Files ~ ".(pdf|csv|doc|docx|jpe?g|png|gif|ppt|pptx)$"> Allow from all </Files>
Hope this helps others.
Forum: Fixing WordPress
In reply to: finding published pages not linked toHi @wonderwoman2. Did you ever find a solution to this. I’ve inherited a site that someone else built and I’ve got a huge tidying-up job to do on it. This would be a real time-saver.
Thanks
JasonHi Paul,
It may be that you’re clicking “Save” when you’ve uploaded the file. Instead you should click “Insert into post”.
J