milehighlife
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Content Doesn’t Save to DatabaseUsing the QuickPress form in the admin landing page I was able to save a draft WITH content. Checked the database and sure enough it was there. I went to edit the post, added more text to the content, saved…no change.
So there’s something about the create/edit post form that isn’t working.
Forum: Fixing WordPress
In reply to: Content Doesn’t Save to Databaseesmi,
Thanks much for your help.
I deactivated all plugins and switched to the WordPress Default theme. Still, the post body is not saving.
Your suggestion to disable the plugins made me think that maybe the W3 Total Cache installation could be causing the problem. I followed W3 Total Cache Uninstall suggestions; still no luck.
Forum: Fixing WordPress
In reply to: Content Doesn’t Save to DatabaseI followed these instructions and, for the most part, everything works. I just don’t understand how some of the post will get written to the database (title, author, posted date) and other parts not (post body, tags, etc.).
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Nextgen Thickbox/lightbox Effects not workingI stumbled onto this post and amazingly it worked for me! I have a custom theme and found other posts mentioning the
<?php wp_footer(); ?>snippet but not the <?php wp_head(); ?> snippet.I placed it in front of the </head> tag and…viola!
Thank you bee dudler!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thickbox problemNIEKler, I’m having the same problem. Wondering if you find a solution?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Effects not workingNextGEN (thickbox) was working until I upgraded to WP 2.8.4. I did as prescribed above–added the <?php wp_footer(); ?> snippet to my footer.php but gallery thumbnails are still displaying without effects–no rollover effects, thickbox doesn’t activate when the thumbnails are clicked (it simply opens the large image on the page).
When I view source of the page, there’s no thickbox javascript or css related files/code.
Any ideas?
Forum: Fixing WordPress
In reply to: RSS Feed Adding <html> and <head> tags@ kmessinger
The file I am refering to is header.php which is in your theme’s root.
So, I looked through the index.php, header.php and footer.php files of the default theme and, when combined, make a very similar page to my custom index.
So, I’m basically going to breakup my old index.php file to fit into these three files and create a theme.
Thanks again for your help!
Forum: Fixing WordPress
In reply to: RSS Feed Adding <html> and <head> tagskmessinger, thanks for your feedback.
So, are you referring to the file wp-blog-header.php?
Thanks again.
Forum: Fixing WordPress
In reply to: RSS Feed Adding <html> and <head> tagsThe index file has markup that echoes the theme of the entire website–structural div’s, ad zone includes, additional CSS. Is it time to move all of this formatting to a template file for my styled index page to work as before?
Forum: Fixing WordPress
In reply to: RSS Feed Adding <html> and <head> tagsI have a custom index.php file (which has been continually modified since WP 1.2 using ‘The Loop’) and replaced it with the WP 2.7 default index.php file and… viola! The feed works fine.
So, now I need to figure out how to use my old index.php. Is it as simple as placing it into a theme folder?
Thanks in advance.
Forum: Fixing WordPress
In reply to: RSS Feed Adding <html> and <head> tagsI’m having the same issue.
The XML of my posts flow in fine. But immediately following the XML is all of the markup for my index.php file, causing the XML parse error.
I was thinking it might be a permalink issue. I checked my .htaccess file (Mac OS X Server Apache):
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] # set the canonical url RewriteEngine On RewriteCond %{HTTP_HOST} ^mysite\.com$ [NC] RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L] </IfModule>