whistler2020
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My header is screwing up my index but not other pagesprobably your in theaters flash…pokes out a little more on the right
Forum: Installing WordPress
In reply to: Admin panel errorvolunteers at work here….maybe you need to include more information
Forum: Installing WordPress
In reply to: Login failuremost likely your wp-config.php file has extra characters outside of the php markers
<?php ?>
Forum: Installing WordPress
In reply to: Cant install 2.5link
Forum: Installing WordPress
In reply to: Forgot to write down my passwordif you entered your correct email all you have to do is request a new password
Forum: Fixing WordPress
In reply to: Insert Page Contents into a Postlook up how to use templates
Forum: Fixing WordPress
In reply to: Ad Rotator Trouble – Fatal Error Call to Undefined Functionwhat does the code look like where your include is located? and where is the ad script in relation to your wp install?
Forum: Fixing WordPress
In reply to: blog page is using page template! Helpwhat you are saying doesnt make sense because your wp is installed in your main directory and /blog/ is just a news page.
Forum: Installing WordPress
In reply to: Installed 2.5, No formatting on log-in page!check your settings and make sure your wordpress and blog address are correct.. then make sure your index.php points to the right install folder
Forum: Installing WordPress
In reply to: To install WordPress in root or subdirectory- or a combination?whether you install in a folder or not does not effect whether your blog is seen as https://www.domain.com/blog or as https://www.domain.com
You can install into your main directory, and have your blog show as being a subdirectory. you just need to have that index.php located inside of the directory you want to use and edit the require line so that it points at your wp-blog-header.php file wherever your install is.
Forum: Fixing WordPress
In reply to: safari and firefox display aligned leftlooks good in opera and firefox…ie messed up tho
the register line is not a big deal
Forum: Installing WordPress
In reply to: what did i do to cause this?whats the code on line 1?
Forum: Installing WordPress
In reply to: Sidebar not showing up?!?!?in your first sidebar is code that checks to see if the page is the home page and assigns a variable.
<div id="sidebar"> <?php if (is_home()) { $check_home = '1'; } else { $check_home = '0'; } ?>
in the second sidebar, and i’m assuming this is the one missing, it checks the variable.
if you want the second bar to appear on all pages you need to take out the if statement
<div class="sidebar_right"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?> <?php include (TEMPLATEPATH . '/searchform.php'); ?> <?php /* If this is the frontpage */ if ($check_home == '1') { ?> <?php get_links_list(); ?>
Forum: Installing WordPress
In reply to: what did i do to cause this?the error you are getting now is completely different… check the code that you pasted for any characters before the
<?
on line 1or post the code you have on line 1
Forum: Everything else WordPress
In reply to: Making the wordpress my homepageadd the wordpress folder name to your index.php in your root directory
and change the urls as stated before