tgebauer
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Images do not work after WPMU Upgrade@ipstenu, I just restored my files back to an older backup.
I’m not sure what happened with my stuff, but under the gun for time so I had to roll it back!
I am going to try to recreate this scenario on another server to see if I can replicate this issue, but for now, consider it closed.
Forum: Networking WordPress
In reply to: Images do not work after WPMU UpgradeHey Ipstenu,
It seems you’re onto something here.
So, the actual path to the site is … wp-content/blogs.dir/25/files
As such, I adjusted your URL to: http://hello.tomgebauer.net/wp-content/blogs.dir/25/files/2012/01/fi-Hello.png. This does actually pull up the correct image.
To answer you questions:
Blogs.dir does exist. The ID for this site is 25.On upgrading from WPMU:
Apologies for calling this WPMU. This statement was technically incorrect.I should be referencing this as WP Multisite or Network. I have always been running WP3.0. Everything was running swimmingly (for months!) until I updated to WordPress (in the My Sites -> Network Admin -> Dashboard -> Updates Tab) v3.3.2 this afternoon.
Hopefully this additional information can help!
Forum: Networking WordPress
In reply to: Images do not work after WPMU UpgradeHey Ipstenu, the site I’m working on is:
The root site is http://www.tomgebauer.net. However, I’m unsure if this is specifically the information you’re looking for.
Tom G.
Thanks — I’ll try it and let you know how I make out. Best.
Tom
Also changed the default output from “list” to “paragraph” by making the following changes:
//Build the query for get_posts() $catposts=get_posts($category.'&numberposts='.$atts['numberposts'].'&orderby='.$atts['orderby'].'&order='.$atts['order']); foreach($catposts as $single): $output .= "<p><a href='".get_permalink($single->ID)."'>".$single->post_title."</a>"; if($atts['date']=='yes'){ $output.=" - ".$single->post_date; }and the correpsonding closing tag to: (again from ) to
$output.="</p>"; endforeach; $output .= "</ul>"; return $output; }I left the UL there – will work with that later I guess.
To fix the line breaks after the author, change the query (starting on line 61, at least in my editor) to this :
if($atts['author']=='yes'){ $lcp_userdata = get_userdata($single->post_author); $output.=" - ".$lcp_userdata->user_nicename."<br />"; }the real change is in the
".$lcd_userdata->user_nicename."<br />";Works for me at least…