jonimueller
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Where did my WordPress install GO!?Most of the time when there’s a blank or white page, it’s a corrupted upload. Can you check your server’s error logs to see if there’s any clues there?
Here are a few other things to check to try to isolate the problem:
1. Disable all plugins. (Since you can’t access the admin panel, just go to your cPanel file manager or FTP and rename the plugins folder to something else temporarily, fooling WP into thinking there is no plugins folder.) If your blog springs to life, you know one (or more) of your plugins is stinking up the pond.
2. Check your .htaccess file. Rename it to hide it and see if the blog returns. If so, .htaccess is somehow the culprit.
HTH.
Forum: Fixing WordPress
In reply to: How do i show posts from another wordpress in my wordpress?Well, I’d refer you to the article at Corvidworks about displaying WP content on a non-WP site, but that is a one shot deal; it won’t display multiple instances of other people’s WP content. But David Chait’s CGFeedread will display excerpts or post links. Maybe that’s your best bet? Find that plugin here:
http://www.chait.net/index.php?p=85David Chait is a very hands-on developer and if you run into problems, a quick email to him should solve it. 🙂
HTH
Forum: Themes and Templates
In reply to: Writer’s Blog Theme rotating bannersCan you view the images on the server when you type their paths into the address bar? (In other words, make sure they’re where they are supposed to be so WP can find them.)
And when they rotate, do they rotate via Flash or on page refresh?
Forum: Fixing WordPress
In reply to: How to view each post individual instead of a listIf I understand you correctly, you can’t really do that with a category listing.
The categories will display this way:
Category 1:
Link to a post in this category
Link to another post in this categoryWhen you click on the link, THEN you can view the individual post using the single.php template. (Check to make sure your theme has this.)
Forum: Fixing WordPress
In reply to: How do i show posts from another wordpress in my wordpress?On second thought, it might be too late for this, but consider using WPMU (WordPress Multi User) for multiple blogs. It powers sites such as these:
https://blogs.bgsu.edu/
http://www.wannanetwork.com/
http://foreignpolicyblogs.com/They allow the blogs to be featured on the site’s front page and you can have a subdomain structure for each blog; e.g., blog.mydomain.com.
HTH.
Forum: Fixing WordPress
In reply to: How do i show posts from another wordpress in my wordpress?RSS Feeds or a plugin, such as David Chait’s CGFeedRead?
Forum: Fixing WordPress
In reply to: More (different) unique site structureThat’s quite commonly done these days (lucky you!) with category calls. You’ll need to decide which categories you want to appear on the front page and find their ID numbers. Hover your mouse over the category in the category listing in the WP Dashboard. You’ll want to write down the ID numbers of the categories you want displayed on that front page.
Then you’ll design a box or section for each category. For each category, you’ll use this code or similar:
<?php $cat1 = new WP_Query('cat=75&showposts=1'); ?> <?php if($cat1->have_posts()) : ?> <?php while($cat1->have_posts()) : $cat1->the_post(); ?> <h3 class="cattitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <div class="meta"><?php the_date(); ?> <span class="edit"><?php edit_post_link('[Edit]'); ?></span></div> <?php $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,20); ?><br /><a href="<?php the_permalink() ?>" rel="bookmark"><strong>More »</strong></a> <?php endwhile; ?>You’ll make one, possibly two, changes. First:
<?php $cat1 = new WP_Query('cat=75&showposts=1'); ?>Change
cat=75to whatever category you want.Second, you may not want to limit the number of words:
echo string_limit_words($excerpt,20);So you can either change the value
20to something else or remove it completely, like this:
echo string_limit_words($excerpt);You’ll notice some styling hooks in there, class
cattitleand others. Feel free to change those around according to your style/design.Also, for each category you want to appear on the front page, you just change
$cat1to$cat2, etc. for as many categories as you want appearing on the front page.Hope this helps!
Forum: Fixing WordPress
In reply to: possible hack; need help upgradingThat’s just the procedure for upgrading WordPress. You have to proceed a bit differently if you’ve been hacked, especially with that latest added admin user hack. You’ll need to clean your database. Read about that here:
http://lorelle.wordpress.com/2009/09/04/old-wordpress-versions-under-attack/Forum: Themes and Templates
In reply to: home.php and recent postsI’m a visual person. Can I get an URL?
Forum: Everything else WordPress
In reply to: Need Simple PHP CodeI bet the plugin author would give you some help. Have you tried asking or dropping a comment on the plugin’s page? That’s a pretty nifty plugin, BTW.
Forum: Themes and Templates
In reply to: Preventing Overwrites in Theme UpgradesWell I think the OP is talking about his theme operating the way Chris Pearson’s Thesis theme does. He uses custom functions.php and style.css files housed in the /custom/ subfolder of the theme files and they are preserved.
Forum: Themes and Templates
In reply to: visited link color – panorama themeWhich template? Which theme? What URL? Inquiring minds want to know! 😀
Forum: Fixing WordPress
In reply to: Errors after installing premium themeFirst, the theme’s home.php template is calling for a function (viva) that doesn’t exist. Also its single post template is calling for a function (vz_inloop) that doesn’t exist. Comment those out or delete them and see if the problem goes away. Which theme is it, BTW?
Forum: Fixing WordPress
In reply to: Cyrillic text turns into ??? in blog posts and comments[Edited by jonimueller to remove duplicate post.]
Forum: Fixing WordPress
In reply to: Cyrillic text turns into ??? in blog posts and commentsI was just going to suggest commenting that out. We have developed a few sites in Serbian (Cyrillic rather than Latin Serbian) and I had a devil of a time until I figured that out also. I wonder if the devs shouldn’t think about putting a comment in the code to that effect.