ITunes Connect 'contact' form not working

I've logged into my iTunes Connect account
I want to ask iTunes Connect how to have my account name changed from my personal name to my company's name
I clicked on the iTunes Contact Us module.
I get a page that reads:
"Please select the most relevant options from the dropdown menu(s) to help us precisely identify your issue. You may click on the "Start Over" button at any point within Contact Us to return you to the first Contact Us screen.
1.Please choose from the following topics:"
The drop-down menu says "PLEASE SELECT"
That's all.
There's nothing to select.
There are two buttons - START OVER and DONE
I tried clicking both of them individually.
Nothing.
There is no way to contact iTunes Connect support.
What's going wrong?

Actually I just noticed when looking in iTunes Connect that Apple does have a support email and phone number for questions.
iBookstore email support is available worldwide to assist you with your questions or feedback. Hours of operation are 7 a.m. to 5 p.m. PT, Monday through Friday.
[email protected]
We respond to most Contact Us inquiries within 3 business days.
For iBookstore, iTunes Connect or other technical issues, list the exact steps used when experiencing the issue. Include information such as your device, browser, browser version number (where applicable) and operating system. Provide as much detail as possible to help us resolve your question or problem quickly and efficiently.
For immediate assistance, call iBookstore support at 877-206-2092 (toll-free). Speak directly with a support representative to have your question answered as quickly as possible. Hours of operation are 7 a.m. to 5 p.m. PT, Monday through Friday.

Similar Messages

  • Any thoughts on contact form not working on 1and1 hosting?

    Hi.
    Helping my friend with her site hosted on 1and1. I've uploaded without error and tried Muse PHP Diagnostics and get 3 green checks. My public and private keys are made with the same domain name that I'm uploading to but I can't get the contact form to work. Any ideas? Website below. Thanks!!
    http://corejourney.net/

    I use the forms all the time on 1and1. I believe your problem is with the Captcha. I believe the Captcha that comes with Muse only works with Business Catalyst hosted forms. Try removing the Captcha and  test again.

  • Emails from contact form not working

    I have a contact form on one of my website and it is not working properly. 
    Muse gives me a warning of not using another email than connected to the domain of the web.
    As I use Gmail in this particular website it is not working.
    How to solve this?
    Thanks
    Pétur

    Hi,
    I have and they told me they use SMTP authentication for their incoming emails.
    They also tried to work on Muse PHP code for me - but did not manage to configure it correctly for emails through SMTP from forms in Adobe Muse.
    The problem is that I have a customer that is not receiving any inquiries from his customers because the form on his website is not working.
    Do I have to use Businesscatalyst - is it alright there to use Gmail to send emails from forms hosted there?
    Hope you have some solution - I have to solve this
    Reg.
    Pétur

  • Contact form not working :( Please Help...

    Hey guys,
    I am really in trouble with flash forms and need help please. Ive been trying to get a contact form working for a few weeks but have had no luck.
    Below is the code I am putting in to the flash form and php file.
    (this is the code I have put for the send Button)
    on (release) {
             if (name eq "" or subject eq "" or message eq "" or email eq "") {
                   stop();
             } else {
             loadVariablesNum("form.php", 0, "POST");
             gotoAndStop(2);
    (this is the code I have put for the clear Button)
    on (release) {
        name = "";
        subject="";
        message="";
        email="";
    (And this is the php file i created in dreamweaver and saved it as form.php)
    $to = "[email protected]";
       $msg = "$name\n\n";
       $msg .= "$message\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>
    I have uploaded the swf file and php file on the server but my form is still not working by sending the information to my email.
    This is the link where i got the code from http://www.flashvault.net/tutorial.asp?ID=103
    It would be really greatful if someone could help me please
    I look forward to your opinions and ideas.
    Thanks

    you should really check a tutorial using loadvars.
    and there's no hope for that php file.:
    try:
    $to = "youremailaddress @ yourserver.com"; // change this to your email address
      $email=$_POST["email"];
       $msg = $_POST["name"]."\n\n";
       $msg .= $_POST["message"]."\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>

  • Why does my contact form not work either muse or my own html coded form?

    I used the muse contact form and uploaded the website to my host but it does not send emails... it says it has sent but nothing arrive to email account.
    Then i decided to remove the muse contact form and use my tried and tested EmailMeForm html embed code which works. BUT........... if i look on preview the contact form stays in the correct position on the page. when i upload to the host the contact form moves up the page.
    can somebody help?

    Hi,
    When I first enabled my Muse contact form, it reported that the email was sent but I didn't receive the email.  I discovered the emails were going to my spam folder.  This was when I used my own domain email address--the same domain as my Muse website.  When I put my Gmail address into the contact widget, the messages arrived in Gmail as expected.
    I am able to receive messages in my initial email account (my domain name) by creating a message rule.  I also found that you can use two email addresses in the contact widget form, separating them with a comma: [email protected],[email protected]
    John

  • Contact form Not working with Hotmail Accounts

    Hi, I have a problem with all the sites i have built with Muse. If the customer filling in any of the contact form on the websites uses a hotmail email account ( [email protected] )
    I get the following error message 'The server encountered a problem'
    Ive read that this could be a problem with my third party hosting company but they assure me that this is being caused by an error on the form
    Can anyone help with this please

    Ok so i have sorted the issue myself with NO THANKS to adobe
    Heres what everyone needs to do!
    Go to the following file public html - scripts - form process.php
    You then need to edit the following: ( line 103 )
    function get_email_headers($to_email, $form_email) {
      $headers = 'From: ' . $to_email . PHP_EOL;
      $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
      $headers .= 'X-Mailer: Adobe Muse CC 2014.2.0.284 with PHP' . PHP_EOL;
      $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
      return $headers;
    This needs changing to the following:
    function get_email_headers($to_email, $form_email) {
    $headers = 'From: ' . $to_email . PHP_EOL;
    $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
    $headers .= 'MIME-Version: 1.0' . PHP_EOL;
    $headers .= 'X-Mailer: Adobe Muse CC 2014.2.0.284 with PHP' . PHP_EOL;
    $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
    return $headers;
    The form will now work with hotmail, Gmail etc etc
    Hope this helps anyone having the same problem

  • Contact Form not working - urgent!

    I've done all the test from this doc: Troubleshooting Muse Form Widgets Used on Third-Party Servers
    But no success!
    Can somebody help me, please?
    www.cuidarepsicologia.com.br

    Did you get my test mail via the contact form?
    from [email protected]

  • Contact Form not working using Godaddy's gdform.php

    I am using Godaddy's gdform.php for the contact page, but for some reason, upon submit it sends to 404 page.
    Also the site will not open in IE. Weird, it works well in Firefox, Chrome or anything else. Can someone please help me?
    Thank you,
    http://www.integrativehealthpsychology.com/contact.html

    It would appear that your path to the processing script is incorrect.
    Also fix all these errors:
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.integrativehealthpsychology.com%2Fconta ct.html&charset=%28detect+automatically%29&doctype=Inline&group=0

  • Contact form not working

    down load to third party web page looks fine click send says successful but i don't recessive mail any help??

    Hi
    Please take a look to this document, and try all the steps,
    Troubleshooting Muse Form Widgets Used on Third... | Adobe Community

  • I have a ipod classic 160GB , the problem with it is that it is dead no respond at all, i even tried to do a hard reboot, i tried to connect to itunes but it did not work, if somebody has a solution please let me know! the screen on the ipod shows nothing

    I have a ipod classic 160GB , the problem with it is that it is dead no respond at all, i even tried to do a hard reboot, i tried to connect to itunes but it did not work, if somebody has a solution please let me know! the screen on the ipod shows nothing........

    This is the iPod touch forum. I will request that you post be moved to the iPod Classic forum.

  • How to solve the problem of connecting my iPad to Itunes while my iPad not working and show to connect to iTunes?

    Question to all iPad users please help in this issue
    How to solve the problem of connecting my iPad to Itunes while my iPad not working and show to connect to iTunes?
    Thank you for help out.

    Hi Jamalzoal,
    Dose your computer have the most recent iTunes on it? When you connect the iPad 2 to your computer what happens? dose iTunes tell you the iPad need to be restored?
    p.s. you post this question in the Apple Remote Desktop community. You would probable have gotten more an fast responses if you posted this in the iPad community.

  • HT1414 after restore i reached in the "choose a network" than i trying to connect to itunes but it could not work forword ..what to do..please tell??

    after restore i reached in the "choose a network" than i trying to connect to itunes but it could not work forword ..what to do..please tell??

    after restore i reached in the "choose a network" than i trying to connect to itunes but it could not work forword ..what to do..please tell??
    iPhone 4

  • 64 bit Windows 7 Itunes 10.5 store not working

    64 bit Windows 7 Itunes 10.5 store not working:  Reset netsh winsock, turned off fierwalls, etc.  Still Itunes store comes up as blank white.  I need help.  I also suggest Apple made it possible to download from a website instead constantly glitchy software.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Dell Inc. Inspiron 620
    iTunes 10.5.3.3
    QuickTime 7.7.1
    FairPlay 1.13.37
    Apple Application Support 2.1.6
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.97
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 002EAD84036361B8
    Current user is not an administrator.
    The current local date and time is xxx
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) HD Graphics Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.5.3.3 (x64) is currently running.
    iTunesHelper 10.5.3.3 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:    {81DAE0D9-A8E7-418D-A08C-386B4561B2B7}
    Description:    Realtek PCIe GBE Family Controller
    IP Address:    xxx
    Subnet Mask:    xxx
    Default Gateway:    xxx
    DHCP Enabled:    Yes
    DHCP Server:    xxxx
    Lease Obtained:    Sun Feb 26 22:49:54 2012
    Lease Expires:    Wed Feb 29 17:19:08 2012
    DNS Servers:    75.75.76.76
            75.75.75.75
    Active Connection:    LAN Connection
    Connected:    Yes
    Online:        Yes
    Using Modem:    No
    Using LAN:    Yes
    Using Proxy:    No
    SSL 3.0 Support:    Enabled
    TLS 1.0 Support:    Disabled
    Firewall Information
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.

    I've removed PCTools from the reg.
    Okay ... PC Tools has released an update for some LSP-related iTunes conflicts, so it might also be worth investigating that:
    iTunes is not working correctly with PC Tools protection software installed

  • My Itunes account was hacked and my Apple ID was disabled. I followed the instructions from APPLE to backup and restore from Itunes but that did not work. Any suggestions?? Thanks!!

    My Itunes account was hacked and my Apple ID was disabled. I followed the instructions from APPLE to backup and restore from Itunes but that did not work. Any suggestions?? Thanks!!

    Are you saying that you contacted Apple support and they instructed you to backup and restore your iPad? Or do you mean that you picked up this information from an online support article? If you spoke to an Apple rep or received these instructions via email, contact them again for further help.
    I fail to see how restoring your iPad would enable yoyr Apple ID.

  • I had somebody  work on my OS 10.9.2 to speed it up. He failed and now  Preview, Textedit, App Store, Mail and Contacts  do not work anymore. I can still use Safari, Firefox and iPhoto etc. How do I get it fix I can still use Safari, Firefox and ed again?

    I had somebody  work on my OS 10.9.2 to speed it up. He failed and now  Preview, Textedit, App Store, Mail (crashes) and Contacts  do not work anymore. I can still use Safari, Firefox, Word, Photoshop and iPhoto etc. How do I get the Apple programs fixed again?

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the
         computer and after the chime press and hold down the OPTION key until the boot manager
         screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
         Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).
    4. Reinstall Lion/Mountain Lion, Mavericks: Reboot from the Recovery HD. Select Reinstall Lion/Mountain Lion, Mavericks from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).

Maybe you are looking for