Mark Jaquith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creative Plan of Attack. Is WordPress Worthy?You could create a “music” category and a “photography” category and then keep those categories from displaying on the main blog, and only show those categories on the Music and Photography pages.
Forum: Fixing WordPress
In reply to: Getting out through the firewallFor getting an RSS feed using PHP, there’s nothing better than MagpieRSS
Forum: Fixing WordPress
In reply to: Numerous errors when viewing Plug-In pageWarning: file, mail, opendir, readdir, closedir() has been disabled for security reasons
Sounds like your host has disabled a whole lot of useful PHP functions. Contact your host and give them that error message that you got. Maybe they’ll loosen the restrictions on your hosting account.
Forum: Fixing WordPress
In reply to: permalinks and indexingYou could set up an “archives.php” file that displays the archives the way you want them (search around for examples of a good archives page), and then you could use .htaccess to rewrite http://www.site.com/archives/ to http://www.site.com/archives.php
RewriteRule ^archives/? /archives.php [QSA]
… should do it for you. The question mark after ^archives says that the trailing slash can be omited, so http://www.site.com/archives will work too.Forum: Fixing WordPress
In reply to: Using tags in articles on front pageAre you talking about displaying something like this: <tag option=”something” /> ?
In order to display those, you’ll need to use & lt; and & gt; (remove the space between “&” and the lt; or gt;)Forum: Fixing WordPress
In reply to: migrating to a new serverYou’d need to export your database, as well as transfer over any special plugin or hacked files in your WordPress install.
http://dev.mysql.com/doc/mysql/en/mysqldump.htmlForum: Fixing WordPress
In reply to: the_authorHere’s something to get you started… this plugin updates the post with the id of the last user who modified the post. It does not address TechGnome’s concern, as it is overwritten by the last person who modified the entry.
Who Last Modified? Plugin
The plugin also includes a function to echo or return the Nickname of the person who last edited the entry (but only if the person is not the original author).
It takes a $text parameter, and a true/false echo parameter (defaults to true).
For the following examples, assume that the post was written by “User 1” and modified by “Admin.”
Here’s how you’d use it:
wp_last_modified_by(“This post was edited by “);
This would produce:
This post was edited by Admin
If the last person to modify it was the original author, or if it has never been modified, it echoes out nothing.
Nothing too fancy, but maybe you can make it work for you.
Let me know if you have any problems with it… I don’t have a WordPress 1.2 install at the moment, so it’s only been tested on the latest CVS.Forum: Fixing WordPress
In reply to: the_authorThis could be done with a plugin. Correct, it’d mean adding a column to wp_posts, and then on post modification, checking to see who the current use is who is modifying it, and writing it to the DB. Not too complicated… I might give it a go if I have time.
Forum: Everything else WordPress
In reply to: Hosting Recommendations?ICDsoft
Great support! They seriously give you intelligent personalized responses within 10 minutes.Forum: Fixing WordPress
In reply to: Dashboard does not appear.I’m thinking it could be a user-defined overview of recent blog activity. Perhaps it could have a listing of recent posts/comments/moderated comments. There could be a switch to turn on/off a plugin that only needs to be on sometimes. Maybe it could have easy theme switching there as well.
Forum: Plugins
In reply to: Excluding categories from RSShttp://site.com/feed/?cat=-X
where X equals the category ID number.
Conversely, if you did http://site.com/feed/?cat=X (no minus sign) you’d get a feed of ONLY that category.Forum: Fixing WordPress
In reply to: Who last update post ?Answered here
Please don’t double-post. 🙂Forum: Fixing WordPress
In reply to: the_authorThat data is not recorded by WordPress. The original author stays the same, and the only thing that changes is the “modified date.”
This could be an interesting feature… perhaps one that a plugin could address.Forum: Fixing WordPress
In reply to: Posting PHPCheck the runphp.php file, and ensure that you do not have any spaces before the leading <?php or any spaces after the ending ?>
Any spaces there will get sent as output to the browser, preventing WordPress from sending its own headers.Forum: Fixing WordPress
In reply to: Custom Fields not workingCustom fields aren’t intended to show up in your entry. They are associated with your entry, and you can access them using PHP code.
For example, you could add an “image” custom field to an entry and then write PHP code to put that image with the entry.
For a simple way of getting that custom data, check out this fine plugin:
Get Custom