Cypher
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to patch a pluginGrab Windows version of patch from here:
http://users.ncrvnet.nl/gmvdijk/utilities.htmlRegards
Forum: Your WordPress
In reply to: before and afterFor starters, your v1.php gives me a 404 File Not Found.
Secondly, on the new theme, the background color is too bright and causes the text to virtually disappear. I honestly would even try to read the content because it is so distracting.
Regards
Forum: Fixing WordPress
In reply to: Putting normal text in your blogYou are free to add text of the like you’ve been adding to your code. But just to let you know the _e() function is used for language conversion.
That is, if you enclose words within _e(‘xx’);, then it will be translated to whatever your blog’s language is. So if you wanted to put “Archives” here, and changed to Spanish, it will become Archives in Spanish or German or whatever.
Putting “|” doesn’t do anything for you cuz there isn’t any real translation for it.
No harm in using _e for it, but just thought you should know.
Regards
Forum: Installing WordPress
In reply to: help me fix an errorPlease go into
wp-config.phpand look for:
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
If you intend to use English as your default language, please leave i blank, if you want to use a different language, you’re going to need to get the appropriate file and place it in /wp-includes/languages.
This is not a hosting error BTW.
Regards
Forum: Plugins
In reply to: Privatize CommentsIf people on your site wanted to post private comments, they could just as easily use “contact me” form or something.
Usually comments allow for public discussion on a topic, so private comments are a little counter-intuitive to that model.
As far as it being done, it can surely be done. But I haven’t seen a plugin that already does this.
Regards
Forum: Plugins
In reply to: Request: Visitor count for each postThis might be a little overkill for what you are asking, but look at Coldforged’s Asides Plugin. One of the ‘features’ is a post counter that gets hit each time a particular post is opened.
You can then display the top visited posts on your sidebar.
Check out: http://www.coldforged.org/archives/2004/11/15/wordpress-asides-coldforged-style/
I’ve implemented this feature on my blog using WP 1.5, so I can vouch that it works.
Regards
Forum: Fixing WordPress
In reply to: how do i get the posts in order that they were posted?You do have a timestamp on the post. If you are using WP 1.5, go to Admin->Manage->Posts and choose to Edit your newest post. Scroll down on and look at the section immediately after the text box to enter your post content.
You will see a bunch of information about that particular post, one of the last thing is the timestamp indicating when the post was created.
Regards
Forum: Fixing WordPress
In reply to: Internal server error when writing a new postIf you have CPanel or similar management software from your webhost, look at the menu options for “error_log”.
If you don’t have these (shame on your host 🙂 ) then login through FTP and look for a “error_log” or something to that effect. It should be in the same directory as your WP “index.php” file.
If you have a resceptive host, you could also ping them and ask them to help you out.
Regards
Forum: Plugins
In reply to: FTP PluginA FTP plugin wouldn’t necessarily add anything useful to WP. Most FTP clients already possess a great deal more features and there would be no real reason to re-implement that as a WP plugin.
Regards
Forum: Fixing WordPress
In reply to: how do i get the posts in order that they were posted?It should by default list the newest port first. Can you confirm the timestamp on the posts to ensure you don’t have an issue with that?
Regards
Forum: Themes and Templates
In reply to: Google adwords skinIf you didn’t specifically signup for Adsense and use the snippet of code that is for you, then the creator will be getting the credit.
Change the code with your own and you should be all set.
Regards
Forum: Fixing WordPress
In reply to: switching blog typeWordPress inherently is designed to be a single person blogging software. There are a few people working on getting a multi-blog thing going.
Please search for “multi blog” on this forum for some directions.
Regards
Forum: Themes and Templates
In reply to: What do you think of Kubrick 2?Kubrick is named for the director Stanley Kubrick.
Regards
Forum: Fixing WordPress
In reply to: Creation of ArchivesWhat is your permalink structure??
Regards
Forum: Plugins
In reply to: Commenting on static pagesHowever, if you are including _seperate_ PHP files on your webpage that aren’t controlled by WordPress, then you’d have to implement your own commenting on it.
You could use the Pages feature in WP 1.5 to create static pages and thus allow commenting on it.
Regards