dylan
Forum Replies Created
-
Forum: Plugins
In reply to: user ratingsIt does both.
Forum: Installing WordPress
In reply to: WordPress and xamppI am having a problem using WordPress locally with Xammp also. WordPress uploads and works just fine, but when trying to edit a file, such as part of a theme or a plugin, I cannot do this because windows has everything marked “read only” and I cannot change that through the usual method.
ideas, anyone?
Forum: Everything else WordPress
In reply to: Photo Gallery vs. PhotoblogI agree that the two seperate installs are a bit clunky. Has anyone found a better way?
Forum: Fixing WordPress
In reply to: Request: Improve Link Quicktag.I did find a tutorial on Tamba that seems like a great palce to start.
Forum: Fixing WordPress
In reply to: Pages by categoryGive each page its own template, and in that template employ a sidebar that is particular to that page’s category.
Forum: Plugins
In reply to: recent-post PluginIs it possible to modify this plugin so that it would get the exerpt from the most recent post in a category? Or is there another way to do that…
Forum: Plugins
In reply to: Picasa XML plugin?I know I would use the hell out of such a thing, if there was one.
Forum: Fixing WordPress
In reply to: 1.3 to 1.5 pages problemIts not showing me the rewrite rules, not unless I look at them in the manage ages tab. the rewrite rules aren’t shown in the permalinks section.
Forum: Themes and Templates
In reply to: skinsAny word on whether/how 1.3 themes work in 1.5?
Forum: Plugins
In reply to: Most Popular Post & Recent Commentsalright. problem solved.
I would like to recomend to anyone who is looking to list “most popular entries” etc. — you should use Wp-Dstats.
The directions were a tiny bit difficult for a novice user to comprehend, but the learning curve wasn’t too steep, and the best part was, no errors!
Maybe in a few days or so I will do a write up and maybe do something to make the docs a bit more idiot-proof. I am happy with this plugin.Forum: Plugins
In reply to: Most Popular Post & Recent CommentsI am beginning to suspect that its a problem with foreach() because I have tried a couple of similar plugins (not hacks), and they always give me an error whenever foreach() is encountered.
Where can I go to learn about this stuff?
Kafkaesqui, thanks for “give”ing 🙂Forum: Plugins
In reply to: Most Popular Post & Recent Commentsfunction show_pop_posts() {
global $wpdb, $siteurl, $tableposts;
$results = $wpdb->get_results("select postnumber, cntaccess from mostAccessed ORDER BY cntaccess DESC LIMIT 10");
foreach ($results as $result) {
$postnumber = $result->postnumber;
$post = @$wpdb->get_row("SELECT ID, post_title FROM $tableposts WHERE '$postnumber' = ID");
//$post_title = substr($post->post_title, 0, 20);
$post_title = $post->post_title;
//$url = get_permalink($post->ID);
echo "- ID."&more=1&c=1\" title=\"$text\" />$post_title ($result->cntaccess)
<br/>";
}
that’s the whole function, where the line that begins foreach (5th one down) is #18
}Forum: Plugins
In reply to: Most Popular Post & Recent CommentsThis is the error I got following the directions.
Warning: Invalid argument supplied for foreach() in …my-hacks.php on line 18Forum: Plugins
In reply to: Aggregator Plugin?looks great. Now how do I generate a feed of the feeds that I am subscribed to? I use Sage with Firefox. Does it do this?
And will this plugin only list the blogs by name that way?Forum: Fixing WordPress
In reply to: problem with disappearing PagesI noticed that too, and wow, things are fixed quickly around here! I wonder if the fix has also addressed the problem I noticed and described here:
http://wordpress.org/support/6/14198#post-98106
has anyone else experienced this?