invisiontech
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Fail updating 0.9.2.6I guess, I don’t need to create another failed upgrade thread. 🙁
Same here, can’t seem to finish upgrading, its looking/erroring about files that are not in wp-content folder (checked from ftp and ssh). It says, they are there!!!
Forum: Plugins
In reply to: [SEO SearchTerms Tagging 2] [Plugin: SEO SearchTerms Tagging 2] Stop workingAny fix yet… emailing the dev yields no results but returned/deliverable email.
Forum: Plugins
In reply to: [SEO SearchTerms Tagging 2] [Plugin: SEO SearchTerms Tagging 2] Stop workingI have same issue, it was working and now stopped working…
tried emailing the developer but emails bounce back.
In Version 0.9.2.4, attachments (post images) are not served from the CDN while other files are. I’ve put wp-content/uploads/* in the custom file list but to no avail.
If I change the Full URL path to files under Settings > media, then it works but that breaks another plugin i use.
Forum: Fixing WordPress
In reply to: WordPress site stopped working?Well, I fixed the problem.
It seems the “user” ran out of disk space.
I SUSPECT that the damn WP Super Cache plugin (i like the plugin though 🙁 ) must have done it.
Forum: Plugins
In reply to: timthumb – no image shownI have similar issue with timthum…
I am in process of moving servers… having file path issues with one of the websites that I did not have on the old server. This is one site that I moved to the new server and started experiencing this problem!!!
I am trying to call thumbnail picture like this:
website url: http://www.mywebsite.com and image is pulled from
/pictures/data/images/image.jpg
or
/images/2009/image.jpg
I have the path starting with / but if I remove the “/” the picture shows up. I would like to get this working with path starting with “/” and not have to edit 2000+ entries.
I tried playing aroun with different options in php.ini/apache but no help, actually the config is almost same as the old server so… i don’t know what is causing this behavior!
This is a dedicated server with CentOS 5.4 64bit, apache 2.2 and php 5.
Any help would be greatly appreciated!
thanks
Forum: Fixing WordPress
In reply to: Tag Conditional not working…Excellent, thank you much for help!!! You’re great.
Question, from the code you posted above, what if I wanted to show the
<?php }else{ ?> something else <?php } ?> <?php endwhile; ?On post page as well as the non post pages like category and home page as well? Is that possible?
Thank you again.
Forum: Fixing WordPress
In reply to: Tag Conditional not working…Tomontoast,
Thank you, works great.
Can I expand that and do this?
<?php while (have_posts()) : the_post(); ?> <?php if (has_tag('keyword')) { ?> <div class="post"> <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3> <small><?php the_time('l, F jS, Y') ?></small> <div class="entry"> <?php the_content() ?> </div> </div> <?php }else{ ?> <?php if (has_tag('keyword-2')) { ?> something else <?php }else{ ?> <?php if (has_tag('keyword-3')) { ?> something else <?php }else{ ?> something else <?php } ?> <?php endwhile; ?>Thanks
Forum: Fixing WordPress
In reply to: Custom Field on Quick Edit?Thanks. It shows everything else but custom fields edit so I was wondering if there is a way… I’ve got about 17k entries that I need to add picture to! 🙂
Forum: Fixing WordPress
In reply to: Show Certain Links, etc. on HOME only?Bumpy
Okay, so i’ve got this far:
<?php // shows link on homepage only if (is_home()){ echo 'htmlcode'; } ?>Lets say I want to have links in a list… like the one a widget would generate, would that work with the code above?
Thanks!