My captche image is not popping up in the pages to start new accounts or new memberships. It is used for security reasons. how do I fix it? everything is fine up to that point.

the distorted image in the setup for new accounts does not appear.

If images are missing then check that you aren't blocking images from some domains.
See:
* http://kb.mozillazine.org/Images_or_animations_do_not_load
* Check the permissions for the domain in the current tab in Tools > Page Info > Permissions
* Check that images are enabled: Tools > Options > Content: [X] Load images automatically
* Check the exceptions in Tools > Options > Content: Load Images > Exceptions
* Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images)
There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
* https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Similar Messages

  • I have updated my 4S i phone with ios 8.1.2, while activating i forgot my password, i am able to sign in my apple id in pc but not not able to sign in my i phone and  message- your apple id has been disable for security reasons please help

    I have updated my 4S i phone with ios 8.1.2, while activating my iphone, i forgot my password. I am able to sign in my apple id in pc (manage my account) but not not able to sign in my i phone and  message- your apple id has been disable for security reasons please help.
    my apple id is with extension @ gmail.com but for activation it is mentioned that it is linked with extension of @me.com

    Hi ulhas1frombanihal,
    Welcome to the Support Communities!  Because your account has been disabled, you will need to contact Apple ID account security to straighten this out.
    Contact Apple for help with Apple ID account security - Apple Support
    http://support.apple.com/en-us/HT5699
    I hope this information helps ....
    - Judy

  • TS2446 im trying to change my password for my apple id but its says that my account has been disabled for security reasons, how can i solve this problem?

    im trying to change my password for my apple id but its says that my account has been disabled for security reasons, how can i solve this problem?

    Depending on why it's been disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If it then works on your computer's iTunes but not your phone/iPad then try logging out of your account on the phone/iPad by tapping on your id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on it

  • Why are the pages still loading so slowly? Firefox is also still using a lot of memory. I've tried everything and still have the same issues. The new versions never help either. The support section still lists the same "solutions" that do not work.

    I have spent too much time on the same issues. Will the issues ever be resolved?

    i'm also having major CPU problems w/ FF 29.0.1. when i restart the app it calms down again but after loading tabs it steadily climbs up to 100% after not too long. i have checked out the 2 CPU links/articles above and do all the basic troubleshooting and tips, but with all the FF tools & add-ons isn't there some sort of CPU monitor that has the ability to display which extensions/scripts are hogging the CPU? Activity Monitor on Mac just shows the total used by the app. it's impossible in my case to efficiently disable dozens of add-ons & scripts, restart, and test each one by one b/c it can take several hrs before the CPU starts to spike high again. i have no time for this.
    thanks

  • Image is not getting printed on the page.

    Hi,
    I am using oracle apex 3.2 and Oracle 10g XE database. I am creating a email template based on the plsql and html content
    DECLARE
      l_header VARCHAR2(8000);
      l_content VARCHAR2(18000);
      l_footer VARCHAR2(8000);
    CURSOR contract IS
        SELECT DISTINCT contract_number, l.company_name
        FROM ib_support_contracts_mv c, customer_products p, customer_locations l
        WHERE c.serial_number = p.product_serial_number
        AND   p.location_id = l.location_id
        AND   c.contract_number = :P5_CONTRACT_NUMBER
        AND   ROWNUM <= 1
        AND   sub_line_status != 'TERMINATED' 
        AND   line_status != 'TERMINATED'
        AND   header_status != 'TERMINATED';
    --    AND   header_status = 'ACTIVE'
    --    AND   line_status = 'ACTIVE';
      CURSOR product (v_contract_number IN VARCHAR2) IS
        SELECT DISTINCT order_number, installed_at_name, ship_to_name, bill_to_name, item_description,
           serial_number, service_start_date, service_end_date, cust_po_number, service_description,
           ship_date
        FROM ib_support_contracts_mv v1
        WHERE contract_number = v_contract_number
        AND   NVL(order_number, 99999) =
              (SELECT max(NVL(order_number,99999)) FROM ib_support_contracts_mv v2
               WHERE  v1.serial_number = v2.serial_number
               AND    v1.contract_number = v2.contract_number
               AND    v2.line_status != 'TERMINATED')
        AND ROWNUM <= 100
        AND  sub_line_status != 'TERMINATED' 
        AND  line_status != 'TERMINATED' 
        AND  header_status != 'TERMINATED'
        ORDER BY item_description;
    --    AND   header_status = 'ACTIVE'
    --    AND   line_status = 'ACTIVE'
    --    AND   ship_date IS NOT NULL
    BEGIN
      l_header := '<table width="100%">
                     <tr>
                       <td align="left">
    *<img src="#WORKSPACE_IMAGES#merunetwork.jpg">*
                       </td>
                       <td align="right"><h2>Support Contract Certificate</h2>
                       </td>
                     </tr>
                     <tr>
                       <td colspan="2"><br/>
                         <p>Thank you for purchasing award winning product and services from Meru Networks.<p>
                         <p>Below are the details of your service order, confirming support order completion.</p>
                       </td>
                     </tr>
                   </table>' || utl_tcp.crlf ;
      FOR c IN contract LOOP
        l_content := '<div style="text-align: center;"><h2>CID: ' || c.contract_number || '</h2><h2>' || c.company_name || '</h2></div>' || utl_tcp.crlf ;
        l_content := l_content || '<table width="100%" cellpadding="3" cellspacing="0" border="0" class="tab0">' || utl_tcp.crlf ;
        l_content := l_content || '  <tr class="tab0">' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Products Covered</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Service Ordered</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Serial Numbers</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Begin Date</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Expires</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">PO</th>' || utl_tcp.crlf ;
        l_content := l_content || '  </tr>' || utl_tcp.crlf ;
        FOR p IN product(c.contract_number) LOOP
          l_content := l_content || '  <tr>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.item_description || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.service_description || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.serial_number || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.service_start_date || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.service_end_date || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.cust_po_number || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '  </tr>' || utl_tcp.crlf ;
        END LOOP;
        l_content := l_content || '</table>';
      END LOOP;
      l_footer:= l_footer|| '<h3>Meru Assure Reference Links:</h3>' || utl_tcp.crlf ;
      l_footer:= l_footer|| '<a href="http://www.merunetworks.com" target="_new">http://www.merunetworks.com</a>' || utl_tcp.crlf ;
      l_footer:= l_footer|| '<p>If at any time you have questions regarding the activation of your service contract or any other questions please contact our customer group at Meru Networks.</p>' || utl_tcp.crlf ;
      l_footer := l_footer|| '<h3>How to reach Meru Customer Support group:</h3>' || utl_tcp.crlf ;
      l_footer := l_footer|| '<ul><li>24x7x365 online support portal <a href="http://support.merunetworks.com" target="new">http://support.merunetworks.com</a>.</li><li>Toll-free numbers:<br/>   <strong>In United States: </strong>1 888 637 8952<br/>   <strong>In United Kingdom: </strong>0800 085 7381<br/>   <strong>In France: </strong>080 554 0108<br/>   <strong>In Norway: </strong>800 30 354<br/>   <strong>In Sweden: </strong>020 160 5667<br/>   <strong>In Denmark: </strong>80 600 087<br/>   <strong>In Japan: </strong>0120 924853</li><li>Direct number:<br/>   Regions outside toll-free areas: 1 650 385 3114</li><li>Email address:<br/>   [email protected]</li></ul>' || utl_tcp.crlf ;
      l_footer := l_footer|| '<p>We look forward to working with you in the future and thank you for purchasing a MeruAssure support plan.</p><br/>Sincerely,<br/><br/>Trevis Schuh<br/>Vice President - Worldwide Support & Services' || utl_tcp.crlf ;
      l_footer:= l_footer|| '' || utl_tcp.crlf ;
      l_footer:= l_footer|| '';
      :P5_CONTENT := '<STYLE>.TableBorder {border-top: 4px solid #b3394e;border-right: 4px solid #b3394e;border-left: 4px solid #b3394e;border-bottom: 4px solid #b3394e;padding: 10px;}
    .formLabel {font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;font-size: 11px;font-weight: bold;color: #000000;}
    .GroupBox {border-top: 1px solid #BDC7D6;border-right: 1px solid #BDC7D6;border-bottom: 1px solid #BDC7D6;border-left: 1px solid #BDC7D6;}
    body { font: 12px/16px Verdana, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; color: #555; margin: 0 auto; }
    table.tab0 { background: #eee; vertical-align: top; font: 0.9em sans-serif; border: solid 0px #b3394e; }
    th.tab0 { padding: 6px; margin:1px; color: #b3394e; font: 0.9em sans-serif; text-transform: uppercase; font-weight: bold; border-top: 4px solid #b3394e; border-bottom: 1px solid #b3394e; border-left: 0; border-right: 0; background-color: #fff; text-align: left;}
    td.tab0 { padding: 5px; vertical-align: top; border-bottom: 1px solid #b3394e; background-color: #fff; }
    tr.tab0 { }
    td.tab0s { padding: 5px; vertical-align: top; border-bottom: 1px solid #b3394e; background-color: #fff; white-space:nowrap; font-weight: bold;  }
    td.tab0 a { color: #08c; }
    td.tab0 a:link, a:visited, a:active { text-decoration: none; }
    td.tab0 a:hover { text-decoration: underline; }
    h1 { font-weight: bold; font-size: 24px; margin-top: 5px; margin-bottom: 8px; color: #b3394e; line-height: 26px; }
    h2 { font-weight: bold; font-size: 18px; margin-top: 5px; margin-bottom: 8px; color: #b3394e; line-height: 24px; }
    h3 { font-weight: bold; font-size: 14px; margin-top: 5px; margin-bottom: 8px; color: #b3394e; line-height: 20px; }
    h4 { font-weight: bold; font-size: 10px; line-height: 18px; color: #b3394e;}
    .smallcaps { color: #333; font: 0.8em sans-serif; text-transform: uppercase; }
    </STYLE>' || utl_tcp.crlf ||
           '<div>
              <table width="98%" cellpadding="5" cellspacing="5">
                <tr>
                  <td>' || utl_tcp.crlf ||
                    l_header || l_content || l_footer ||
           '      </td>
                </tr>
              </table>
            </div>' ||  utl_tcp.crlf;
    END;Problem am facing here is i am trying to dispaly a logo in the template which is uploaded in the workspace. Its not getting display please suggest me how to fix this issue.
    Thanks
    Sudhir

    This question has been answered here:
    Inconsistant translation of #WORKSPACE_IMAGES# by server
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Photoshop cs6 error "could not use the type tool because the target channel is hidden.  happens when im typing in photoshop, go to another layer and then come back. can't alter text at that point

    photoshop cs6 error "could not use the type tool because the target channel is hidden.  happens when im typing in photoshop, go to another layer and then come back. can't alter text at that point.  i really need to get thsi figured out. thank you.

    You may have answered my question. I AM using the 64bit version of Illustrator CS6. I had no idea there were bugs in it that affected paths copied and pasted from Illustrator to Photoshop.
    A bit more about what I'm trying to accomplish... I'm trying to follow Deke's tutorial (http://www.deke.com/content/dekes-techniques-018-creating-a-3d-pie-chart) which is already difficult since so much has changed between CS5.5 and 6, but then on top of that, I keep getting errors!
    So I created the pie chart exactly as he shows and copied and pasted into Photoshop exactly as he does. Before submitting this post, though, I tried drawing just two very simple triangle shapes, copying them both and pasting them into Photoshop as a shape layer. The shapes weren't overlapping, but they were a part of the same shape layer just like the pie chart tutorial.
    Thanks for your help. If there is anything else I should try before just giving up because of the 64bit bugs, please let me know.

  • When I boot computer this message comes up--The procedure entry point -objc-int-image could not be located in the dynamic link library objc.dll.

    When I boot computer this message comes up--The procedure entry point -objc-int-image could not be located in the dynamic link library objc.dll.  I cloud will not open in conrol panel.

    At face value, you're having trouble with an Apple Application Support file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    The recently released version of iTunes (11.1.5.5) included an update to Apple Application Support (AAS version 3.0.1). So it might be worth updating your iTunes to see if that helps with the apparent AAS/iCloud issue.

  • I have been attempting to wipe/erase the iphone 4S I recently purchased...for the past 20 hours....I went to Reset in Settings and clicked on "Erase All Content and Settings"....At that point the phone the screen went dark except for a white circular symb

    I have been attempting to wipe/erase the iphone 4S I recently purchased...for the past 20 hours....I went to Reset in Settings and clicked on "Erase All Content and Settings"....At that point the phone the screen went dark except for a white circular symbol revolving - indicating something should be happening....
    The instructions indicated that, depending on what needed to be erased, the process could take several hours. Even though the device had a Tom Tom application with all the maps of Europe etc (about 2GB) and there were several other apps on the device, it does not seem to me normal that the device would be still clearing into the next day - today!
    Can you please help!?
    Richard W.

    Something has gone wrong. Turn your phone off, then force it into recovery mode & restore it:
    Press the Sleep/Wake button & Home button at the same time, keep pressing until your phone turns off, then release.
    Leave the USB cable connected to your computer, but NOT your phone, iTunes running, press & hold the home button while connecting the USB cable to your dock connector, continue holding the home button until you see “Connect to iTunes” on the screen. You may now release the home button. iTunes should now display that it has detected your phone in recovery mode, if not quit and reopen iTunes. If you still don’t see the recovery message repeat these steps again. iTunes will give you the option to restore from a backup or set up as new.
    Make sure you have no anti-virus software running or any firewalls...turn all of that stuff off.

  • HT1414 My wife gave me her older ipad. I have reset and removed all data. My Apple ID (Ipod touch) is not an email adress, but when I try to stu up the ipad it asks for my Apple ID, then tells me that for security reasons the Apple ID must be in email for

    My wife gave me her older ipad. I have reset and removed all data. My Apple ID (Ipod touch) is not an email adress, but when I try to stu up the ipad it asks for my Apple ID, then tells me that for security reasons the Apple ID must be in email format?

    Change it to an email address.
    -> https://appleid.apple.com/

  • HT5312 My e-mail account has been frozen for security reasons.  I do not have a rescue e-mail address on file so when I try to use "forgot" it goes to the e-mail address that is frozen.  How can I gain access to my e-mail address

    My e-mail account has been frozen for security reasons.  I do not have a rescue e-mail address on file so when I try to reset my password the instructions are sent to the e-mail address that is frozen.  How can I get Apple to remove the frozen status from my e-mail account?
    <Email Edited by Host>

     Account Security Team (AST) 
    Check the AppleCare number for your country here:
    http://support.apple.com/kb/HE57
    Call them up, and let them know you would like to be transferred to the Account Security Team.

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • OLE images are not getting transfered to the pdf format

    After executing the oracle report file 6i and while sending the report file directly from the report screen to the microsoft outlook mail by clicking the mail option from the report, the OLE Images are NOT getting converted to the mail attachment. Rest of the data is getting converted fine.

    hope this is not the correct forum to place this question.
    if not, mention DB and OS versions and state your problem more clearly
    mark answered post as helpful / correct*

  • When I log in to update a page it says that's someone else is already logged in (but they are not) so I'm not able to update the page - any suggestions?

    When I log in to update a page it says that's someone else is already logged in (but they are not) so I'm not able to update the page - any suggestions?

    I take it you are not the administrator for the site? If so, you would be given the option to unlock the page (it will be near the top of the screen in a yellow box).
    Do you have access to the site outside of Contribute. If you can't unlock it via the administrative function mentioned above, you need to go into the site using Windows Explorer (if it's a local development site) or an FTP client and find a file with the same name as the page but with a .lck extension and delete it. That will unlock the page.

  • Apple deleted my account when I made a complaint about being charged for apps that I did not purchase! The said it was for security reasons as my account must have been compromised but only Apple have mu information.I am convinced the operator delete

    Apple deleted my account when I made a complaint about being charged for apps that I did not order. They said that my account had been compromised and it was in my best interests to delete it for security reasons! I am convinced the operator deleted my account out of sheer malice because I complained - can anyone advise?

    No. It would have been done for security reasons. You notified them that money was being unknowingly taken from your account, so they froze it.
    Change your Apple ID here
    And also check for unusual activity on your credit card with your bank. Change all your security password while you are at it.
    Pete

  • I have a problem mackeeper keep opening up another tab and these little green circle stuff keep popping up on the page and overtime my cursor hover over it it pops up a little box with stuff in it does anyone have an idea how to get rid of it?

    i have a problem mackeeper keep opening up another tab and these little green circle stuff keep popping up on the page and overtime my cursor hover over it it pops up a little box with stuff in it does anyone have an idea how to get rid of it?

    You installed a variant of the "VSearch" trojan. Remove it as follows.
    This malware has many variants. Anyone else finding this comment should not expect it to be applicable.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.2c232f1e4d12129e.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.2c232f1e4d12129e.daemon.plist
    /Library/LaunchDaemons/com.2c232f1e4d12129e.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/2c232f1e4d12129e
    /System/Library/Frameworks/v.framework
    The trouble may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

Maybe you are looking for

  • Creating a symbol from shape with gaussian blur = problem

    I am trying to create artwork to map to a globe using the 3D revolve effect...the problem is the shape/layer I'm using to create the "glow" effect (compound path filled with white and a gaussian blur applied): When I create a symbol out of this, here

  • Ipod working on one machine but not another

    I purchased a 30gb iPod video today, the problem is after I installed iTunes and plugged the iPod in I got an error message stating my ipod was possibly corrupted and suggesting that I restore it. When I try to restore it says this isnt possible beca

  • Shift Register and waiting time functions - DAQmx

    Thanks that worked. 

  • Two identical hosts: MySQL sucks, Oracle doesn't

    I have two mostly identically configured V440s with internal disks, the only difference is that one has SUN72G ST373297LC internal disks and the other has SUN146G ST314670LC internal disks. The internal disks are mirrored together with SVM. The inter

  • Itunes menu is pink

    so i am not sure why but when i open my itunes the list of songs is pink... has anyone come accross this? how do i fix it?.. when i click on a song it highlights it in black, i also click on all the catagories on the left and when i do the background