whiteorb
Forum Replies Created
-
Same issue getting a 404 on Revisionary Options screen.
Forum: Fixing WordPress
In reply to: Pulling specific pages with meta & the loopI could really use some help on this one. I’ve found information on how to create multiple custom fields and how to query multiple types but nothing on how to query multiple values from a single meta_type.
For example I have the meta_type as “product” and it has the meta_value “indoor, outdoor, daynight” I then have the loop.
<?php query_posts( 'post_type=page&meta_value=outdoor' ); ?>
It simply doesn’t recognize that outdoor is a value.
I’ve tried a number of things (not that I have a perfectly clear understanding) but they all run me in circles and generally break.
Any ideas or direction would be very useful. Thanks again
Forum: Fixing WordPress
In reply to: Pulling specific pages with meta & the loopSorry, it would have the name=Type and value=indoor, outdoor, etc
And this loop would pull all devices with the value indoor.It doesn’t seem to work with I add the comma separated fields.
Forum: Fixing WordPress
In reply to: Pulling specific pages with meta & the loopRegarding separating values with a comma. Some of these products are going to have multiple value but the loop only needs to display one at a time. In this instance it would be “indoor” when the product may have “daynight, network, indoor” I read the post that you were kind enough to recommend but I’m unsure how to implement it in this instance.
Forum: Fixing WordPress
In reply to: Displaying specific information from the_meta()Perfect thanks. Is it possible to seperate values with a colon or semi-colon or do I have to create a new field each time?
example: name=type
value=indoor, outdoor, daynight, networkForum: Fixing WordPress
In reply to: Pulling specific pages with meta & the loopOpp ok, found the problem
<?php the_excerpt; ?>
needed to be<?php the_excerpt(); ?>
Thank you for the help!
Forum: Fixing WordPress
In reply to: Pulling specific pages with meta & the loopI’m able to do it when not using custom fields and just pulling from the post_parent. I think this code may be messy as well. I simply modified the array to pull the ID from current page.
<?php $args=array( 'orderby' => 'title', 'order' => 'ASC', 'post_type' => 'page', 'post_status' => 'publish', 'posts_per_page' => -1, 'caller_get_posts'=> 1, 'post_parent' => $post->ID ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <?php $imageurl = get_post_meta($post->ID, 'imageurl', true); if ($imageurl) { ?> <?php } else {?> <div class="entry-content"> <div style="float:left;"> <?php the_post_thumbnail(); ?> </div> <div style="float:right; width:350px;"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> <?php the_excerpt(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?> <?php the_tags('<div> ', ', ', '</div>'); ?> </div> </div><!-- .entry-content --> <?php } endwhile; } wp_reset_query(); ?>
Forum: Fixing WordPress
In reply to: Pulling specific pages with meta & the loopI have tried that or something similar. It pulls the thumbnail and the title but not the excerpt.
Thanks!
Forum: Networking WordPress
In reply to: Cannot add additional userOk, so I tested every type of transparent and non-transparent image format I could generate (png, gif, jpg). The error still occured. I then tested the “Upload a Zip-File” option and that works fine. I verified the permissions on the “wp-content/blogs.dir/1/files/”. I then accessed php.ini and super admin > options and changed my max upload size to 100MB.
Still receiving the same error.
Forum: Networking WordPress
In reply to: Cannot add additional userI actually resolved this issue. It was related to a recent chrome update that doesn’t make any sense. However, I am experiencing the same 500 error on the nexgen gallery when using the flash uploader. I wouldn’t care if it didn’t affect png backgrounds.
I’ve gone through all of the usual steps. Changing permissions on the IIS_USR in C:/windows/temp (which worked on another 500 error), nada. I tried changing permissions on the directory itself. I looked into the .phpx handler and that doesn’t seem to even make sense.
Unsure where to go at this point, any ideas?
ERROR HTTP ERROR : image.png : 500
Forum: Networking WordPress
In reply to: Cannot add additional userI’m experiencing this exact same issue. I have an IIS 7 installation using MySQL and when I add a new user (without any plugins installed) I receive the 500 error.
500 - Internal server error. There is a problem with the resource you are looking for, and it cannot be displayed.
I’m unsure what’s causing the problem. Any Ideas?