drewbarden
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] No file paths defined.@jodiw I think you’re right – locally with a domain string of the same length as my live site, there is no problem downloading. However on a “staging.***.com” subdomain, I catch the No Filepath Defined error.
However, this still poses a problem if I’m advancing a database through environment stages and eventually to production.
Help?
Dreamhost Fix/Response:
Thank you for your email. I tested the mail form on your site and I did
see that the emails are being blocked by the server due to recent
implemented anti spam policies which won’t allow email sent from the
server using non-Dreamhost outgoing servers. You can read more details on
this policy here;Your mail form is using the email address that the visitor submits with
the form as the “From” address to send from the server. The server will
block any email attempting to be sent off the server if it is ‘not’ being
sent from a Dreamhost hosted email address. So what you will need to do
is set the “From” address in your mail form to be a Dreamhost hosted
email address. If that is not possible you will want to find a mail form
that will allow you to set this, so that email can be sent off the
server.Hopefully this is helpful to someone else!
I have six websites hosted by Dreamhost currently that aren’t firing a response, but with the CF7 success message. It seems quite intermittent, and I cannot seem to isolate the issue.
I always use these plugins: Advanced Custom Fields, Yoast’s SEO plugin, WP Super Cache. I’ve tried deactivating one at a time, and then all except CF7 and can’t seem to get a response.
Can anyone else confirm this is a problem?
This plugin is fantastic and I use it in almost all my projects. WordPress 3.1.1, Attachments 1.5.2: the browse and library buttons are broken.
This is happening on four or five of my sites… any chance the fix has indeed not been put into place?
Forum: Networking WordPress
In reply to: Turn a WP site installed in subdomain to a subdomain networkI am interested in this same issue—has there been any resolution?
Forum: Fixing WordPress
In reply to: WordPress Network on a subdomain, new site on a DIFFERENT subdomainForum: Fixing WordPress
In reply to: Correct Pagination w/ PageNavi and query_postsWhoops, my mistake. Ok well that was a separate issue altogether—and somehow it wasn’t affecting the output. The issue remains though, of the missing seven posts between the first page and the second.
Forum: Plugins
In reply to: [Cache Images] [Plugin: Cache Images] Some images not cachingThis is still a great plugin, however this other plugin Hotlinked Image Cacher did the trick. All my images are cached now—including those with uncouth characters.
Forum: Plugins
In reply to: [Cache Images] [Plugin: Cache Images] Plugin timing outOk, well it’s a great plugin anyway and I appreciate the prompt responses. If you make any determinations, please keep us updated!
Forum: Plugins
In reply to: [Cache Images] [Plugin: Cache Images] Plugin timing outI’m sorry, it must have been the fault of one of the servers—today it ran smoothly. The issue at fault may have been the inclusion of plus symbols in image titles. There is another post about this issue—and unfortunately it’s causing over 500 images not to be cached.
Forum: Plugins
In reply to: [Cache Images] [Plugin: Cache Images] Some images not cachingShoot, this appears to be the problem I’ve got as well. There are over 500 images in the account I”m trying to migrate. Any solutions?
Forum: Fixing WordPress
In reply to: Conditional Template page navigation… help!Ummm I found a plugin, Category-Pagination-Fix, which fixed the problem.
Forum: Fixing WordPress
In reply to: Conditional Template page navigation… help!However if I add the last else statement, page 2 ends up displaying “Else”
<?php } elseif (in_category('news_media')) { ?> <div class="grid_12 relative wide_top"> <div id="bookmarks" class="grid_5"> SIDEBAR CONTENT </div> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="news_col1 grid_5 prefix_1"> NEWS + MEDIA CONTENT </div> <?php endwhile; ?> <?php endif; ?> <div class="pagination prefix_1 grid_5"> <?php posts_nav_link('|','Previous','Next'); ?> </div> </div> <?php } else { ?> Else <?php } ?>What’s the problem???
Forum: Fixing WordPress
In reply to: Custom select query – sort by meta value within categoryOk Fantastic. This is good. This is where I need clarification:
I don’t understand how I would create a link, leading to a posts page filtering with this code:
$querystr = " SELECT wposts.* FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = 'custom-key' AND wposts.post_type = 'page' ORDER BY wpostmeta.meta_value DESC ";Forum: Fixing WordPress
In reply to: Custom select query – sort by meta value within category