Registered: 05/13/08
Posts: 593
Loc: Coast of Maine
is it just me or is the featured member image on the left column broken?
_________________________
"No matter where you go, there you are." "If you can't do something smart, Do something right" "There are three kinds of people in the world, those who can count, and those who can't"
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#236883 - 05/13/1007:38 PMRe: featured member image
[Re: Bad Frog]
ONCE!!!. It is my pet peeve. I even post in the shout box. Sometimes it is due to a remote avatar. Where the file is now missing. But not always. But even then it should default to the nopicture.gif. IMO.
The random image is a different issue. Where orphaned pictures appear in the island but not in the gallery. But the island was just a simple hack to show some pictures. Hopefully v8 will clean up the orphaned files and they both will work fine.
Ok, here is the deal. In your stock UBB you have a nophoto image. If you have several styles that your users can select you have to have that in every style image folder or it will come up with that error and a broken image.
Okay I found one style that was missing the gif file . But nobody is using the style. So we will see but still this site has the same issues on featured members.
Here is an an actual code change that will work. Gizmo was close, but just needs to be a bit different and it needs to be general/default I've added it here as well so it should no longer break, unless someone just has a link to an avatar that doesn't exist.
Open up your cache_builders/featured_member.php script. Line 57, you'll see this:
Code:
if (!$avatar) {
Change that, so it reads:
Code:
if (!$avatar) {
if (!$style_array['general']) {
$style_array['general'] = "general/default";
}
Well 24 hours and no errors so far on the featured member. I am a happy,happy,happy,happy camper so far.
Dave, as far as the Random Image issue. I think it has to do with the sql query just looks for any files including orphaned thumb files from past versions. But the normal resolution files are missing. So it breaks when you attempt to open them.
did that modification also make it into the current downloadable .zip of 7.5.5 ?
would also apply to other known bugs.. i'd wager there are at least 10 of em..
:2c:
Yep I have seen this before. In fact I think I commented on this once.
Where minor bug fixes that did not warrant a version change and just was added to the existing zip. Without any mention that the zip was changed. So how are we supposed to know?
This happened only once to my knowledge though. And I think it was a F5 alert that I installed it, like the very first day of the release. Then in a day or two a file was changed without any notice.
Well I did find something. To nag about Since I posted my error log for the featured member issue I am under constant attack by potential spammers trying to find access to phpmyadmin. I won't do that again.
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
Need to get a changelog going but this is what we have so far. One isn't necessarily a bug.
Fixed an issue with RSS feeds showing the UBBCode instead of the HTML. Fixed an issue with the featured member sometimes showing a broken image. Fixed an issue where sometimes an invalid entry would be added to the css files causing css errors. Fixed a bug when trying to delete a user group. Fixed a pagination problem when viewing user subscriptions Fixed a bug with the moderator flag sometimes not showing up in certain forums that a user moderates. When a subscription expires for a user, it will also send a private message to the primary admin notifying them of the expiration.
- portal.tpl -- add post_inner class - also see same problem with images in profile comments, but i'd think another class might be needed there, since there is less room.. at least append a class, so cssers can compensate - subscription pagination change from 1 to 25 per page - html.inc.php ($v == 3) issue for mod vs global mod (line 1988ish) - postlist.inc.php -- add proper language for teaser forum. (line 166ish) right now it uses BAD_GROUP, but should give teaser language, if it's teaser forum.. -- cosmetic - when you display a user profile, alphabetize the ubb buddies..