Sometimes application variables don't reset

In our application.cfm, many queries are run and set to arrays that are application scope. They are for code tables. To keep all this from happenning each time a template runs, there is a server scope variable that is set to true from another program and in application.cfm, there is something like <cfif the server variable is true> run queries,assign arrays,set server variable to false  </cfif>.
When a new code is added to a code table, we set the server variable to true and the next template that runs resets all the application variables and the new code is in one of them.
Sometimes this doesn't work. Only some of the arrays get reset and the others are empty. The arrays are there but have no elements.
Repeating the process 2 to 4 times seems to make it work.
What can cause it not to work the first time ?

The problem happens even in a test area where I'm the only one using it.
Why does the reset program sometimes have to be run more than once ?
This is the reset program
server.x=0
This is what the application.cfm is like
<cfapplication name="thename">
<cfset ds="dsname">
<cfparam name=server.x type="boolean" default="0">
<cfif server.x eq 0>
   <cfset server.x=1>
   <cfset application.codes=arraynew(2)>
   <cfquery name="qcodes" datasource="#ds#">
      select codes, desc from tblcodes order by codes
   </cfquery>
  <cfloop query="qcodes">
      <cfset application.codes[currentrow][1]=qcodes.code[currentrow]>
      <cfset application.codes[currentrow][2]=qcodes.desc[currentrow]>
      <cfset application.codes[currentrow][3]=qcodes.place[currentrow]>
      <cfset application.codes[currentrow][4]=qcodes.date_eff[currentrow]>
      <cfset application.codes[currentrow][5]=qcodes.date_del[currentrow]>
  </cfloop>
   does this for well over 50 more tables
</cfif>

Similar Messages

  • Application variables don't work!

    I am using COLDFUSION MX 7.
    There are 2 files:
    Application.cfc
    and
    test.cfm
    Application.cfc:
    ==================
    <cfcomponent output="no" displayname="test">
    <cfset THIS.name="test0">
    <cfset application.testvariable="teststring">
    </cfcomponent>
    ==================
    Test.cfm
    <cfdump var="#application.testvariable#">
    RESULT
    ==================
    Element TESTVARIABLE is undefined in APPLICATION.
    QUESTION
    ==================
    How do I use application variables?
    Note: my Application file is a cfc not a cfm because I'm
    trying to use MX 7 (and want to use functions such as onSessionEnd
    etc.)
    Thanking you in advance,
    Mitja Giaconi

    QUESTION
    ==================
    How do I use application variables?
    Note: my Application file is a cfc not a cfm because I'm
    trying to use
    MX 7 (and want to use functions such as onSessionEnd etc.)
    Good, then you can start by using onApplicationStart which is
    the first
    event where application variables can be set.
    <cffunction name="onApplicationStart" ...>
    <cfset application.testvariable="teststring">
    </cffunction>
    Livedocs information on all things Application.cfc
    http://www.adobe.com/livedocs/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm? context=ColdFusion_Documentation&file=part_cfm.htm

  • Problem with application-variables - CFLOCK?

    Hi,
    i have a problem with my application. It is a multi-user
    application with 100 parallel-users and CFMX 7.
    The problem wich occures is with application variables. These
    are mainly structs wich get filled onApplicationStart(). The
    problem is, that the variables suddenly disappear, they are empty.
    I have read about CFLock and found out, that it is necesseary
    to use cflock. And i found out, that onApplicationStart does
    correct locking automatically. That is where i do not understand
    the problem. The variables get intialized correctly and in further
    they only get read-access. Why can they be corrupted?
    My other question about that is, wheather i need cflock for
    all Read-Access to Application and Session-Variables, even if there
    happens no writing to the variables?
    Best Regards,
    Andreas

    > ?The element of position 2, of dimension 2, of an array
    object used as part of
    > an expression, cannot be found.?
    > The array is in this case the struct.
    Well, OK, that could be a problem. Arrays are not structs:
    they are two
    different things, are not interchangeable, and have
    completely different
    sets of functions to utilise them. You cannot treat a struct
    as an array.
    If CF is claiming your "struct" is an array, then it actually
    *is* an
    array, not a struct.
    What's the line of code which is generating that error?
    I suppose one could get this error if you have an array of
    structs thus:
    myArray
    .key1
    myArray.key2
    (etc)
    and you're trying to reference it with a numeric key rather
    than by key
    name, eg:
    myArray
    [n]
    When n is an integer value, rather than a string (which
    corresponds to the
    name of the key).
    > > Have you trapped the error, done a <cfdump>
    of the application scope and
    > > checked to see if it's the whole lot going awry, or
    just some values?
    > I have not used cfdump for it, because the server had to
    be immediately
    > restarted for our customers. But i think, that it is
    not completely empty,
    > because the index runs to pos2 of dimenstion2.
    So does this not happen in your dev / testing environment?
    > Will
    > onApplicationStart() be called before? Or only if
    onRequestStart() returns true?
    I would ***-u-me that the application one would be called
    before the
    request one. It's pretty easy for you to test this though, I
    should think?
    (Sorry: for reasons beyond the scope of this conversation,
    we're still
    forced to use Application.cfm in our software, so I've only a
    passing
    knowledge of how Application.cfc works).
    > Here is the code from onRequestStart()
    > <cffunction name="onRequestStart"
    returntype="boolean">
    > <cfargument name="Requestedpage" required="yes" />
    > <cfscript>
    > var lFile = "/cargorent/Login.cfm";
    > var iPosn = ListFindNoCase( lFile,
    Arguments.Requestedpage );
    > if( iPosn gt 0 )
    > return true;
    >
    > if( NOT IsDefined( "session.user.Loginname" ) or
    session.user.Loginname eq
    > "" )
    > {
    > WriteOutput( "<p><p> The current user is no
    longer valid, please log in
    > again.</p></p>" & chr(10) & chr(13)
    > WriteOutput( "<script
    language=""javascript"">parent.location = ""
    http://"
    > & CGI.HTTP_HOST &
    "/Login/Login.cfm"";</script>" );
    > return false;
    > }
    >
    > return true;
    > </cfscript>
    > </cffunction>
    One thing I will say here is that I really think you should
    be separating
    your processing from your display. A function should do
    processing. it
    should pass that processing back to a CFM template which
    should handle
    whatever needs to be displayed on the browser. Although
    that's nowt to do
    with your current issue.
    Adam

  • How to Create and Use Application Variables in Java

    I Have this need to have a common variable (Counter) for all the users(Sessions) accessing my Site witch is in JSP.
    I think An Application Variable is the solution for my problem...
    But I don't know how to use this. Even though I search the web for any tutorials or Examples could not fing any.
    Could any one Please tell me or direct me to a site which has good information about this
    Thanks In Advance!!!
    Badsy.

    // get the application object
    public class myServlet extends HttpServlet
    public void doGet(HttpServletRequest req,
                        HttpServletResponse res)
    ServletContext application = getServletContext();
    }

  • My ipad 1st generation will not locate wi-fi networks.  i have reset and have done router reseting, still nothing.  any suggestions?

    my ipad 1st generation will not locate wi-fi networks.  i have reset and have done router reseting, still nothing.  any suggestions?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Performance: Database Update vs. Application variable

    I am new to ColdFusion, so sorry if this has been covered before. I searched and couldn't find anything similar.
    I am building an online Texas Hold'em poker application using ColdFusion and Flex. There are quite a few things that need to be stored on the server side that will be updated quite often and these objects will need to be accessed by multiple users. For example, think of something like the current pot between players on a table, or the current hand state (who's turn it is to check/bet/raise), or the current players in the hand. All of these things will be updated quite a few times per hand, and if you add to that that each of these will be different per table, it adds up quick.
    Would it be better to store these things in the database or store them in an application variable? Or is there a better way that I am not thinking of? Is there any sort of metric to follow for these kinds of things?

    I don't think you'll find a documented general number of application variables you can have on a single server. But I think you could get away with 400 variables without any trouble.
    Where you might run into trouble, though, is when you have multiple concurrent requests trying to read and change these values. You'll have to ensure that you single-thread write access to these variables using CFLOCK.
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/
    Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
    GSA Schedule, and provides the highest caliber vendor-authorized
    instruction at our training centers, online, or onsite.

  • Mac OS X Mountain lion bug sometimes the programs don't like to lunch and I unplug the power cord what shall i do

    Mac OS X Mountain lion bug sometimes the programs don't like to lunch and I unplug the power cord what shall i do

    Here are some suggestions for getting the best results from this site.
    If you're not comfortable with English, it may be best to post in your native language. Others can use automatic translation, if necessary, to help them understand you. They may reply in their native language, and then you can do the same to understand them.
    Google Translate
    Screenshots can help overcome a language barrier. To upload an image, click the camera icon in the message editor on this page.
    Give details of the problem. A statement such as "it doesn't work" conveys no information. If it did work, you wouldn't be here. Instead, you should post something like this: "I did A; I was expecting B; but I got C instead." Include the complete text of any error messages you saw and where you saw them: in an application window, a CrashReporter window, a log, or whatever. Also include the steps you’ve taken yourself, if any, to try to resolve the issue. If the problem is of recent origin, did you make any changes to your setup just before you first noticed it? Is the problem reproducible or intermittent? That is, does it always manifest itself when you take a certain action, or only at unpredictable times?
    Before posting, ask yourself whether it’s likely that you are the the only person ever to have had this problem. If not, search the discussions for answered questions similar to yours. If you found any pertinent information, but it didn't help, include details.

  • Are application variables 'user specific'?

    hi - i've got a feeling i may have done something stupid.
    we have several domains all pointing to one application.
    in application we look at the cgi.http_host to work out which
    site the domain the user is expecting and then serve up customised
    content accordingly.
    only this is i've set put the customised content in
    application scoped vars - is that a bad move?
    eg. in application.cfm i have:
    <cfif cgi.http_host eq 'www.redredred.com' >
    <cfset application.message= "welcome - we love the colour
    red" >
    <cfelseif cgi.http_host eq 'www.blueblueblue.com' >
    <cfset application.message= "welcome - to our site where
    we love blue" >
    <cfelse>
    <cfset application.message= "welcome to our site (we love
    all colours)" >
    </cfif>
    then in the index.cfm:
    <cfoutput>#application.message#</cfouput>
    is there a chance that by doing this someone who has visited
    www.redredred.com will get a message about blue?

    happysailingdude wrote:
    >
    > is there a chance that by doing this someone who has
    visited www.redredred.com
    > will get a message about blue?
    >
    Not only a chance, but there is something wrong if the person
    does not
    get this message, once the next user has set the variable to
    blue.
    Application variables are global to the application and will
    be shared
    by all users of that application. That is the designed and
    desired
    purpose of application variables.
    In ColdFusion an application is defined by any template that
    shares the
    same 'name' as defined in either the name parameter of a
    <cfapplication...> tag or the this.name property of an
    Application.cfc file.
    If all these web sites are using the same string for the
    application
    name then they share the same application scope and they will
    all have
    the same value for application.message. And this value will
    be the
    value set by the last visitor to any of the sites.
    <cflock...> is not relevant to this issue. It will
    prevent the variable
    from being set at the exact same moment by multiple users on
    multiple
    sites, but it will not stop the value from changing
    sequentially as
    first one, then another user visits any of these sites and
    changing the
    value.
    The solution to your problem is to set different application
    scopes by
    dynamically setting the application name. Thus each website
    will be
    separate and distinct applications with their own application
    scope
    variables and your system should behave the way desired.

  • Global Application variable

    How do I set a global application variable in a Swing application?
    Namely
    MDI display opens a new window
    new window sets a variable
    close the new window and return to the MDI window
    MDI window needs to use the variable.
    Note: the new window is is its own class object.

    What are you talking about?
    Static variables are "global".
    In some class (it does not really matter which) define
    a static variable. O.K. now you have a "global"
    variable.
    Some people may say that this is "bad" programming
    practice, but it is what you asked for.public static variables of public classes are 'global' in the sense you can refer to them if anywhere in an application. Public classes are also 'global' in this sense.
    However, we don't call them global variables, they are class variables. A global variable is generally defined to be one that is associated with the running application. It has no context other than that. It can be used anywhere at any time without any qualifications. In other words, the are terrible.
    I had to maintain an application that had 50 or so global variables. Some of these variables represented the exact same piece of information so it was cruicial during modifications to make sure that they were kept in sync. Don't use this type of design.

  • Problems getting application variables to work

    I basically want to alternate a message when a page is
    loaded. First time loaded, message a. Second time loaded, message
    b.
    I have a database table (testCount) holding one row in one
    column (theCount) and have tried the code attached below, but it
    just will not work. Any advice?

    Hi Dan,
    Thanks for you help again.
    Assuming the syntax in the attached code is correct, I have
    done the following:
    1. Clear application structure to start from fresh using
    <cfscript>structClear(application);</cfscript>
    2. Commented the toggle code in onRequestStart() from
    Application.cfc
    3. In index.cfm, I uncommented the setting of the three
    application variables commented out in the attached code.
    I then previewed the page and it outputs the value set for
    application.messageA as expected.
    4. Uncommented the toggle code in onRequestStart() from
    Application.cfc
    5. In index.cfm, removed the code that set the 3 variables
    and kept the output code. Refreshing the page once changes the
    output from the messageA value to the messageB value, but each
    subsequent refresh does not change the value.
    This is so frustrating. It should work, unless my syntax is
    wrong?

  • Storage capacity of a Application variable?

    Hi All,
    I want to display a common information to all the user.
    The size of the text information(may consists of html content for formatting) may vary each time.
    1) Is storing the information in application variable a better way?
    2) What is the storage capacity of a Application variable?
    3) Cookies storage capacity is 4k and restricts certain characters.Do Application/ Session variable have storage capacity or it restricts any character.
    Regards,
    Maha

    Hello Friend,
    If U are refering about the mem size of implicit Application varible in JSP.
    Then i think U are refering to an Instance related to ServletContext.
    If that is the case it enitrely depens on the webserver you are using.There would few option by which one can fix the cache size but again how to manage that cache space specified between ServletContext,HttpSession,HttpServletRequest and PageContext is entirely dependent upon webserver you are using.....
    U can try referring the link below which is related to SUN-ONE Application server
    http://docs.sun.com/source/816-7150-10/dwdeploy.html
    and as far as restriction is concerned i don't think u would have restriction of storing any unicode charecters..... But i'm not completely sure abt it through.

  • Application variable

    Hi,
    I want to setup some application variable which can be accessed by all my servlets.
    How to setup the application variable. I tried with following in application.xml but it is not working...
    <Parameter name="dbDriver" value="oracle.jdbc.driver.OracleDriver" />
    Regards

    Hi,
    I recall having a similar conversation with one of my colleagues. Can you tell me how often are you going to read the Key-Value Pairs ?
    1. Container Level
    You can keep your Key-Value pairs in Server.xml & write your own OC4J Startup class that can read these key-value pairs. The Key-Value pairs persist for the lifetime of the Container - if you change the value for a key, you need to restart OC4J.
    2. Frequent Changes & Frequent Reads
    As suggested in earlier responses, you could keep a Properties File or an XML File ( outside your application ), locate it, parse it & get your Key Value Pairs out.
    You can even think about storing these Key-Value paris in Oracle Internet Directory & looking them up via simple JNDI calls - I remember a very good discussion in this forum sometime back ( I am not getting the link now.. ).
    Again, you will need a Properties file to store access information about Oracle Internet Directory.
    If you keep your Properties File / XML File in a standard OC4J Folder, you can easily reach the file by constructing it's Directory Path using System.getProperty()
    E.g.:-
    System.getProperty("oracle.home"); // Gets the path for your Oracle Home
    System.getProperty("oracle.j2ee.home"); // Gets the Path for your OC4J
    System.getProperty("oracle.oc4j.instancename"); //Gets the name of your OC4J InstanceHowever, frequently reading from a text file is not appreciable in terms of cost.
    Either way, you will need to use some kind of a file outside your application that stores your Key-Value pairs.
    Regards,
    Sandeep

  • I have an iPad 2 and all of a sudden I have no sound in game apps. I have usual volume in videos and YouTube, I do get volume for games if I plug in headphones. I have switched to screen lock off and on again and I have also done a reset twice.....help :)

    I have an ipad2 and all of a sudden I have stopped getting sound in my game apps. I get normal sound on YouTube and I player and downloaded DVDs. If I plug headphones in then I can get sounds for the games. I have switched the lock screen button off and on again and done a reset twice, can anyone help me with this?

    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
    To solve some sound problems, just follow these simple steps
    1. Go to Settings
    2. Tap on General
    3. Tap on Reset
    4. Tap on Reset All Settings
     Cheers, Tom

  • Help please - have a Nano and a Shuffle and neither are working! The Nano wheel appears to have stopped working - I can't get it to do anything. I've done the reset,it worked the first time but not since. And the shuffle won't sync with my library!

    Hi,
    I have an iPod shuffle 4th generation and an iPod Nano 5th generation . The Nano wheel appears to have stopped working - I can't get it to play or anything. I've done the reset and it worked the first time, but now the only way I can get it to play anything is to shake it and go with the shuffle choices - I can't change volume, song, pause or turn it off.
    So, I decided to start using the Shuffle which I was given as a present last year. I've plugged it into my laptop (running windows 8 and newest version of iTunes). It appears in iTunes on the left hand side, but when I click to sync (whether I tick sync all or choose artists) it says synched but has no music. It seems to not be linked to the music library - when I tick synch all songs, next to the "sync music" it says 0 songs?
    Any help to fix either would be really appreciated - I'm without any music at the moment and I'm going away this weekend!
    Thanks

    Hi Bblairjones,
    If you are having issues with your Nano and Shuffle, you may want to try the Troubleshooting Assistants on the following page:
    Apple Support: iPod Troubleshooting Assistants
    http://www.apple.com/support/ipod/five_rs/
    Regards,
    - Brenden

  • When syncing with itunes, got error message saying had error and now ipad2 will not do anything other than showing the USB cable with arrow pointing to Itunes on screen.  have done the reset and restart, but still get same thing.

    when syncing with itunes, got error message saying had error and now ipad2 will not do anything other than showing the USB cable with arrow pointing to Itunes on screen.  have done the reset and restart, but still get same thing.  Ipad does not show up in itunes even though cable plugged in.  Have shut down and restarted Windows 7 computer.

    I had done all of that to no avail.  I did call Apple Tech Support and after he suggested I try a USB port in the rear of the Win 7 computer, things starting working again.  I had tried switching the USB port at the front of the machine but that had not helped.  Everything is good to go again.  thanks for  your reply

Maybe you are looking for

  • IMac waking up..console says hijack!

    Hey... My iMac has been waking up allot during the night for the past few months... Someone when I come to it I find it not sleeping at all. I was told a few weeks ago when I catch it go to the system log.. I did that today and am now really worried

  • Suddenly can't drag songs to a different order in playlists.  Help?

    I used to click and drag songs in my Itunes playlists to burn CD's in a specific order.  All of a sudden I cannot move the songs.  Click and drag isn't working.  I have had Itunes for about 7-8 years and this is the first problem I've had.  Any help?

  • Mandatory/Default field for mrp/forecast profile mrp area

    Dear guru, In MM01/MM02 when i create a new mrp area for a material I want Mrp profile field and forecast profile field as mandatory field. Or as alternative solution purposed with a default. How can I do that ?

  • How to specify dataschema name for oracle data source?

    hi all, I've a following problem: we have specified 2 Oracle dataschemas into a one Oracle SID, choosing of dataschema depends on user login name. So, if I use SQL/Plus then I successful connect with proeprietary database schema, and when I specify t

  • When executing an external app, how do I keep stdout with its child process

    I running an external application from java, but I want the stdout to remain with the child process. This app spawns its own output window where it displays its own output and error messages. I'm running the app using the following code: Process p =