phisch
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I allow comments on images?esmi, thanks but does this apply to NextGen gallery also? And if not, what do I include in the image.php template to get it to work? I’m very much a novice at WP.
Forum: Fixing WordPress
In reply to: Fatal error: call to undefined function…etc.Thank you, thank you, thank you!
Until you posted that I hadn’t noticed there were 2 index.php files and I wrote over the one that’s in the root directory with the one that was from the themes directory.
All’s well and again many thanks.
(a BIG thanks to the WP volunteer community! you’re awesome and I don’t think you get enough thank yous)
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)OK…for the record…Podz rocks but then you probably knew that.
Thanks!
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)wow, thanks! Sending it off…
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)Clarifications, please, because I have not had coffee.
You said “Install 1.2” <–can I move over all my 1.2 files and simply change wp-config to reflect the new server’s info or should this be a clean install from the get-go?
You said “Drop the database tables.” <–is this thru PhPMyAdmin and you mean just delete all the tables but not the DB itself?
You said: “Delete the 1.2 files”<–all or should I save the subsequent wp-config.php file?
Thanks…don’t mean to be a bug but I am hoping to do things right from the get go 🙂
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)It seems like the simplest thing is to figure out a way to import the information. Is there some sort of control in PhPMyadmin that will let me say “just don’t bother putting anything in this extra field?”
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)Well I just realized there’s an issue with this. I have PHP MYAdmin. Should I use that to dump the DB that was created with the 1.5.3 install then make a new one? This is turning out to be rather difficult!
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)No. I dumped it all from the old server. I still have all the 1.2 files though. Maybe I’ll try that, thanks.
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)Hi Davespink, where do I remove DEFAULT CHARSET = latin1 from?
I guess the difficulty is that I’m moving from an old server with 1.2 to a new one–no MySQL database.
What I think I need to figure out is how to take the database data and make it fit with the 1.5.3 install of WP on the new server.
Forum: Fixing WordPress
In reply to: Error restoring from a backup (and moving servers)Fantastico installed 1.5.1.2. Should i just delete all of it and do it by hand, then?
Sorry, Beel, I’m not at all versed in anythign sql so I have no idea how to even begin to do what you’re suggesting (utter noob here)
Forum: Fixing WordPress
In reply to: What file shows when I click…Thanks…but I think that the page you link to has the answer (for my question) backwards.
I wanted to know what happened when, if I”m on index.php, I click on the story headline and a page shows up. I found out that it was single.php.
Thanks though!
Forum: Fixing WordPress
In reply to: Subcategories listed as subcategoriesThanks to bruce2004! I just added a dash in front of the subcat’s name and it works!
Only issue might be if you want to re-order them, but so far I’ve not needed to.
Forum: Plugins
In reply to: All Kitten’s PluginsIn case it’s needed, the blog in question is here: http://www.hornbostel.org
Forum: Plugins
In reply to: All Kitten’s PluginsSeems so sort of work. It seems to display the categories I tell it to, but also the subcategories under them.
Forum: Plugins
In reply to: All Kitten’s PluginsI downloaded this and looked at the docs. In the instructions, you see this:
To omit categories from your pages, do the following:
In index.php replace:<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
with:
<?php hide_category_posts( ‘category=1’ ); ?>
<?php if ($hcp_posts) : foreach ($hcp_posts as $post) : start_wp(); ?>
However, I don’t find the first string of code at all. This is the closest I have:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
Is this a version issue? I have 1.5 if that’s the case.