bk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Backup Week July 23-30This backup plugin is amazing, I must say. Thank you very much Skippy/Ringmaster. 🙂
Forum: Fixing WordPress
In reply to: WordPress Backup Week July 23-30Lorelle, an email sits in GMail as long as you want. If it’s in your Inbox, then you don’t have to worry about losing it.
Forum: Plugins
In reply to: new plugin: Project Dolphin keystroke stat displayerGood release. Thank you. 🙂
Forum: Plugins
In reply to: iTunes OSX PluginI would love to have a WMP one.
Btw, here’s the correct link. 🙂Forum: Fixing WordPress
In reply to: Added Permalinks – now I lost my header imageHmmm…
Do you have
<?php get_header(); ?>in yoursingle.phpandcomments.phpfiles?Nice site design, btw.
Forum: Installing WordPress
In reply to: Different Sidebars?I think I got it working. 🙂
Forum: Installing WordPress
In reply to: Different Sidebars?
<?php
$post = $wp_query->post;
if ( in_page('9') ) {
include(TEMPLATEPATH . '/sidebar_portfolio.php');
elseif ( in_page('10') ) {
include(TEMPLATEPATH . '/sidebar_archives.php');
elseif ( in_page('12') ) {
include(TEMPLATEPATH . '/sidebar_about.php');
} else {
include(TEMPLATEPATH . '/sidebar_normal.php');
}
?>
That’s what I am putting. Is it right?
Forum: Installing WordPress
In reply to: Different Sidebars?But this works with only categories, right? Not pages?
Forum: Installing WordPress
In reply to: Different Sidebars?So, am I, right or wrong?
Forum: Installing WordPress
In reply to: Different Sidebars?Hmm… okay. I’m kinda getting this. Sounds pretty easy.
But where do I have to enter these tags?Do I have to use the code posted in Variable Sidebar Content? Replace it with my current code in
sidebar.php?Forum: Fixing WordPress
In reply to: Comment Page (Database) ErrorsHah, the Extended Live Archive Plugin was causing the problem, I think…
Forum: Fixing WordPress
In reply to: Comment Page (Database) ErrorsDisabled all the plugins. Switched to WordPress Classic Theme and it works perfect now.
So I’m guessing the problem was in one of the plugins?
Forum: Fixing WordPress
In reply to: Comment Page (Database) ErrorsShould I try and repair the MySQL database in my CPanel?
Forum: Plugins
In reply to: Plugin Competition Winners !Congrats to the winners. 🙂
Forum: Fixing WordPress
In reply to: Comment Page (Database) ErrorsSorry. Here’s the error when you try to leave a comment.
WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ” at line 3]
SELECT post_id FROM wp_post2cat WHERE category_id =Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-comments-post.php on line 51
Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-comments-post.php on line 52
Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-comments-post.php on line 53
Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-comments-post.php on line 55
Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-comments-post.php on line 56
Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-comments-post.php on line 57
Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-comments-post.php on line 58
Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-includes/pluggable-functions.php on line 129
And here’s the error when I try to delete a comment.
WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ” at line 3]
SELECT post_id FROM wp_post2cat WHERE category_id =Warning: Cannot modify header information – headers already sent by (output started at /home/xeenat0/public_html/wp-includes/wp-db.php:98) in /home/xeenat0/public_html/wp-admin/post.php on line 556
Thank you, in advance for your help.