ColdForged
Forum Replies Created
-
Forum: Plugins
In reply to: WP Plugin Manager- HelpNote that the plugin manager and the theme manager have a bit of a problem acting together… they both try to define a function called rmdirr and PHP truly hates it when this happens. This may or not be related, but it surely doesn’t help the situation and may be causing a silent failure like this. Try temporarily removing the theme manager and seeing if it loads correctly then.
Forum: Fixing WordPress
In reply to: Change rss_languageLooks like it’s unreferenced aside from the feed generation files. Meaning you’ll need to actually modify the database with something like phpMyAdmin.
Forum: Fixing WordPress
In reply to: PHP code in 1.5 Strayhorn PagesPHP code is not executed in any content on WordPress pages or posts. To execute PHP code, you’d need to either include the runPhp plugin or create a new template for your page with the desired text — including PHP code — and simply have a blank page with that new template selected.
Forum: Fixing WordPress
In reply to: Comment moderation – message not showing up in FireFoxOdd. On my site it appears under Firefox without difficulty. Having just visited it does appear to be happening as you say on your site. The cookies seem fine as well. Currently stumped.
Forum: Fixing WordPress
In reply to: Comment notification emails sent to wrong addyMost welcome, glad you got it wrangled. This was the part that clued me in:
I noticed this morning when I would post test comments on my site that no matter what email address I entered, it would show my old email address.
I had a similar thing occuring and couldn’t figure it out for the life of me… digging through the code I finally determined that it was ignoring whatever you put in there if you were logged in to the administration interface. New feature that’s great but for non-default installs that don’t expect this behavior and display it appropriately — on the default install the base template tells you explicitly that you’re logged in and you get nowhere to even enter your details — it can be confusing. I had just been there before you ;).
Forum: Fixing WordPress
In reply to: Comment notification emails sent to wrong addyHave you checked your WordPress user profile?
Forum: Fixing WordPress
In reply to: Another AdministratorActually it’s much easier to create the user using the WordPress administration tool then use phpMyAdmin to simply modify the user level.
Once the user is created, open phpMyAdmin, select the appropriate database, click on the Browse icon next to the “wp_users” table, click on the Edit Row icon next to the row of the user you want to edit and change the user_level to 10.
Forum: Fixing WordPress
In reply to: “write page” strips html tagsSounds almost like your page template is displaying the excerpt — which is aggressive in removing markup — instead of the actual entry content. Double-check your page template to make certain you’re displaying the the_content() and not the_excerpt().
In other words, there’s nothing special about page processing that would account for this. I just created a fresh test page on my sandbox base install of Strayhorn and my unordered list was displayed just dandy. Time to look elsewhere.
Forum: Plugins
In reply to: Hide Categorie from main listingForum: Fixing WordPress
In reply to: Remove <h2> from links listThey’re not centered, actually, they simply have a large left margin. By changing the definition from:
h2 {
border-bottom: 1px dotted #cccccc;
font: 100% "Times New Roman", Times, serif;
/* letter-spacing: 0.2em; */
margin: 15px 20px 0 30px;
padding-bottom: 2px;
}to
h2 {
border-bottom: 1px dotted #cccccc;
font: 100% "Times New Roman", Times, serif;
/* letter-spacing: 0.2em; */
margin: 15px 20px 0 0px;
padding-bottom: 2px;
}it looks fine to me.
Forum: Installing WordPress
In reply to: First time username and password question / Error estab. DB cnxnThe username and password in the wp-config.php file is the MySQL username and password to connect to the database. The “password given to you” comes later in the process.
Forum: Fixing WordPress
In reply to: Save and Continue Editing Causes ErrorsHave you checked to see if you have the file listed in the error, /home/jinsan/public_html/wp/wp-includes/class-IXR.php? If so, does everyone have read permission? If not, try reinstalling.
Forum: Fixing WordPress
In reply to: spam comments still in database?Nope, not the only one at all. I don’t understand what the intended processing is, because I certainly don’t want my database space taken up by these comments, even if they’re marked as spam.
Forum: Installing WordPress
In reply to: Advantages to upgrade to 1.5?If you’re not dissatisfied with the current feature set of your WordPress installation, there’s no overwhelming need to upgrade. However, if you ever want to add to your installation — be it plugins (plugin authors will most likely no longer support the 1.2 code base… I know I won’t) or themes or even just static pages — you’ll find things much easier in 1.5.
Forum: Everything else WordPress
In reply to: Bold text on topic titles in this forumBless you. Here I thought people were merely self-important :).