We need help with unwanted contact requests

In the last 2 weeks, I have received 13 unwanted contact requests that I have blocked, which is roughly 2 unwanted contact requests for every Skype message or call I'm interested in receiving. 
All of my privacy settings are set to "Contacts" and I do not publish my Skype ID on LinkedIn, the only social media site I use.
What else can I do?

Hello Gilad,
Thank you for your contact!
The script does not work, no error message comes up, I am sure it`s a
stupid mistake but neither my boss nor I are programmers.
Please have a look at the form enclosed, the field in question (field
name "calculated currency value", red border) is on the top right  and
refers to the field "FX" (field name "FXname 4800") below (blue border)
Both fields are in number format so I don`t know why this doesn't work,
what else can it be?
With kind regards
Ursula

Similar Messages

  • Need help with PHP contact form

    Hi guys,
    I've made a PHP contact form for my site and need help with a couple of things:
    The form action links an external PHP script (scripts/contact-form-script.php) but is there a way I can have it so the PHP script for the form is contained within the same PHP file as my contact form (contact.php)?
    I tried just putting the form code at the top of contact.php but the browser automatically reads the anti-spam re-direct, so maybe that needs revising too?
    The second thing is, how can I make the Name, Email and Message fields mandatory? So if a user tries to submit the form and hasn't filled in one of the required fields and clicks submit, contact.php reloads with a message at the top of the form saying something like 'Complete the required fields' and highlights the relevant field with a red border?
    Here's the code for contact.php:
    <form action="http://www.mydomain.com/scripts/contact-form-script.php" method="post" name="contact" id="contact">
    <p><strong>Name:*</strong><br />
    <input name="name" type="text" class="ctextField" /></p>
    <p><strong>E-mail:*</strong><br />
    <input name="email" type="text" class="ctextField" /></p>
    <p><strong>Telephone:</strong><br />
    <input name="telephone" type="text" class="ctextField" /></p>
    <p><strong>Company:</strong><br />
    <input name="company" type="text" class="ctextField" /></p>
    <p><strong>Address:</strong><br />
    <input name="address1" type="text" class="ctextField" /></p>
    <p><input name="address2" type="text" class="ctextField" /></p>
    <p><strong>Town:</strong><br />
    <input name="town" type="text" class="ctextField" /></p>
    <p><strong>County:</strong><br />
    <input name="county" type="text" class="ctextField" /></p>
    p><strong>Postcode:</strong><br />
    <input name="postcode" type="text" class="ctextField" /></p>
    <p><strong>Message:*</strong><br />
    <textarea name="message" cols="55" rows="8" class="ctextField"></textarea></p>
    <p><input name="submit" value="SEND MESSAGE" class="submitButton" type="submit" /><div style="visibility:hidden; width:1px; height:1px"><input name="url" type="text" size="45" id="url" /></div></p>
    </form>
    And this is the PHP I'm using to submit the form data for contact-form-script.php:
    <?php
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $to = "[email protected]";
    $subject = "Contact from website";
    $message = $headers;
    $message .= "Name: " . $_POST["name"] . "\r\n";
    $message .= "E-mail: " . $_POST["email"] . "\r\n";
            $message= '
                <table cellspacing="0" cellpadding="8" border="0" width="500">
                <tr>
                    <td colspan="2"></td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td width="154" style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Name</strong></td>
                  <td width="314" style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$name.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>E-mail address:</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$email.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Telephone number:</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$telephone.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Company:</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$company.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Address</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$address1.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$address2.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Town</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$town.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>County</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$county.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Postcode</strong></td>
                  <td style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$postcode.'</td>
                </tr>
                <tr bgcolor="#eeeeee">
                    <td colspan="2" style="font-family:Verdana, Arial; font-size:11px; color:#333333;"><strong>Message</strong></td>
                </tr>              
                <tr bgcolor="#eeeeee">
                    <td colspan="2" style="font-family:Verdana, Arial; font-size:11px; color:#333333;">'.$message.'</td>
                </tr>              
                <tr><td colspan="2" style="padding:0px;"><img src="images/whitespace.gif" alt="" width="100%" height="1" /></td></tr>
             </table>
    $url = stripslashes($_POST["url"]);
    if (!empty($url)) {
    header( 'Location: http://www.go-away-spam-robots.com' );
    exit();
    mail($to, $subject, $message, $headers);
    header( 'Location: http://www.mydomain.com/sent.php' ) ;
    ?>
    Any help on this would be greatly appreciated.
    Thank you and I hope to hear from you!
    SM

    Revised code with form validation for Name Email and Message:
    <?php
    if (array_key_exists('submit', $_POST)) {
        $name = $_POST['name'];
        $email = $_POST['email'];
        $telephone = $_POST['telephone'];
        $company = $_POST['company'];
        $address1 = $_POST['address1'];
        $address2 = $_POST['address2'];
        $town = $_POST['town'];
        $county = $_POST['county'];
        $postcode = $_POST['postcode'];
        $formMessage = $_POST['message'];
    if (empty($name)) {
                                                $warning['name'] = "Please provide your name";
    if (empty($email)) {
                                                $warning['email'] = "Please provide your email";
    if (empty($formMessage)) {
                                                $warning['message'] = "Please provide your message";
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $to = "[email protected]";
    $subject = "Contact from website";
    $message = $headers;
    $message .= "Name: " . $_POST["name"] . "\r\n";
    $message .= "E-mail: " . $_POST["email"] . "\r\n";
    $headers  = "MIME-Version: 1.0\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
            $message= "
    <table cellspacing='0' cellpadding='8' border='0' width='500'>
                <tr>
                    <td colspan='2'></td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td width='154' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Name</strong></td>
                  <td width='314' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$name."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>E-mail address:</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$email."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Telephone number:</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$telephone."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Company:</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$company."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Address</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$address1."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$address2."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Town</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$town."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>County</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$county."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Postcode</strong></td>
                  <td style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$postcode."</td>
                </tr>
                <tr bgcolor='#eeeeee'>
                    <td colspan='2' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'><strong>Message</strong></td>
                </tr>              
                <tr bgcolor='#eeeeee'>
                    <td colspan='2' style='font-family:Verdana, Arial; font-size:11px; color:#333333;'>".$formMessage."</td>
                </tr>              
                <tr><td colspan='2' style='padding: 0px;'><img src='images/whitespace.gif' alt='' width='100%' height='1' /></td></tr>
             </table>
    $url = stripslashes($_POST["url"]);
    if (!empty($url)) {
    header( 'Location: http://www.go-away-spam-robots.com' );
    exit();
    if (!isset($warning)) {
    mail($to, $subject, $message, $headers);
    header( 'Location: http://www.mydomain.com/sent.php' ) ;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    p {
        margin: 0;
        padding: 10px 0 0 0;
    .warning {
        color:#C00;
    </style>
    </head>
    <body>
    <form action="" method="post" name="contact" id="contact">
    <p><strong>Name:*</strong><br />
    <input name="name" <?php if (isset($warning['name'])) { echo "style='border: 1px solid #C00'"; } ?> type="text" class="ctextField" />
    <?php if (isset($warning['name'])) { echo "<p class='warning'>".$warning['name']."</p>"; }?>
    </p>
    <p><strong>E-mail:*</strong><br />
    <input name="email" <?php if (isset($warning['email'])) { echo "style='border: 1px solid #C00'"; } ?>type="text" class="ctextField" />
    <?php if (isset($warning['name'])) { echo "<p class='warning'>".$warning['email']."</p>"; }?>
    </p>
    <p><strong>Telephone:</strong><br />
    <input name="telephone" type="text" class="ctextField" /></p>
    <p><strong>Company:</strong><br />
    <input name="company" type="text" class="ctextField" /></p>
    <p><strong>Address:</strong><br />
    <input name="address1" type="text" class="ctextField" /></p>
    <p><input name="address2" type="text" class="ctextField" /></p>
    <p><strong>Town:</strong><br />
    <input name="town" type="text" class="ctextField" /></p>
    <p><strong>County:</strong><br />
    <input name="county" type="text" class="ctextField" /></p>
    <p><strong>Postcode:</strong><br />
    <input name="postcode" type="text" class="ctextField" /></p>
    <p><strong>Message:*</strong><br />
    <?php if (isset($warning['message'])) { echo "<p class='warning'>".$warning['message']."</p>"; }?>
    <textarea name="message" <?php if (isset($warning['message'])) { echo "style='border: 1px solid #C00'"; } ?> cols="55" rows="8" class="ctextField"></textarea></p>
    <p><input name="submit" value="SEND MESSAGE" class="submitButton" type="submit" /><div style="visibility:hidden; width:1px; height:1px"><input name="url" type="text" size="45" id="url" /></div></p>
    </form>
    </body>
    </html>

  • Foot stand not provided with my replacement WRT-350N - need help with Cisco contact

    Hi!
    I am starting to feel like Michael Douglas in the movie Falling Down and need some help.
    Story:
    I finally sent in my faulty WRT-350N router and when I got the replacement everything but the plastic foot stand was included. I want to have my router standing up to save desk space but now I have no foot.
    "OK, should not be hard to get Linksys to send me the missing foot stand" was my thought. Now I have called the RMA line and also emailed them and I get a similar answer like Michael Douglas got with a smile
    I keep hearing that I cannot get the part since it is not on the product's content list. Like that is *my* problem. I just want the part and do not care whether it is on a list or not. It is the part on top of the router in the picture. I even asked the Linksys representative to Google a bit for WRT-350N and there are foot stands on almost all pictures and it is definitely included in the box. I was told I could go nowhere else for help either with this. I really doubt that but fail to find a channel to Linksys that may be able to help.
    If some Linksys representative sees this please help me!
    Thanks, Niklas
    RMA XXXXX - missing router stand/foot
    (Mod note: Edited for guideline compliance. E-mail conversation removed.)
    Message Edited by kent07 on 07-01-2009 03:10 AM
    Solved!
    Go to Solution.

    Now it should be working. To moderators, this does not hold any personal info but just want to show the quite long text to read through for the RMA:
    Thank you for contacting Linksys Customer Service Department. First of all, we would like to inform you that, if your item has been purchased less than 2 years ago, you have the possibility of replacing it through the place of purchase.
    If you want to replace your item through Linksys, we are more than glad to provide you with our assistance. In order to create an RMA ( authorization number for the replacement under warranty), you can do it online at
    https://linksysrma.moduslink.com/Consumer/pag/ChooseRegion.aspx.
    On the other hand, if you prefer us placing the RMA, please reply to this email including the following information:
    Name:
    Last Name:
    Company Name:
    Street Address:
    City:
    Postal Code:
    Day Time Phone Number:
    Model (include version):
    Serial Number:
    Date of Purchase:
    Place of Purchase (store):
    Once the RMA is created, you will receive a confirmation e-mail with the RMA number on a shipping label ( not a prepaid, as the inbound shipping is up to the customer) and all the terms and conditions . You will have to print three copies of that label. The first copy you are going to stick it in the outside of the box, the second one you are going to join it in the inside of the box and the last one is a copy for you as assurance. Together with this e-mail it will also be included all the terms and conditions. We will strongly appreciate your reading them carefully before sending the item to us. In relation to this, it will be our pleasure to summarize some of the important conditions we state in order to clarify our standard procedure:
    Please write down the RMA# ( not the case id#) on the outside of the box with big numbers and letters. Moreover, we recommend our customers to use a traceable shipping method in order to get a tracking number for the delivery. This number will be helpful to track the package in case of any potential inconvenience. Remember that you will have to pay just for the inbound shipping while Linksys will be responsible for the rest of the expenses.
    Furthermore, remember to include all the accessories that were included in the original package: Power Supply, Cables, User Guide, CD's. Otherwise, warranty replacement will not be possible to be performed. All other accessories shipped that did not come in the original box may not be returned. Moreover, it is important to remember that you do not have to ship the original box. Also, include on the shipping box a copy of the proof of purchase, not the original.
    IMPORTANT: -If your product is part of a network kit just send the defective unit.
    If you have further questions do not hesitate to call us or replying to this e-mail. Our lines are open from Monday to Friday from 10 a.m. to 7 p.m. We recommend our customers to have the case id# handy.
    Regards,
    Linksys Customer Service - EMEA
    Linksys does NOT offer refunds, substitutions, credits, or upgrades.
    Linksys is NOT responsible for lost packages in transit. Please obtain a tracking number as a safeguard for your shipment. Linksys strongly suggests using a reputable shipping company that will provide a tracking number and will insure the package.
    Linksys is not able to accommodate walk-in customers.
    Processing the Defective Unit.
    Package your return unit(s) in one box, please make sure the contents are secure and that enough packaging material is included to prevent the unit(s) from moving around during shipping.
    Please ship the defective unit(s) to the address below.
    Linksys RMA/SILS/ML
    IJsseldijk 29 in Apeldoorn
    7325 WZ Apeldoorn
    The Netherlands
    All original Linksys accessories, such as power adapters, couplers/dongles, and antennas MUST BE RETURNED with the product.
    If you are replacing a product that belongs to a networking kit, only return the defective product listed on the previous web form belonging to the networking kit. Please do not include the working product.
    Linksys is NOT responsible for lost packages in transit. Please obtain a tracking number as a safeguard for your shipment. Linksys strongly suggests using a reputable shipping company that will provide a tracking number and will insure the package.
    Linksys is NOT responsible for lost or damaged personal accessories. If you have attached any accessories that did not come with the original product, please remove these items prior to returning your unit(s). In addition, if your product uses any internal fiber modules please also remove these items unless they are listed as one of the products on the RMA web form.
    Linksys is not responsible for data stored on the hard drive of the defective unit. If the defective unit has a hard drive and it cannot easily be removed form the defective unit, backup your data prior to shipping the defective unit to Linksys.
    The customer bears the cost of sending the defective unit(s) to Linksys including all customs fees and applicable taxes.
    A COPY of the proof of purchase must be included for all products. A valid proof of purchase includes a copy of the receipt, invoice, or packing slip from the retailer, or distributor. A copy of your credit card statement, internal requisition, or purchase order is NOT considered a valid proof of purchase. DO NOT SEND YOUR ORIGINALS.
    Processing the Replacement Unit.
    Linksys bears the cost of shipping the replacement unit to the CUSTOMER unless the expedited shipping option is chosen at the time the RMA is created.
    Upon receipt of the defective unit, a replacement unit is usually shipped within 3-5 business days
    Linksys ships replacement products via GLS ground to customers within the European Union. Non European Union Customer's replacements are shipped FedEx.
    In the event of a backorder, units will ship when available, and the shipping method will remain the same as the option selected at the time the RMA was created.
    If you wish to change the shipping method, YOU MUST contact the Linksys Customer Service department prior to the replacement unit being shipped. Once the unit has been shipped, the funds paid for expedited shipping cannot be refunded. The Customer Service phone numbers are listed below.
    Once you receive your replacement unit, test the unit, and verify that it is working properly.
    Damaged or missing part(s) must be reported within five business days of receiving the replacement unit(s).
    IMPORTANT: If your unit uses a power supply, make sure to use the power supply that comes with the replacement unit, and not the original power supply.
    COUNTRY
    PHONE NUMBER
    Austria
    01360 2772061
    Belgium
    02 627 7077
    Czech Republic
    800 800156
    Denmark
    82 332729
    Finland
    0800 523062
    France
    0800 881 026
    Germany
    0800 1013311
    Hungary
    06 80 204 548
    Iceland
    44 207 660 0121
    Ireland
    1 800 818 188
    Italy
    02 38 591012
    Lithuania
    44 207 660 0121
    Luxembourg
    32 2-627-7077
    Malta
    44 207 660 0121
    Netherlands
    0800 020 0101
    Norway
    235 00060
    Poland
    00800 331 1345
    Portugal
    213 180 081
    Spain
    900 902 207
    Sweden
    0851 992 251
    Switzerland
    022 5675 330
    Turkey
    212 444 2726
    United Kingdom
    0800 026 1418

  • New to iPhone and need help with syncing contacts.

    I know how to change the settings in the iTunes view so that I can set it to sync, but when I started the transfer of my iPhone contacts it tells me that 25% of my contacts will change. What does this mean? Does this mean that the contacts on my iPhone will change, or the contacts in my Address Book on my MBP will change?
    I'm a bit confused by this. I don't want to lose my address book info (mostly e-mail contacts) and I don't want to contaminate my iPhone contacts with  the data in my Address Book.
    Thanks for any help.
    JRH 2

    One alternative would be to set up iCloud and then sync your contacts there.  This would keep them on www.iCloud.com (see http://www.apple.com/icloud/setup/ to set this up).  Another would be to sync them with Google by setting up a gmail account as and exchange account, which enables contact and calendar syncing.  To do this see http://support.google.com/mobile/bin/answer.py?hl=en&topic=14252&answer=138740.

  • Need help with merging contacts! Please help!!!

    Hey guys. I have a little problem with my iPhone 4 with iOS 7. I have recently synced all of my contacts with iCloud so that I will be able to export them to my pc, but this is not the problem. Since I was deleting some of the contacts I have noticed that there is a possibility (in the Edit Mode of the contact) to add a Facebook profile. So I tried to do this with a few contacts.
    I am attaching a photo of how my contact with Facebook profile linked to it looks like but it's in iCloud (I get the same thing on my iPhone).
    Sorry for all the black lines. So when I press the name Betyna ... under the Facebook option I get a new Facebook tab open which says - Page not found. Sorry, this page isn't available. The link you followed may be broken, or the page may have been removed.
    This is the same thing I get on my phone.
    Can someone help me with a solution to my problem, because I really want to link Facebook profiles to my phone contacts, but without the whole Settings/Facebook/Update Contacts and all?
    So please help!!!!!

    I'm creating an input source from the string, then i
    pass it to the parser. No, you don't. Look at the source again.
    byteStream = new
    new ByteArrayInputStream(string.getBytes());
    InputSource is = new InputSource(byteStream);
    parser.parse(byteStream, myParser);//the line that
    hat throws the exceptionYou aren't passing the InputSource to the parser at all.
    However, why are you using this roundabout way to pass the string to the parser? Why not justparser.parse(new InputSource(new StringReader(string)), myParser);?

  • Need Help with hijacked contact lists

    Hello all, I am new here, so please forgive me if I'm posting to the wrong board...didn't really see anything more appropriate. I have a problem with a hijacked contact list:
    I have three email accounts being forwarded to my BB Curve 8530.  Two from Yahoo and one from AOL.  In each of these accounts (when accessed directly from yahoo.com or aol.com) have different contacts.  Not all of these contacts are in my BB contact list.  The other day, one of my yahoo accounts was somehow hacked, and resulted in one of those spam "drugs for sale" emails being sent to people in my contact list.  Well, when I investigated, I discovered that actually, someone who is not even in that particular accounts contact list, but another account.  How is this possible?
    If that is confusing, here's a better summary (using fake email addresses):
    [email protected] sent a bogus email message to [email protected]
    but, [email protected] is not in [email protected]'s address book.  it is in [email protected]  [email protected] is not listed in my BB device's contact list.
    The only thing I can think os is somehow the BB was hacked, and someone was able to go through all linked contact lists, and send an email across all connected accounts.
    How was this able to happen?  what can I do to stop it?
    thanks!
    Lee

    This is the Welcome and Introductions section, so Greetings, and welcome!
    The 8500 model section would be perfect for your questions,so we'll get it move there.
    Meanwhile,
    leevalon wrote:
    The only thing I can think os is somehow the BB was hacked, and someone was able to go through all linked contact lists, and send an email across all connected accounts.
    Sorry, not possible... UNLESS you gave your BlackBerry to someone to use for a while, during which time they spammed all your contacts. Did you?
    Do you have a Security password set on the device? If you are afraid of the above happening, setting the password will just that impossible.
    But it wasn't hacked.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need help with Gmail Contact issue

    First I'm loving the phone! It's a great device and was a great decision to get. I haven't noticed any issues with the phone until today. When I purchased the phone on 3/22/13 everything synced up perfect. All my calendar entries and contacts sync from Gmail and has been fine since today. I got a log in error for my email and calendar this morning and I had an issue logging back in. So I removed the account and set it back up. Now all my contacts on my Gmail account are missing online. The contacts are still on my phone but not associated with my Gmail account. I went through most of them and some are associated with facebook, twitter and linkedin.
    Not sure how but that's not my issue. I will try to figure that out later. What I want is, if there's a way to transfer them back to my Gmail account?
    Again I have all the contacts and really don't want to manually enter them back into the phone.
    Any help will be grateful!

    From my own experience I had issues with Gmail. Later on I found out other people also had issues. These were with syncing.
    What may have happened is your Gmail account setup may have received the indication that you remotely deleted the contacts.
    As for myself, I found I had best results with Hotmail for syncing the contacts and etc.
    Jerry G.

  • I need help with my contacts in Groups

    I have one question with Contacts on your iPhone I already have contacts in groups but when I press done on the top right of the screen it just shows all contacts but I want them in groups which I already have it set up but I think not the right way and this is with icloud because I want my contacts in groups so like Family and then if I want to get to a contact that is family that group would open up or friends and so on the same way as I said with Family Thanks!!
    I hope that's not to confusing let me know

    Here's an article that explains how to create contact groups in the Contacts app on your Mac: http://www.dummies.com/how-to/content/how-to-organize-contacts-into-groups-in-mo untain-l.html.  Once you have created the groups you want, sync your mac with iCloud and these groups will appear on your phone.  This guide explains how to sync your mac with iCloud: http://www.apple.com/icloud/setup/mac.html. 
    After you start syncing your Mac with iCloud, make sure you stop syncing the same data using iTunes.  If you don't, you'll end up with duplicates.  Make sure you don't check Sync Contacts or Sync Calendars, Mail or Bookmarks on the Info tab of your iTunes sync settings if you are syncing these with iCloud now.

  • Need help with my contacts and email - used to have ipod touch

    Hi all
    I had an ipod touch in the past that I used to sync through the laptop i'm on now. However, I sold that quite some time ago and just got a new iphone the other day. when I hooked it up to my laptop to set up, my old touch account came up. This normally wouldn't be a problem but now it's syncing all my OLD contacts (thousands of them) and old email accounts...some of which are not in my windows live mail anymore.
    How do I go about:
    1) getting rid of all these contacts that were just loaded onto the phone
    2) starting new to add only the contacts I have in my windows live contacts list?
    I've tried deauthorizing the computer but that didn't do anything other than delete old apps I had on the touch.
    Much appreciated!

    Were you provided an option to transfer the backup from your Touch to your iPhone that you accepted?
    Which supported application on your computer are you syncing contact info with?
    With Vista, this can be with Outlook 2003 or 2007, or with the address book used by Windows Mail with Vista - which is the name change for Outlook Express with Vista. The address book is called Windows Contacts I believe and the sync option for contact info is selected under the Info tab for your iPhone sync preferences.

  • I have a "Contact" organization issue I need help with.  I organize multiple customers under their account affiliation. I place the people with their contact info under each account name by their dept/role in the notes section of their account. I am l

    I have a "Contact" organization issue I need help with.  I organize multiple customers under their account affiliation. I place the people with their contact info under each account name by their dept/role in the notes section of their account. I am looking to be able to directly dial / email from this info in yet notes section located within a contact. On Blackberry, the notes area entered in a contact can connect directly but on the iPhone those numbers/emails are inactive. I am trying to avoid having to create each of these individuals as a separate contact and keep them under their account affiliation. It is easier to find them.  This does not seem like that complicated of a request and hoping someone can tell me how or share an app that will enable the "notes" within a contact be "active". Hope this makes sense.

    I seem to recall that this question has been asked before and I'm pretty sure that the answer is that you can't do what you want to do with the native contact app. However, there are lots of contact apps out there that pull from the built app's data but have other features. Perhaps one of them would meet your needs.

  • Hi, I need help with my iphone four bought in England but I live in Italy, I upgraded IOS six and now I can not read more than the Italian card, how can I contact a service center via email?

    Hi, I need help with my iphone four bought in England but I live in Italy, I upgraded IOS six and now I can not read more than the Italian card, how can I contact a service center via email?

    Only the carrier it is locked to can authorize unlocking it. Sounds like the phone was hacked to unlock it originally. Find out what carrier it is locked to, and look up their contact information using google or the search engine of your choice.

  • I need help syncing my contacts between Outlook and iPhone using iTunes. I followed the steps given and ended up with just email addresses showing in my contacts even though I have phone numbers and snail mail in my Outlook Contacts. Using  Windows 7

    I need help syncing my contacts between Outlook and iPhone using iTunes. I used the knowldge document and set it up to transfer my Outlook contacts to the iphone using itunes.
    In contacts on the iphone I only see the email addresses.
    Yet in Outlook I have email, snail mail and phone numbers.
    I followed the knowledge document from iphone.
    I did it once, didn't work so deleted all the contacts from the phone and tried again. Same result. I have a PC using Windows 7 64 bit.

    You can't access an Exchange account via ActiveSync with the Address Book and iCal on your Mac.
    You can access a MM account with Outlook on your PC at work and keep your MM email account server stored mailboxes synced between your PC at work, your iPhone, and the MM "cloud". Not sure about syncing MM contact info and calendar events with Outlook at the same time with an Exchange account.
    This will not provide for syncing your Exchange account contact info and calendar events with the Addresss Book and iCal on your Mac because the accounts are separate.
    You can access an Exchange account and a MM account at the same time with the iPhone's mail client, and sync contact info and calendar events over the air with both accounts at the same time. You can view combined contact info or separately for each account, and the same for calendar events.

  • I need help with a second hand iphone i purchased recently,i am having issues setting it up as it has is requesting for the icloud account that was used by the previous user

    i need help with a second hand iphone i purchased recently,i am having issues setting it up as it has is requesting for the icloud account that was used by the previous user

    Sorry.
    The iPhone is of no use until/unless the previous owner removes it from their account.
    You will need to find the prior owner or return the iPhone.

  • HT5699 The country I am living in is not on the Apple Contact Support list and I need help with my security questions.

    I am currently living in Tunisia but it's not on the Apple Contact Support list. I need help with my security questions which I cannot remember the answers. There is no link to send a reset email. What do I do?

    Click here and ask the iTunes Store staff for assistance.
    (114040)

  • How to Handle Unwanted Contact Requests

    Unfortunately, there is currently no method to sort or filter incoming contact requests.   I think it would be very difficult for Skype to determine if a certain person is a potential scammer or spammer, unless they receive relevant reports from users who receive suspicious contact requests from them.  Below are some suggested steps on how to deal with unwanted, random, unknown, or suspicious contact requests.
    1.       Take note of the username and display name of the user (please see image sample below)
    2.       Open the Contact request then click the Block Button. 
    3.       The Block This Person window will also appear, you can click the Report Abuse box if you feel that that contact is indeed a highly potential scammer or spammer.  Click the Block button to confirm your action.
    4.       You can also report them to [email protected]
    Then Skype will be notified of the suspicious activities of the reported user/s and will most likely prompt them to check and investigate those users.  Their account might be put under suspension, termination, or prevent them from creating new accounts or using Skype services.
    Note:  Setting your account's privacy settings to allow messages and calls from people in your contact list only will only prevent the ability of non-contacts to call you or send you instant messages.  It will not stop unwanted contact requests from random users.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

    I think the problem results from the level of visibility Skype users present. For these random requests to come in, there must be some way of trawling for Skype IDs, which would allow would-be scammers and spammers to make the requests. My wife gets many of them and I get virtually none, so they obviously target women.
    If Skype users could manage their level of visibility to prevent random trawling or browsing, but allow targeted searches, that should reduce the incidence of this problem enormously.
    Another way would be to create an option for a "Contact Token" which could be forwarded to people you allow to make contact requests. They would need to supply the correct token (matching your individual "Contact Token") in order for the request to be submitted. ie. in Privacy Settings, add the followng option:
    "Only accept and display contact requests from users supplying the following Contact Token: _____"
    This may seem overly heavy-handed, but it would suit many people who don't want to be bothered by nuisance contact requests, and if they like spam and scam, they don't have to enable the option!

Maybe you are looking for

  • Problem when turning off

    Everytime i'm going to turn my macbook pro off for some reason there's a software ( or anything like that ) called ''mirroragent'' and it's probably not virus because i've had that problem since my first or second day with my ''new'' notebook.. can a

  • SQL_Developer and date format - possible bug

    I have encountered an error that I cannot explain. In Oracle SQL Developer very simple query: Select To_Date('01-JAN-0001 BC','DD-MON-YYYY BC') From Dual; returns: 01-JAN-02 The year is wrong. NLS_DATE_FORMAT for this session it is set as 'DD-MON-RR'

  • Client proxy Null pointer exception

    Folks, I have a problem with ABAP client proxy. The scenario runs fine, but a few messages does not enter XI pipeline with a null pointer exception in RWB. When I click on Message Content of these errored messages, I get 500   Internal Server Error  

  • Forecast consumption within Calender month

    Hi, When the forecast is released from Demand Planning to Supply Planning (SNP) in weekly buckets there will be crossover of the forecast for the weeks that are in the Month end/Month Beginning, the week could fall into different months. Even though

  • Dimensions for the below cubes.

    Hi All, My interview Q was : Could you plz provide me the Dimensions for the below Cubes: 0SD_C03, 0SD_C05, 0SD_C01, 0PUR_C01 How to find out the dimensions from the help files? Any other Dimensions except unit, time n pkg Dim ?? Are there any partic