Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6385815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:56:48+00:00 2026-05-25T02:56:48+00:00

Basically my controller is just grabbing all members: @members = Member.all and Im looping

  • 0

Basically my controller is just grabbing all members: @members = Member.all and Im looping through them while checking to see if they have a profile picture uploaded and if not then the default should be loaded:

<% @members.each do |member| %>
    <% unless member.image.nil? %>
      <li style="float:left; width:100px;">
        <%= image_tag(member.image.url(:tiny)) %>
        <%= link_to member.email, member_path(member)  %>
      </li>
      <% else %>
      <li style="float:left; width:100px;">
        <%= image_tag("default_member_small.jpg") %>
        <%= link_to member.email, member_path(member)  %>
      </li>
    <% end %>
<% end %>

It seems to think every member has a profile image, and the image tag is calling “images/tiny/missing.png” for the missing images.

What gives?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T02:56:49+00:00Added an answer on May 25, 2026 at 2:56 am

    I am guessing you are using paperclip, if you are, you should not use nil?, you should use present?:

    <% @members.each do |member| %>
        <% if member.image.present? %>
          <li style="float:left; width:100px;">
            <%= image_tag(member.image.url(:tiny)) %>
            <%= link_to member.email, member_path(member)  %>
          </li>
          <% else %>
          <li style="float:left; width:100px;">
            <%= image_tag("default_member_small.jpg") %>
            <%= link_to member.email, member_path(member)  %>
          </li>
        <% end %>
    <% end %>
    

    And instead of having an if you should just have this image named as paperclip expects it, there should not have any ifs in your code for this kind of handling.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So basically I have just benchmarked my update_feeds controller and found that the amount
I have a small PHP framework that basically just loads a controller and a
I've just written a small XBox 360 Wireless Controller managed interface that basically wraps
I have a simple controller called list_controller with an index that basically does def
Basically I have three pages. -A page with all possible search results for example:
I have just made my first proper little desktop GUI application that basically wraps
Ok so basically I have a UITabBarController as my root view controller. I have
I have a UIViewController, a switcher that will basically just rotate a view from
I have just started using OutputCache on some of my controller actions and I
I have just optimised some Ruby code that was in a controller method, replacing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.