Continuing the audio problems using the Kona card

MAC PRO 2 x 2.93 GHz 6 Core

12 GB 1333 DDR3 Ram MJZ

Kona card 3

Kona driver 10.3.1

Adobe for Kona 10.3.0 utilities

Graphics Quadro 4000 card

Video player Apple XServe raid

more 2 TB G-raid & 3, 7200 RPM internal 2 TB disks

10.7.4 OS

CS6.0.1.31

So I've dealt with this problem since I downloaded and started using the Kona 3 with PPCS6.0.1 drivers

Often when I start my computer after it turned off the day before and restart the Prime Minister in the same project that I left that worked very well.  I'm broken audio playback mode.  When I check my audio computer system to preferences they mysteriously turned on in Kona, which is what causes the problem.

I try to change their return to the line output line, preferneces and close then reopen and that the switch did not and they are back to Kona.

I repair permissions and restart and make the change again... sometimes when I do this I get a kernel panic, so need to stop and start again.  Someties it will fix the problem today, sometimes not.  Today, after the kernel panic, everything seems to work properly.

It's a bit boring and a 15 to 20 minutes exercise every morning.  Of course, I could leave my machine all night, but I'd sure appreciate all the ideas on how to fix this ongoing issue.

I've turned into a bug report today, because I think that it is indeed a bug somewhere.

THX... Jim Watt

I found a post in the apple forum that solved this problem...

If you have problems with your sound 'exit by default' in Snow Leopard, try the following...

Go to your hard drive (root level) and open the library folder. Open the Preferences folder, and then open the Audio folder.

Remove the two preference files in the Audio file:

-com.apple.audio.DeviceSettings.plist

-com.apple.audio.SystemSettings.plist

Restart your mac, and I hope that your problems will be solved.

This solution worked for me, and I hope that it will be too much for you.

Tags: Premiere

Similar Questions

  • audio problem between Aja kona 4 and Adobe Premiere CC 2015. The AES inputs are unstable.

    Hello!

    We are working on Mac two of the editor with the same characteristics.

    10.10.3 OSX

    AJA Kona 4 12.2.1 firmware

    Lawo Crystal

    Adobe Creative CC 2015

    We have a problem with one of the two Macs. The entries of the AES of the Aja are unstable. Sometimes the recorded sound is saturated. There is sometimes no sound on AES inputs (verified with Adobe Premiere) while we are healthy on the output of the Lawo Crystal which is connected to Aja. Our wiring is tested works. Our system is unstable works half of the time. Sometimes just restart Adobe Premiere that it works, and sometimes it isn't.

    We are working on Mac two of the editor with the same characteristics.

    10.10.3 OSX

    AJA Kona 4 12.2.1 firmware

    Lawo Crystal

    Adobe Creative CC 2015

    We have a problem with one of the two Macs. The entries of the AES of the Aja are unstable. Sometimes the recorded sound is saturated. There is sometimes no sound on AES inputs (verified with Adobe Premiere) while we are healthy on the output of the Lawo Crystal which is connected to Aja. Our wiring is tested works. Our system is unstable works half of the time. Sometimes just restart Adobe Premiere that it works, and sometimes it isn't.

    Have you contacted support AJA yet?

    Thank you
    Kevin

  • Problems using a support card cache + @ElementCollection

    Hello

    Slowly, I attack with consistency. However, in my quest for coherence in our current system interface, I hit bump (another).

    I managed to reflect our C++ objects in Eclipse Link. However, the objects have collections. I found what seems to be the ideal solution ElementCollection!

    However, after a day of typing! 64 combinations of this attribute, I still managed to make it work! I was wondering if someone could help me.

    I want to refer to a set of long defined by another table.

    The simple table looks like this.
    @Entity
    @Table(name="FCS_ISSR_OBG")
    public class fcs_issr_obg implements Serializable, PortableObject {
    
         private static final long serialVersionUID = 1L;
    
         @Id
         @Column(name="PTY_NO")
         private long pty_no;
    
         @Column(name="REF_OBG")
         private long ref_obg;
    
         public fcs_issr_obg() {
         }
    
         public long getPtyNo() {
              return this.pty_no;
         }
    
         public void setPtyNo(long pty_no) {
              this.pty_no = pty_no;
         }
    
         public long getRefObg() {
              return this.ref_obg;
         }
    
         public void setRefObg(long ref_obg) {
              this.ref_obg = ref_obg;
         }
    
         @Override
         public void readExternal(PofReader in) throws IOException 
         {
              pty_no=in.readLong(0);
              ref_obg=in.readLong(1);
         }
    
    
         @Override
         public void writeExternal(PofWriter out) throws IOException
         {
              out.writeLong(0,pty_no);
              out.writeLong(1,ref_obg);
         }
    }
    In the class where I want the collection to exist, I have the following
         @ElementCollection(targetClass = java.lang.Long.class)
         @CollectionTable(
                   name = "FCS_ISSR_OBG",
                   joinColumns=@JoinColumn(name="FCS_ISSR_OBG.PTY_NO")
                   )
         @Column(name ="REF_OBG")
         private long def_obg_list[];
    The code compiles, however when I run the unit test, I get the following.
    Local Exception Stack: 
    Exception [EclipseLink-30005] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.PersistenceUnitLoadingException
    Exception Description: An exception was thrown while searching for persistence archives with ClassLoader: sun.misc.Launcher$AppClassLoader@11b86e7
    Internal Exception: javax.persistence.PersistenceException: Exception [EclipseLink-28018] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.EntityManagerSetupException
    Exception Description: Predeployment of PersistenceUnit [FocusCache] failed.
    Internal Exception: Exception [EclipseLink-7311] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.ValidationException
    Exception Description: An invalid target class is being used with the element collection attribute [def_obg_list] on the class [class com.xxx.focus.model.fcs_issr].  Only basic types and embeddable classes are allowed.
         at org.eclipse.persistence.exceptions.PersistenceUnitLoadingException.exceptionSearchingForPersistenceResources(PersistenceUnitLoadingException.java:126)
         at org.eclipse.persistence.jpa.PersistenceProvider.createEntityManagerFactory(PersistenceProvider.java:136)
         at org.eclipse.persistence.jpa.PersistenceProvider.createEntityManagerFactory(PersistenceProvider.java:65)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:60)
         at com.xxx.focus.model.TestSecurity.setUp(TestSecurity.java:29)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
         at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
         at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
         at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27)
         at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:76)
         at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
         at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
         at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
         at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
         at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
         at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
         at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
         at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
    Caused by: javax.persistence.PersistenceException: Exception [EclipseLink-28018] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.EntityManagerSetupException
    Exception Description: Predeployment of PersistenceUnit [FocusCache] failed.
    Internal Exception: Exception [EclipseLink-7311] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.ValidationException
    Exception Description: An invalid target class is being used with the element collection attribute [def_obg_list] on the class [class com.xxx.focus.model.fcs_issr].  Only basic types and embeddable classes are allowed.
         at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.predeploy(EntityManagerSetupImpl.java:1005)
         at org.eclipse.persistence.internal.jpa.deployment.JPAInitializer.callPredeploy(JPAInitializer.java:88)
         at org.eclipse.persistence.jpa.PersistenceProvider.createEntityManagerFactory(PersistenceProvider.java:127)
         ... 26 more
    Caused by: Exception [EclipseLink-28018] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.EntityManagerSetupException
    Exception Description: Predeployment of PersistenceUnit [FocusCache] failed.
    Internal Exception: Exception [EclipseLink-7311] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.ValidationException
    Exception Description: An invalid target class is being used with the element collection attribute [def_obg_list] on the class [class com.xxx.focus.model.fcs_issr].  Only basic types and embeddable classes are allowed.
         at org.eclipse.persistence.exceptions.EntityManagerSetupException.predeployFailed(EntityManagerSetupException.java:210)
         ... 29 more
    Caused by: Exception [EclipseLink-7311] (Eclipse Persistence Services - 2.1.1.v20100817-r8050): org.eclipse.persistence.exceptions.ValidationException
    Exception Description: An invalid target class is being used with the element collection attribute [def_obg_list] on the class [class com.xxx.focus.model.fcs_issr].  Only basic types and embeddable classes are allowed.
         at org.eclipse.persistence.exceptions.ValidationException.invalidTargetClass(ValidationException.java:2510)
         at org.eclipse.persistence.internal.jpa.metadata.accessors.mappings.ElementCollectionAccessor.process(ElementCollectionAccessor.java:721)
         at org.eclipse.persistence.internal.jpa.metadata.MetadataProject.processDirectCollectionAccessors(MetadataProject.java:1201)
         at org.eclipse.persistence.internal.jpa.metadata.MetadataProject.processStage3(MetadataProject.java:1554)
         at org.eclipse.persistence.internal.jpa.metadata.MetadataProcessor.processORMMetadata(MetadataProcessor.java:475)
         at org.eclipse.persistence.internal.jpa.deployment.PersistenceUnitProcessor.processORMetadata(PersistenceUnitProcessor.java:441)
         at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.predeploy(EntityManagerSetupImpl.java:959)
         ... 28 more
    I faced the example here (http://en.wikibooks.org/wiki/Java_Persistence/ElementCollection) (Collections of basis).

    However, I guess I did something wrong.

    Any help much appreciated.

    Thank you
    Rich

    Tables are not supported in JPA collection types. You must use, Collection, set, list, or map

    @ElementCollection(targetClass = java.lang.Long.class)
         @CollectionTable(
                   name = "FCS_ISSR_OBG",
                   joinColumns=@JoinColumn(name="FCS_ISSR_OBG.PTY_NO")
                   )
         @Column(name ="REF_OBG")
         private List def_obg_list;
    

    A better exception should be thrown.
    -Gordon

  • My purchase is that creative cloud is a ° 16034007400 at the date of renewal, there was problems with the credit card, but the tax has been paid in January. So far I can't use the program or any of its components without Adobe me any explanation on why I

    My the purchase is Creative Cloud is a ° 16034007400 at the date of renewal there are problems with the credit card, but the deposit was paid to January. Up to now I can not use the program or one of its components without Adobe me any explanation on why I can not use.
    Why not allow Use Adobe Creative Cloud?

    : Contact support from adobe for hourly pst by clicking here and, when available, click on "still need help," http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Recording VO first using the Kona 3 card

    I recently stayed at the Premier of the FCP 7.  I try for the first time to record VO thanks my Kona card and have not so far successful.  In Adobe help, I followed the instructions for the recording of VO.  I select the Kona 3 card for hardware, activate a track by selecting the microphone icon. When I selected only counter I see the audio levels in the track, but not in the master.  I deselect meter only, press the record button and the play button and the cursor starts to move.  I speak of a test into the microphone, and then select stop and I have nothing.  No track on the timeline, there is nothing in my record scratch and nothing in my files.

    the mic input seems to work in the test when I only selected meters, but nothing happens when I deselect it.

    I'm sure I'm missing something obvious, but I sure don't see what it is.  the mic input is numeric, plugged into my Board of Kona, I digital AES selected in the Kona Control Panel and I see levels when I test with the meter only.

    Spoke with AJA and they also try to understand the issue.

    Any ideas?

    THX... Jim Watt

    Spoke with the AJA and the Kona 3 is not defined for voice on.

    JW

  • Problem desktop icons, blue and referring to an application used to be on the SD card, but is no longer there

    Hello
    I have this problem, my app box shows me two icons in blue, as the system icon, you know. These icons are the symbol of SD above. I click on them, and the message is that the app is not instaled. I made a return to the top and I formatted the SD card and made a SDMaid clean, to clear all the tracks off old apps but the icons still there and I don't know which app they belong
    Do you know a solution for this?
    Thank you

    I found the solution! This!

    If you still see these apps under settings-> Apps, try to uninstall them from there and see if that helps.

    If you do not, go to settings-> Apps-> all-> House Xperia-> clear data-> OK and then reboot the phone. But be aware that this will reset your homescreen to the default settings.

    See wrote:

    If you still see these apps under settings-> Apps, try to uninstall them from there and see if that helps.

    If you do not, go to settings-> Apps-> all-> House Xperia-> clear data-> OK and then reboot the phone. But be aware that this will reset your homescreen to the default settings.

    I think that this red text has been copied from one of my answers to help anyone with a similar problem on this forum

  • Problems with the graphics card when you use AutoCad

    Hi, I have a dell xps 18.4 - i7 with 8 GB of RAM, when I'm working with Auto CAD I face problem with my graphic card, what can I do to fix this? has any experience with that? the graphics card is Intel(r) HD Graphics 4000

    Hello

    Thanks for the reply.

    I'm sorry for the late reply.

    I appreciate your patience.

    I suggest you to try installing the driver in compatibility mode and tick.
    Reference:
    Make the programs more compatible with this version of Windows
    http://Windows.Microsoft.com/en-us/Windows-8/older-programs-compatible-version-Windows

    Please keep us informed.

    Thank you

  • Problem with the video card and satellite L650 - 1 M 6

    Good evening!
    I have the new Satellite L650 - 1 M 6 with no operating system. When I did a fresh install of Windows 7 32 bit, I had several device problems. Most of them that I managed solve my self (as wlan drivers) but now I need your professional help.
    At this moment, I had left this problem of devices (on the information system):

    Not available ACPI\TOS6205\4 & 4A257CF & 0 the drivers for this device are not installed.

    I think it might be the video card (must be ATI HD5470) but SysInfo says:

    Type available, compatible adapter (Standard display types)
    Description Standard VGA Graphics Adapter adapt

    Would appreciate any help on this.
    Thank you in advance.

    Hello

    As I see you as laptop without OS and you try to install and configure your own operating system.
    In many posts, I wrote here that I write again and again that the most important thing is to install all the drives and Toshiba specific stuff according to the order of installation right then, here's the order of installation for your laptop model:

    Win7
    TOSHIBA Assist 3.00.10_O
    TOSHIBA Extended tiles for Mobility Center Windows V1.01
    Synaptics Touch Pad Driver 15.0.8.1
    Realtek 6.1.7600.30111 card reader
    V2.0.0.6 TOSHIBA HW Setup Utility
    V2.0.0.3 TOSHIBA supervisor password utility
    TOSHIBA Web Camera Application V1.1.1.15
    TOSHIBA HDD_SSD 3.1.64.6 attention
    SW 9.1.1.1024 Chipset installation utility
    Intel Management Engine Interface 6.0.30.1203
    Display driver
    Driver Intel Turbo Boost Technology 1.1.1.1007
    Driver Intel Rapid Storage Technology 9.5.7.1002
    Conexant Audio Driver 4.119.0.61
    TOSHIBA value added package 1.3.3_64
    LAN driver
    TOSHIBA Software Modem 2.2.97 (SM2297ALS05)
    Driver for Conexant Modem 7.80.4.50
    Battery Bluetooth for Windows by Toshiba v7.10.10 (T)
    Wireless LAN driver
    ConfigFree 8.0.29

    I recommend reinstall you Win7 and continue with all the other stuff flowing this install order and I hope everything will be OK.

  • Acquisition of data using the DAQ card

    Hello everyone

    I need assistance with the acquisition of data of the generator of signals through DAQ cards. I plugged the signal to the SCB-68 generator where the analog inputs of the generator are connected to AI CH5 and AIGRND of the Terminal Board. Then the output of the block is connected to the DAQ card. The maximum sampling frequency of the card is of 250 kech. / s. The problem is for reason that I am not able to see the waveform on the labview. I looked at other examples to find the problem, I am, but I am not able to understand this. I want to be able to choose the sampling frequency. I attatched my code as an attatchment for you all to help me know what the problem is. Any suggestions will be appreciated.

    There is no task!  You have not specified any hardware (i.e. your data acquisition card) anywhere.

    Here's a suggestion.  MAX aperture.  Find your DAQ hardware.  Open a Test Panel.  Implement a continuous sample of N Points to some sampling rate.  Press Run and convince yourself that you get the data.

    Now, while remaining in MAX, to create a task, using the same settings.  Call for example something sensible ("MyFirstDAQTask" is not a good reputation).

    Now, go back to your code.  Eliminate the first two functions DAQmx.  Wire a constant task to the DAQmx Start feature.  See the little triangle down?  Click it, and it should show you the tasks he 'sees', the only one should be the task that you created in MAX.

    Note that 'Samples Visible' is now 'hard coded' in the task.  To get its value back out, you need to put a property node Timing DAQmx after the task start and pull on the quantity of the sample, samples per channel (which, for reasons that escape me, is a Dbl, you need to convert to an I32 before importing it into the while loop).

    Bob Schor

    P.S. Thank you to join your code.

  • Crackling audio when using the Sennheiser BTD 300 USB dongle in Windows XP

    I use a pair of headphones from Sennheiser PXC 360 bluetooth (apt - X) with a dongle USB 300 BTD, connected to a computer running Windows XP.  The sound is really bad, crackling as if data be decoded correctly.  The driver being used is USB Audio Device version 07/01/2001 5.1.2535.0.  Is there a registry setting, or another driver that I can use to solve the problem?

    Hello

    ·         What is the brand and model of the sound card?

    ·         Have you tried checking update and the latest sound card drivers?

    ·         The Bluetooth device is connected correctly to the computer?

    I suggest you to contact the provider (the manufacturer) driver for your sound card.

    You can follow the article troubleshooting steps and check if it helps.

    http://Windows.Microsoft.com/en-us/Windows/help/no-sound-in-Windows

    You can also contact the Sennheiser service and support on this issue and check if it helps.

    http://www.sennheiserusa.com/Bluetooth-stereo-headphones-wireless-headphones-502384

  • 2015.3 CC - have lost all the file audio problems video / links too

    I've upgraded to 2015.3 this morning.  Started working with a project that was shot entirely with a Panasonic GH2... and have never had any problems with it. Now in 2015.3, the project opens with none of the video on the timeline linked to their respective folders. When I try and make the link... video links and there is a message that tells me the audio isn't there... specifically the message is: the selected file contains audio media used by clip references in one or more sequences. These references to audio clip will be deleted and cannot Ωtre annulΘe. Do you want to continue? OK Cancel of course that I have to cancel, not knowing if the audio will be permanently deleted. Files from the GH2 are .mts files and it is certainly audio when played with a media player. So my question is... is this a problem with the format .mts or it's Adobe. I'm afraid to open another project that has files, .mxf or mp4 and brought them to the point completely dissociated.  Here is a screenshot.  Can I just go back to 2015.2 until find you it?

    Adobe2015-3 ScrnSht-DZPVideo.jpg

    Dave Speace

    Video DZP

    Core i7 16 GB 64-bit

    If it worked once I deleted all the files in the shared folder. Other problems are: first runs slower, stutters during playback and sometimes freeze clips or audio is not reading... I have to stop playback and restart. Also, string stabilizer would not be made on one of my clips. Should he hold PP6 and try it rendered as a new clip.

  • ATTENTION TO DEVELOPERS - PROBLEMS WITH THE SOUND CARD

    I have a Focusrite Scarlett 18i6 audio card. I have before running on my Mac, version 5.0.3 (VMWARE) and everything worked. After that I updated to the new version 6 and my sound card no sound comes and has connectivity problems in windows. I updated the drivers for my Board to the latest version. I've upgraded to the last version firmeware. And I tested this audio card on two different Macs with version 6, and the problem persisted!

    Note: I use demo version 6.

    The sound card works perfectly in my MAC system with the latest drivers. But the problem remains FUSION version 6. I tested it on two different virtual machines with different operating systems, tested on two different Imacs and nothing back to work as before.

    After several tests, which detects the sound card works perfectly with his last official update from the manufacturer only with version 5.0.3 (VMWARE). With version 6, the problem persists.

    I am desperate because I work with music production and use software for windows in my MAC...

    Sorry writing errors. I live in the Brazil!

    Version 6, it must improve the compatibility issue. Problems I am facing a lot after this update.

    Best,

    Marcelo rates

    Before uninstalling VMware Fusion 6.0 you must change the updated hardware Version from 10 to 9 for any Virtual Machine level.  Take a look on: Change the compatibility of a Virtual Machine

    Then uninstall VMware Fusion 6 and then install VMware Fusion 5.

  • Main problems to upgrade the graphics card in my Mac Pro in 2006.

    I am trying to upgrade the graphics card OEM in my Mac Pro 2006 to a Radeon HD 4870 1 GB graphics card.  I have big problems.  The previous owner recommended that my BONES 10.7.5 uninstalling and reinstalling.  I don't know how to do this.  The Apple website was no help with this issue.  The previous owner gave me a lot of procedures I've ever done before, including removing and re-creation of my RAM and using a Kext troubleshooting application.  Any suggestions you can offer would be greatly appreciated.

    a 4870 with 1 GB of VRAM is not a real Mac card (who had only 512 MB of VRAM). Unlikely to show an image until the login screen, if ever. Unless the seller has a 100% guaranteed working procedure to get this working, I recommend you return for a refund - it is not likely to work in your Mac.

    A true 5770 Mac or 5870 is the best approach for a 2006 or 2007 Mac Pro, because they are known to work with everything except movies under copyright, and your Mac is stuck in the 32-bit kernel and pre - 10.7.5 MacOS.

  • iPad2 and problem with the SIM card after update

    even after the 9.3.1 last updated continuously having problems with SIM TIM card network.

    I changed and I tried with another SIM card but the problem remains.

    I did have all those problems with 9.2.1.

    Apple could intervene and solve these problems? Otherwise, I think it's better to make a return to the old 9.2.1.

    Thank you

    Do you see the network? and is it strong enough?

  • How do I use my gift card to pay for iPhone SE in the Apple store online?

    Hi all

    I have an Apple Store Gift card and want to use it as partial payment for a new iPhone SE.  The problem is that in the online store Apple UK, I don't see any way the use of the gift card that he has nowhere to enter the card number.

    Can someone shed light on this please?

    Thank you very much

    55brianb

    Call the phone number on the UK Apple Store Shopping help page - http://www.apple.com/uk/shop/help/payments

Maybe you are looking for