zerok
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [1.5] Problems with permalinksAre you using WordPress 1.5? Then perhaps this will help you ??
Are you sure that your server is an Apache? Then perhaps your host has disabled the SERVER_SOFTWARE variable for security reason which WP1.5 uses to determine what server you’re using.
If you’re sure that you have Apache then open the wp-includes/vars.php and search for this line:
$is_apache = strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') ? 1 : 0;
Replace 0 with 1 or replace it with following line to tell WP1.5 that you’re really running Apache:
$is_apache = 1;
Forum: Fixing WordPress
In reply to: page.php vs single.phpYou mean something like this?
https://codex.www.ads-software.com/Pages#Pages_can_use_Different_TemplatesForum: Themes and Templates
In reply to: Another styled version of wp…Very clean and nice ??
Forum: Fixing WordPress
In reply to: .php files aren’t displayingThen it really sounds like a server issue. Do you have the problem now with any .php file or just with some? Sounds like the server is somehow sending the wrong content type. In this case only the server administrator can help you ??
Forum: Fixing WordPress
In reply to: .php files aren’t displayingDo you get any error message?
Forum: Fixing WordPress
In reply to: How to……..make new pagesDo you have this is a page (in wp1.5) or as a simple php file? It would also be helpful if you’d post the source code of this page ??
Forum: Your WordPress
In reply to: Which Do You PreferAlso the second. But perhaps you should consider changing the link text color in the inactive tabs in the left menu ?? Gray on blue isn’t really well readable ??
Forum: Fixing WordPress
In reply to: Links list running over into footerAre you using floats? Then you perhaps should add an element below the left and right float that clears both…. Okay, I better show it on an example as my English in the morning is really only barely usable ….
<div id=”wrap”>
<div id=”leftfloat” style=”float:left”>…</div>
<div id=”rightfloat” style=”float:right”>…</div>
<div id=”footer” style=”clear:both”>…</div>
</div>The footer with its clear attribute basically tells the wrap element, how long it should be ??
Forum: Themes and Templates
In reply to: Background is not transparentGlad I could at least try to help ??
Forum: Themes and Templates
In reply to: Background is not transparentAh, sorry, I didn’t check the actual background image. In this case repeat-x is probably what you need ??
Forum: Themes and Templates
In reply to: New WordPress 1.2 Template: QuentinThank you ?? This looks really great. Normally I don’t really like red/brown tones but this looks really nice ??
Forum: Fixing WordPress
In reply to: Breaking up long postsYou could try the <!–nextpage–> tag ??
Forum: Themes and Templates
In reply to: Background is not transparentHave you already tried it with no-repeat instead of repeat? ??
Forum: Fixing WordPress
In reply to: Help with the upgraded installPodz has a really nice list of addons and tweaks and documents about how to fight comment spam on https://www.tamba2.org.uk/wordpress/spam/ ??
Forum: Fixing WordPress
In reply to: The Newbie Leading The BlindJust a side question: On https://www.ads-software.com/nightly/ you get development snapshots (for WP 1.5). Are your students working with WordPress 1.2.x or also with 1.5?
I don’t know how your hosting plan works, but if you can, I’d recommend that you put your “testing” weblog at least in a different directory. You should perhaps also first make a backup of your current weblog’s directory and of your database. Normally your host should have some tutorials about how to do the database part of this ??