p0ps
Forum Replies Created
-
Forum: Plugins
In reply to: WP Events Calendar – cannot save eventsI’m getting this same error message when attempting to add an event.
Warning: array_filter() [function.array-filter]: The first argument should be an array in /var/www/…/wp-includes/post.php on line 2503The event will make a post, but will not show on calendar. I’m using Event Calendar on a non-primary site in a sub.domain multi-site installation.
I don’t see that changing options helps me. Where should I be looking?
Forum: Networking WordPress
In reply to: Images 'broken' in WP multisiteI’m having the same problem. I see that my .htaccess does not have the rewrite rule that Mika asked you to look for on yours, yspeert.
Should I add
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
to mine?
Presently mine only says:<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Forum: Fixing WordPress
In reply to: No DashboardI’m having this same problem. The blog has been functioning for months, I’m building a new theme (tho, I’m under qualified).
The blog has functioned well with my new theme, until yesterday. Don’t know what I did, but after login, I get a blank page.
I’ve compared the files in my theme with backups from when it was functioning and don’t find a difference that brings back the dashboard.
I’ve replaced from backup the wp-admin and wp-includes folders, but no dashboard still.
What else? Which files control the dashboard?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] contains no picturesI have now successfully uploaded zipped images, but cannot upload single images.
Because of my server permissions, I can only upload through the Dashboard NextGEN Gallery interface.Forum: Fixing WordPress
In reply to: Featured Category Post | Showing a featured post for each categoryThis is the code I came up with to do Show a featured post for each category, with the remain posts in that section shown in excerpts:
<h1><?php echo(get_category_parents($cat, TRUE, ‘ » ‘)); ?></h1>
<em class=”catdescript”><?php echo category_description(); ?><?php $i = 1; ?>
<?php if (have_posts()) : while (have_posts()) : the_post(”); ?><h2>“><?php the_title(); ?></h2>
<p><?php the_time(‘F j, Y’); ?></p>
<?php if (1 == $i) : ?>
<p><?php the_content(); ?></p><?php else : ?>
<?php the_excerpt(‘Read more >’); ?>
<?php endif; ?>
<p>Posted by <?php the_author(); ?> | Filed Under <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘Leave a Comment’, ‘1 Comment’, ‘% Comments’); ?> <?php edit_post_link(‘(Edit)’, ”, ”); ?></p>
<?php $i++; ?>
<?php endwhile; else: ?><p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
<p><?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?></p>Forum: Fixing WordPress
In reply to: Latest Post from specific category.me too.
Forum: Fixing WordPress
In reply to: Featured Category Post | Showing a featured post for each categoryI’d like to use this, but I don’t want to hardcode in the category, I want to be the_category. Haven’t found the syntax for doing that.