interknox
Forum Replies Created
-
Forum: Plugins
In reply to: Email a friend*bump*
Forum: Fixing WordPress
In reply to: I am having some problems — Please helpWhat are you running your WP installation on? PHP and Apache? or what?
If Apache, check to make sure your .htaccess is accessible and can be written to. OR…make sure you have a .htaccess file in the root directory. I’m not expert by any means, but this may have something to do with it.
Forum: Your WordPress
In reply to: www.pvrtracker.comah. I have a cold, so just…go along with my stupidity. ??
Forum: Everything else WordPress
In reply to: IE issues with footerLOL…thanks anyways. ??
Forum: Everything else WordPress
In reply to: IE issues with footerSweeeeet. Valid code fixes everything. ??
Thanks Cypher.
Forum: Your WordPress
In reply to: www.pvrtracker.comLink?
Forum: Installing WordPress
In reply to: help me for wp 1.5 downloadWhat???? What do you mean, you can’t download it?
Forum: Your WordPress
In reply to: Most Damnable WP blog site everEvidentally:
“500 Internal Server Error”
LOL… ??
Forum: Your WordPress
In reply to: Give Credits!But what about someone like myself who took one theme, and spent nearly 2 solid days making code changes, CSS changes, and other tweaks, only to come the end of the weekend and noticing only 25% of the original theme was still intacked? I actually used code from 3 themes, and the codex. Does this mean I should still give credit to the original author, even though the site has changed internally quite a bit?
Forum: Fixing WordPress
In reply to: Warning: Cannot modify header informationSeems like you may have been editing a theme or something?! Did you add or remove anything? Have you tried to login to the WP backend and changed themes?
Forum: Your WordPress
In reply to: Movable Type to WordPress … success!Heck yes it is…
Last weekend I was rebuilding a theme basically and without knowing hardly any PHP, I was able to teach myself quite a bit because I messed with WP so much.
Forum: Your WordPress
In reply to: Movable Type to WordPress … success!Great looking site…welcome to the WP community!!!
Forum: Your WordPress
In reply to: using wordpress for my siteCool site! I like seeing WordPress used with different flexibility styles. I like it!
Forum: Fixing WordPress
In reply to: Errcode: 13can you connect to the backend (wp-admin/)?
Forum: Your WordPress
In reply to: The Spiderbox dot comJust in case anyone else is having this problem, I searched the codex and pulled this code out, which fixed my above mentioned problem:
<ul>
<?php
$link_cats = $wpdb->get_results("SELECT cat_id, cat_name FROM $wpdb->linkcategories");
foreach ($link_cats as $link_cat) {
?>
<li id="linkcat-<?php echo $link_cat->cat_id; ?>"><h2><?php echo $link_cat->cat_name; ?></h2>
<ul>
<?php wp_get_links($link_cat->cat_id); ?>
</ul>
</li>
<?php } ?>
</ul>
If you use this, remember (as I failed to notice for hours) that there are<h2>
tags in there…that might mess with your CSS and look.