Moominmama
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Blank page when transferring WordPress to another serverI’m having the same problem and am hoping grafx77 will come back and tell us how s/he resolved the issue. (I see the site is up and running.)
Forum: Installing WordPress
In reply to: wp_terms’ doesn’t exist ERROR upgrading to 2.3Thank you for your step by step post! I wouldn’t have been able to fix things without it but this worked for me. The last two wordpress upgrades have been horrible — I think I’m going to hang here for awhile at 2.3.
Forum: Installing WordPress
In reply to: Local install XP, XAMPP functions.php errorI’m doing a new install of wordpress for a friend and am getting the same error. I’ve tried the suggestions here (and in other threads) and have also tried doing a fatastico install on the server to see if it was something on my end.
I’m mentioning this just in case it’s a bug that needs to be noted.
Forum: Alpha/Beta/RC
In reply to: 2.1 RC1 link/blogroll problemicapdeville, thanks for this — it fixed my broken categories after my upgrade to 2.1.3
I know this is an old post but wanted to bump it in case anyone else came looking!
Forum: Fixing WordPress
In reply to: post.php (video/x-ms-asf Object) ????No it only happens when I’m posting. I don’t think my visitors get anything like it.
It goes like this:
1. Write my entry.
2. Hit publish.
3. Instead of reloading with the wordpress screen, screen goes blank and post.php (video/x-ms-asf Object) is in the title bar.
4. Post is published.So instead of getting my entry screen saying my post was published and having the opportunity to edit, I just get a blank screen and that weirdness in the title bar.
Forum: Fixing WordPress
In reply to: strtotime error after running fineHaven’t changed any passwords. But you got it! It’s not the vox plugin — it’s the LJ one. I wonder what’s up with that? Wonder why it went screwy?
Thanks very much! I’ll take this to the LJ crossposter topic tomorrow!
??
DawnForum: Fixing WordPress
In reply to: strtotime error after running fineNope, uploaded fresh copy and it’s still not working. Any idea what the “Invalid password” means? What password is it talking about?
Forum: Fixing WordPress
In reply to: strtotime error after running fineI’m running 2.0.4
Plugins:
Akismet
Categorical Links Page
WP-DBManager
KG Archives
LiveJournal Crossposter
My Link Order
Dextaz_Ping_Update_Services
Page Links To
Lightbox 2 Plugin
Google Sitemaps
Get Comments Count
WordPress Reports
Ultimate Tag Warrior
Ultimate Tag Warrior: Tag Archive
Tag cloud widget
Ultimate Tag Warrior
Vox Crossposter
FeedStats
WordPress Database Backup
Random Quotes
WP-ContactForm
iTunesSpy SidebarWidget
iTunesSpy
Sidebar Widgets
Around this date in the past?
wp-cache
Random Quote widget
WP-Amazon
Zap_NewWindowForum: Fixing WordPress
In reply to: strtotime error after running fineTalked to my host and they said no changes on their end…
Forum: Fixing WordPress
In reply to: Archives missing in actionThanks! I ended up reinstalling bits and pieces of the theme and now the archives are there but looking wonky so I’m on to a new set of problems to fix. I appreciate everyone’s time here!
Forum: Fixing WordPress
In reply to: Archives missing in actionbump
Forum: Fixing WordPress
In reply to: Archives missing in actionAlso, sorry about the enormous code. I’ve followed the mod’s suggestion and the archives.php file is now here:
https://thiswomanswork.com/archives.txtForum: Fixing WordPress
In reply to: Archives missing in actionYes, my .htaccess file is:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
RewriteRule ^archives/ archives/index.php [QSA]I really appreciate the two of you taking time to help me figure this out!!
Forum: Fixing WordPress
In reply to: Archives missing in actionHi Danny, I did see that but haven’t found any missing punctuation (doesn’t mean I didn’t miss it). ZMAng, that’s what’s bothering me, too — I couldn’t figure out which “index.php” it needed to call.
Here’s the archives.php:
[moderated: HUGE chunk of code snipped. Consider using a pastebin type service, or putting the code in a .txt file, and linking to it from here instead]
I don’t have a category.php
Forum: Fixing WordPress
In reply to: Archives missing in actionThanks Dan. Those are new errors from my blogads (I’ve had trouble with blogads before and fixed it so the site would validate then they switched the code on me). I will fix them but the problem was happening before with the old validating code up, too.
There is no wp directory because I installed it right under my public_html directory.
And ZMang, here’s the index.php file.
<?xml version=”1.0″ encoding=”utf-8″?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” xml:lang=”en” lang=”en”>
<?php
get_header();
get_sidebar();
?><div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?><div id=”post-<?php the_ID(); ?>” class=”post”>
<div class=”post-header”>
<h2 class=”post-title”>” title=”Permalink to <?php the_title(); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<h3 class=”post-date”><?php the_time(‘d-M-y’) ?></h3>
</div><!– END POST-HEADER –>
<div class=”post-entry”>
<?php the_content(); ?>
<?php link_pages(‘<p style=”font-weight:bold;”>Pages: ‘, ”, ‘number’); ?>
</div><!– END POST-ENTRY –>
<div class=”post-metadata”>
<p class=”post-footer”>Filed in <?php the_category(‘ • ‘) ?></div> | ” rel=”permalink” title=”Permalink to <?php the_title(); ?>”>Permalink | <?php comments_popup_link(‘Comments (0) »’, ‘Comments (1) »’, ‘Comments (%) »’); ?> <?php edit_post_link(‘Revise’, ‘ | ‘, ”); ?>
</div><!– END POST-METADATA –>
<!– <?php trackback_rdf(); ?> –>
</div><!– END POST –><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Older posts’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Newer posts »’) ?></div>
<div class=”middle”>/” title=”Home: <?php bloginfo(‘name’); ?>”>Home</div>
</div><!– END NAVIGATION –><?php else : ?>
<?php /* INCLUDE FOR ERROR TEXT */ include (TEMPLATEPATH . ‘/errortext.php’); ?>
<?php endif; ?></div><!– END CONTENT –>
<?php get_footer(); ?>