shadow
Forum Replies Created
-
Forum: Themes and Templates
In reply to: list-style: none not workingOr…
#right ul li {list-style-type: none;}Forum: Installing WordPress
In reply to: WordPress Not Showing UpYou shouldn’t have a index.htm file. WordPress operates on php so it will be looking for index.php. If you have an index.htm file in place it will cause problems.
A url to your site would help us to check further.
Ask your host to up your memory limit in your php.ini from 8b to at least 16mb. That should fix it.
Forum: Themes and Templates
In reply to: Theme not showing in panelJudging by the amount of problems we see when installing for people via Install4Free, Fantastico often limits functionality and can be different on each and every host.
If you have the option, I highly recommend installing WordPress manually instead.
Forum: Installing WordPress
In reply to: Help – blogroll doens’t show upIf you would like to email me, I will take a look at your site and see what is happening.
shadow12 gmail
Forum: Fixing WordPress
In reply to: Importing ErrorThis may help:
Forum: Installing WordPress
In reply to: Various blogs on same hosting?I hate to say it, but it is very likely that you have entered the information incorrectly. The only reason I say this, is because in 99.99% of cases this proves to be the case.
Check for any spaces that should not be there, mistyped characters, anything different at all.
If you still cannot get it to work, send me an email and i will take a look for you if you like… [shadow12 gmail]
Forum: Installing WordPress
In reply to: Help – blogroll doens’t show upBy changing the permissions on your files. This may help:
Forum: Installing WordPress
In reply to: Various blogs on same hosting?define(‘DB_NAME’, ‘same‘);
define(‘DB_USER’, ‘same‘);
define(‘DB_PASSWORD’, ‘same‘);
define(‘DB_HOST’, ‘same‘);
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);***The following needs to be different for each blog you install in the same database
$table_prefix = ‘wp2_‘;
Forum: Fixing WordPress
In reply to: Sidebar color changeYou have no specific class in place for that particular section in your sidebar code. If you add a class to your ul or li tag in the following code:
<ul><li>mail<@>noncollective.com</li></ul>
such as
<ul class="mail"><li>mail<@>noncollective.com</li></ul>You can then play with your css and change the colour, by doing something like:
ul.mail a { color:#cccccc;}Forum: Installing WordPress
In reply to: Please Help!My experience with ixwebhosting makes me think that you need to check your localhost setting. I think it is more likely to be a specific host name. Check your database details via the control panel…
Forum: Fixing WordPress
In reply to: directory accidentally deletdWhen you re-installed your blog did you use the same database configuration in your wp-config??
Forum: Installing WordPress
In reply to: Various blogs on same hosting?You can install another blog in a separate subdomain or directory and use the same database but with a different suffix – such as wp2_
Forum: Fixing WordPress
In reply to: Page Order ProblemThere is a plugin for just this purpose too, if you prefer?
Forum: Fixing WordPress
In reply to: ??? Character Separator in Nav Bar ??As there is no parameter to separate in
wp_list_pages, you could do something like add a right or left border to your ‘li’ in your css, but the only trouble with this method is you end up with on on the far right or left of your menu.Of course, if you just have to have the | separating your items, you may list your menu items manually.
A part of my brain is niggling me with this though, because I feel sure there is a better method to do what you ask.