ColdForged
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Spam keeps on coming backHah!
Forum: Everything else WordPress
In reply to: Spam keeps on coming backForum: Installing WordPress
In reply to: Installing on an IntranetForum: Fixing WordPress
In reply to: Index page vanished – VERY STRANGE PROBLEMWay too little information for anyone to give you a useful answer. Try elaborating with pertinent details like which plugins, which verison of WordPress, and if possible a link to the blog.
Forum: Fixing WordPress
In reply to: Comments and Pages don’t workTry using the permalink structure mentioned here:
Forum: Fixing WordPress
In reply to: where do i find my admin password in ftp?Do not post multiple posts for the same problem.
Your password doesn’t exist. It’s gone, stored as an irreversible hash in the WordPress database. This is why we say to keep it in a safe place. I do not know of a recovery.
Forum: Plugins
In reply to: Including wp-config.phpAh, that makes more sense. I usually do the following, with an appropriate number of
dirname()functions to back out of wherever the PHP file is located to get back to thewp-config.php. this example assumes we’re in thewp-content/pluginsdirectory.include( dirname( dirname ( __FILE__ ) ) )."/wp-config.php" );Forum: Fixing WordPress
In reply to: missing Link Manager in OptionsThe user you are logged in as doesn’t have high enough privileges. Promote that user by logging back in as “admin” and go to “Users => Authors & Users” and promote. You need to be at least level 5 to use Links.
Forum: Fixing WordPress
In reply to: echo $user_name in sidebarmajost, seems you were on the right path. Unfortunately you left out a step:
<?php get_currentuserinfo(); global $user_nickname; echo $user_nickname ?>Forum: Themes and Templates
In reply to: How can I do that? (Sorry, hard to describe)It’s a CSS floated, transparent PNG. Note it looks like poo in IE, by the way. If what I said doesn’t make a bunch of sense, maybe investigate some CSS resources on the web.
Forum: Plugins
In reply to: Including wp-config.phpDid you try just accessing the database through the global
$wpdbvariable? A plugin shouldn’t necessarily need to include the config file.Forum: Plugins
In reply to: [plugin request] live gravatar !chiensavant, to be clear I only modified theme files, not core files.
Forum: Fixing WordPress
In reply to: Archives only showing one entry per monthTry this plugin with ‘home’ set to 2 and everything else set to 30.
Forum: Fixing WordPress
In reply to: Database error when a comment is posted.Sounds like you have some sort of threaded comments plugin enabled but without the appropriate change to the tables.
Forum: Fixing WordPress
In reply to: adding images to a post