Adam W. Warner
Forum Replies Created
-
Forum: Plugins
In reply to: Ecommerce and CRMsYes, a plugin is certainly worth it. I have been using WordPress for several years now and creating a shop with WordPress has been a rocky road to say the least. There are some plugins out there that work for some simple shops, but a full featured WordPress-(based or integrated) shop just does not exist yet.
Building a plugin to control your stand-alone shop software would be my preference because if I install the stand-alone shop, then I can forget that once it’s installed and manage everything from within WP. Not only is that convenient for the blog admin, but also for other members of that same blog to have easy access to the shop functions.
Of course, all of this is theory because I haven’t seen the actual shop yet, so I have no idea of how extensive the options are, whether it will be a paid option, etc. I also develop with WPMU and would be very interested in seeing how this might integrate with it.
I look forward to further discussion…
Forum: Plugins
In reply to: [Plugin: PhoneFactor] Plugin being spammedAlso hit https://showinabox.tv forum this morning…
Forum: Fixing WordPress
In reply to: 2.5 Automatic Plugin Upgrade – PCLZip errorThanks for posting here guys, I was trying to investigate why my “add media” button was missing, so i wanted to update all my plugins and came across this error. Upgrading WPAU allowed me to upgrade the other plugins and determine that the plugin causing my “add media” buttons to go away was WP-Amazon. Deactivated that, and pow, “add media” is back:)
Forum: Plugins
In reply to: Getting Three Loops NOT to DuplicateI received help elsewhere. Here is the solution that worked. In the third loop, I had to change this:
if( $post->ID == $do_not_duplicate )
…to this…
if( $post->ID == $do_not_duplicate1 || $post->ID == $do_not_duplicate2 )
Forum: Plugins
In reply to: Getting Three Loops NOT to DuplicateArrggghhh,
I keep trying different things, but can’t seem to get it right. Hopefully someone here will be able to point me in the right direction?
Forum: Fixing WordPress
In reply to: Create an RSS feed page to view subscribed blogsWow, very helpful, thanks to you both!
Forum: Plugins
In reply to: is there a forum that integrates with WordPress?Try this, they have great support for their plugin, Simple Forum found here https://www.stuff.yellowswordfish.com/simple-forum/
Also looks like they have a new version (BETA) 3.0. I would surely explore their site a bit.
Good luck!
Forum: Fixing WordPress
In reply to: Upgrade caused loss of Categoriescowboy has provided a solution that worked for me. Please follow the link above to read the fine details (and you’ll learn something about MySQL too).
Run his debug code (just insert it into your config.php file, save, then refresh your main page)
If your situation is similar to ours, you will see the error in the above post. That will clue you into what file you’re looking for.
I searched for this file ( #sql_126c_0.MYD ) and found it, then deleted it, and the categories seem to be working normally now.
(Your location will vary, I’m on a local install)
I found the file in this path C:\wamp\bin\mysql\mysql5.0.45\dataThank you so much for your help!
Forum: Fixing WordPress
In reply to: Upgrade caused loss of CategoriesHey cowboy,
Mine is a new install of 2.3.3. on a local server. Apache 2.2.6., PHP 5.2.5, and MySQL 5.0.4.5.
I have tried the debug code you suggested, have received something different from what you received. Here’s my error:
WordPress database error: [Can't create/write to file '#sql_126c_0.MYD' (Errcode: 17)] SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('post_tag') AND tr.object_id IN (1) ORDER BY t.name ASC
Obviously, something is causing this error, the trouble I have now is that I have no idea what to do now. I see this is referencing this: #sql_126c_0.MYD, but what is that? Is it a file, a location?
I would recommend others that are having these category issues to first run your debug code and post back with their errors. Maybe this will give all of you WP gurus some idea of what is causing these issues with so many different people and upgrades/fresh installs.
I look forward to any further advice any of you can add to help me along with this:)
Forum: Fixing WordPress
In reply to: Cannot add categoriesI am having the same exact issue as the Fizzgig, and have been searching for a solution.
I am learning toward it being related to WP core files instead of my host because I am having this issue on my local development server (WAMP).
I am using 2.3.3.
Please oh please, can we request that some WP gurus look into what could possibly be the cause? As I said, I am having these sames issues as Fizzgig posted earlier.
Forum: Themes and Templates
In reply to: wp_list_bookmarks, possible to display blogroll feed summary?Anyone have any thoughts on this?
Forum: Fixing WordPress
In reply to: Create an RSS feed page to view subscribed blogsitissue,
Would you be so kind as to post your finished coed here for our benefit?
Here’s what my new template page code looks like. Anyone offer any clues on how I might accomplish my goal?
<?php /* Template Name: Spreadshirt */ ?> <?php get_header(); ?> <div id="postcolumn"> <!-- Begin postcolumn --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2> <div class="entrytext"> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> </div> <!-- End postcolumn --> <?php get_sidebar(); ?> </div><!-- End Base --> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Page IDs are all the same, can someone help?Thanks you two. I checked in Admin under Options–>Blog address (URI):…and it included the page=14 part that it shouldn’t have. Everything is being fixed now. Thanks!
Forum: Fixing WordPress
In reply to: Page IDs are all the same, can someone help?…forgot to add that they DO show separate IDs in the Page Admin area.