Cypher
Forum Replies Created
-
Forum: Plugins
In reply to: Show only one category on home pageThere is a plugin that does this kind of thing for you. I can’t remember what it’s called, but if you use the SEARCH box you should be able to find it.
Regards
Forum: Fixing WordPress
In reply to: 404 Works in Firefox, not IEIn IE, go to Tools->Advanced and uncheck “Show friendly HTTP error messages” if it’s enabled, and you’ll get the same kind of 404 error page as in Firefox.
Regards
Forum: Themes and Templates
In reply to: Custom Hemingway CSS-esHemingway Bright is located here. And that’s the version I’m using..
Regards
Forum: Fixing WordPress
In reply to: Options aren’t displayedWhat version of WP? What browser are you using? If IE, try FF, if FF try IE or Opera..
What have you changed lately?
Regards
Forum: Themes and Templates
In reply to: problems uploading imagesWhat sort of errors are you getting when you try to upload files? This would be more of a host related issue than WP anyway.
As long as you are logging in using your proper credentials, you should have access to any and all files. You can even modify the permissions if you so desire from within the FTP client.
Regards
Forum: Fixing WordPress
In reply to: Control length of RSS feedUnder Admin->Options->Reading..Choose “Summary” for Syndicated Feeds and that will end up showing a small excerpt in your RSS feed.
You don’t have a finer control of how much info is displayed, just summary or full..
Regards
Forum: Fixing WordPress
In reply to: latest comments in sidebarYou will want to change the call to:
<?php wp_get_recently_comments(); ?>for starters, the () indicate to PHP that you are making a function call. See if that gets you anything.Regards
Forum: Fixing WordPress
In reply to: RSS Feed: Invalid Syntax ErrorAs you are currently using the “default” theme..go to /wp-content/themes/default and look at the file footer.php.
You will see the “bloginfo(‘name’) is proudly powered by..” portion of the code. There you will see the two RSS links (entire and comments). Remove the “feed:” portion from the link and you should be OK.
Regards
Forum: Fixing WordPress
In reply to: Put My blog entries on My siteSearch for posts about CG-FeedReader.
Regards
Forum: Fixing WordPress
In reply to: Need help replacing allow_url_fopen with cURL in a plugin.You’re welcome. This was pretty much the code changes I did for the WP Plugin Manager to make it cURL compliant. 🙂
Regards
Forum: Requests and Feedback
In reply to: Can I Use Templates Outside Of WP?It’s just CSS..so sure, if you use the same “context” in your other pages and include the WP template, it should look the same..
Regards
Forum: Fixing WordPress
In reply to: Need help replacing allow_url_fopen with cURL in a plugin.You would change that code to something like this:
$curl_handle = curl_init($this->url);
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT,10);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
$content = "";
$content = curl_exec($curl_handle);
curl_close($curl_handle);Regards
Forum: Fixing WordPress
In reply to: Getting Permission denied errorsFirst and foremost, this is a PHP configuration issue. Contact your webhost and ensure that they are looking at it.
Second, create a test file called test.php and put in the following code in it and see if it works.
<? phpinfo(); ?>Regards
Forum: Fixing WordPress
In reply to: Remove index.php from pathWithout the /index.php/ in your path, WP is going to rely on mod_rewrite and the .htaccess file. This is a Apache feature and as such it wouldn’t work for you.
So unless you switch over to Apache, you’re stuck with index.php in your permalink.
Regards
Forum: Your WordPress
In reply to: Gimme Feedbacks plzFeedback on what actually? From what I can tell you’re running Blix with a modified header. I have Flash blocked so I can’t tell what the first two posts are about..
Regards