Cycle problem

ok i have cycle problem hope someone can help me
the user will pick from the following
Date: 12/10/2007
Time: 09:00
Frequency: monthly
Cycles: 12
so all i need to do now is insert into my table 12 records
but the problem i have is how can i loop through each date
ie
the above form entry would be
12/10/2007 / 09:00
12/11/2007 / 09:00
12/12/2007 / 09:00 etc 12 times
but how can i reference a calendar to get the exact date for
each entry and the same if my form Frequency was
daily
weekly
fortnightly
monthly
yearly

ok that works but only i need the orginal date in the loop ie
if i select date 10/12/2007 and
a frequency of ww
and 2 cycles
my output is 17/12/2007, 24/12/2007
so i need the orginal to be outputted aswell?
<cfset startday = '#form.SMS_Date#'>
<CFLOOP INDEX="cnt" FROM="1" TO="#form.cycles#">
<CFSET nextday = DateAdd("#form.Frequency#", 1,
startday)>
<CFSET startday = '#DateFormat(nextday,
"dd/mm/yyyy")#'>

Similar Messages

  • More cycle problems

    I've run into a problem, I need to hook up the 'S' of a select (For step count) to the Close Limit switch so that when it is closed the value resets to 0 but I get a cycle problem when I attempt this, I don't know of any other way to hook this up.
    Any help?
    Thanks
    I've attached my code graphic below.
    Ron
    Attachments:
    cycle_problem.GIF ‏40 KB

    Yes, you simply need to feed it into the shift register so the change is maintained between calls. I have dropped some hits on your graphic, let me know if this is clear enough. (Add the S terminal as indicated in yellow, remove wires marked in red, and add wires marked in purple (they will be blue, of course)).
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    cycle_problemMOD.gif ‏14 KB

  • Page life cycle problem

    We suspected af:tree had a bug but we observed during debugging that our problem is due to page life cycle and we are searching a way to solve it at the best :
    Our problem is the following :
    1) we have in the same page a af:tree linked to a java bean data control that present some content in a hierarchy form (link an index) and a second part that contains some ui that represent the selected af:tree node content (linked java bean content). The second part ui's are updateable
    2) when we first load the page the af:tree is correctly rendered and we are able to navigate into into it without any problem (expand/collapse). The ui's are empty because we didn't select anything
    3) when a node is selected in the af:tree the correspoding data are loaded in ui's. That is perfect.
    4) when a second (another) node is selected we discovered that
    4.a) the af:tree was positioned to the new node selected that mean that we changed the context in our java bean
    4.b) the changes previously done in ui's were executed (eved nothing was edited) in the java bean and that in the wrong context.
    This situation cause a mismatch in our java bean data
    What is the best way to solve this ?
    Is this described somewhere in the documentation how to solve such problem in a same page ?
    Is ppr the way ?
    Thanks in advance

    Hi Frank
    What I was missing is that when a node is selected, a code from node details is setted as a parameter in the page, the page (outcome null in af:tree) is refreshed that will cause the ui's method binding to be executed again but after the parameter is setted. The ui's are built from the result a method that will get the corresponding java bean based on the parameter.
    is this data queried by you or is it part of the tree node information or detail leafes?
    They code is part of the tree node. It is setted into a page parameter. The ui's data is getted from a method (see below method iterator, methodaction from the page definition).
    When you say data gets executed upon changing the tree row focus, what does this mean? Do you have a submit defined upon focus lost for the tree?
    ui's binding is executed. The setter's are executed.
    So what is the desired behavior you are looking for ?
    The setter have to be executed before the java bean context is updated, i mean before the binding to the method action is executed
    Actually i have, when i click on a node in a previously loaded page:
    1) click on node
    2) set the parameter from selected node
    3) refresh the page
    4) execute what we can name a java bean finder method (a java bean method that select a xml node in xml java bean using jxpath with a xpath expression that is executed from the method action in the page definition)
    5) execute the setter from the binding (but into the wrong java bean because the method action change the java bean context)
    In fact, 5) has to be executed before 4) is executed
    That is my problem
    af:tree code :
                  <af:tree value="#{bindings.ClassificationEntryListclassificationEntry.treeModel}"
                           var="node">
                    <f:facet name="nodeStamp">
                      <h:panelGroup>
                        <af:commandLink text="#{node}">
                          <f:param name="selectedEntry"
                                   value="#{node.classificationEntryCode}"/>
                        </af:commandLink>
                      </h:panelGroup>
                    </f:facet>
                  </af:tree>Page definition :
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                    version="10.1.3.39.84" id="untitled1PageDef"
                    Package="view.pageDefs">
      <parameters/>
      <executables>
        <iterator id="ClassificationDocumentDataControl_rootIter" RangeSize="10"
                  Binds="root" DataControl="ClassificationDocumentDataControl"/>
        <accessorIterator id="classificationIterator" RangeSize="10"
                          Binds="classification"
                          DataControl="ClassificationDocumentDataControl"
                          BeanClass="classification.testcase.castor.Classification"
                          MasterBinding="ClassificationDocumentDataControl_rootIter"/>
        <accessorIterator id="classificationEntryListIterator" RangeSize="10"
                          Binds="classificationEntryList"
                          DataControl="ClassificationDocumentDataControl"
                          BeanClass="classification.testcase.castor.ClassificationEntryList"
                          MasterBinding="classificationIterator"/>
        <accessorIterator id="classificationEntryIterator" RangeSize="10"
                          Binds="classificationEntry"
                          DataControl="ClassificationDocumentDataControl"
                          BeanClass="classification.testcase.castor.ClassificationEntry"
                          MasterBinding="classificationEntryListIterator"
                          Refresh="ifNeeded"/>
        <variableIterator id="variables"/>
        <methodIterator id="findClassificationEntryByIdentificationIter"
                        Binds="findClassificationEntryByIdentification.result"
                        DataControl="ClassificationDocumentDataControl"
                        RangeSize="10"
                        BeanClass="classification.testcase.castor.ClassificationEntry"/>
      </executables>
      <bindings>
        <tree id="ClassificationEntryListclassificationEntry"
              IterBinding="classificationEntryIterator">
          <AttrNames>
            <Item Value="classificationEntryCode"/>
            <Item Value="classificationEntryCount"/>
            <Item Value="valid"/>
          </AttrNames>
          <nodeDefinition DefName="classification.testcase.castor.ClassificationEntry"
                          id="ClassificationEntryNode">
            <AttrNames>
              <Item Value="classificationEntryCode"/>
            </AttrNames>
            <Accessors>
              <Item Value="classificationEntry"/>
            </Accessors>
          </nodeDefinition>
        </tree>
        <methodAction id="findClassificationEntryByIdentification"
                      InstanceName="ClassificationDocumentDataControl.dataProvider"
                      DataControl="ClassificationDocumentDataControl"
                      MethodName="findClassificationEntryByIdentification"
                      RequiresUpdateModel="true" Action="999"
                      IsViewObjectMethod="false"
                      ReturnName="ClassificationDocumentDataControl.methodResults.ClassificationDocumentDataControl_dataProvider_findClassificationEntryByIdentification_result">
          <NamedData NDName="entryIdentification"
                     NDValue="#{param.selectedEntry}"
                     NDType="java.lang.String"/>
        </methodAction>
        <attributeValues id="classificationEntryCode"
                         IterBinding="findClassificationEntryByIdentificationIter">
          <AttrNames>
            <Item Value="classificationEntryCode"/>
          </AttrNames>
        </attributeValues>
      </bindings>
    </pageDefinition>Hope it is a little bit more clear

  • SPA-2102 automatic power cycle problem

    I have the SPA-2102 with one VOIP line.  Often it will power cycle automatically every 15 minutes or so.  All three lights go off for a second and then it comes back up and works for another 15 minutes.  I had my provider replace the first one as they thought it was a faulty unit but the new one is doing the same thing.  If this happens when I am on the phone the line goes dead and disconnects.
    Also I was getting close to 5Mbps then it suddenly seemed to cap out at 4Mbps once this problem arose.
    Suggestions?
    Thanks

    If you observed that every 15 minutes the SPA2102 is really turning off, is can be a sign of harware problem. I suggest contacting Cisco Tech support to further look into your concern. I believe this unit belongs to the business series devices that Cisco is now supporting. Try to go to this link for the other business series devices and the site where you can get hold of Cisco for support: 
    http://www.cisco.com/web/products/linksys/index.html

  • Urjent issue...Asst.Cycle problem...VVR

    Hi,
      We have one Z-report, which shows the details of one cost center month wise in same report, report shows :
      .........JAN..FEB..MAR
      PCE-1.:..12....5....50
      PCE-2.:..1.....2....10
      TOTAL.:..(13).(7).(60)
      SCE-A.:...13...7...54
      Assest:...13...7...54
      Above, is the report showing,,,upto   Feb, amounts are balancing , but from March not balancing,
      I cheked the asst.cycle ( which is created  in TCODE:KEUD- CO-PA Asst.cycle----
    cycle run in TCODE:KEU5)...
      since it is created no changes happened and this cost center along with SCE-A is not using in any of other cycle...
      what would be the reason  for not balancing ?
      Please give me the reply, with solution or possible solution
      thanks in advance for your response
      regards
      VVR

    Hi,
    it is same report you referred is same as we have. But, it is not balancing with total (mean, not becoming zero).
    Actually, total of SCE is more than the totals of PCE. If you add new  one total of PCE should be more but what is the reason total of SCE>PCE..
    Please give FAST reply...
    you chek i assigned points...
    regards
    raman.v.v

  • Distribution cycle problem

    Hi,
    I created Distribution cycle dated on 27.06.2010 through KSV1. During execution through KSV5 put period 1 to 3, fiscal year 2010, cycle name and start date ie. creation date of distribution i.e, 27.06.2010, tick on test run and details list. During execution it gives as "Cycle SER is not valid on 1.4.2010". What may be possible reason ?
    Regards,
    Anindita

    Dear Somar,
    As per your suggestion i have changed the start date which is between 1 to 3 period. Start date is 27.06.2010 or 30.06.2010. Still it is showing same error as 'Cycle SER is not valid on 01.04.2010'. Even if i change the period from 3 to 3 it shows as ''Cycle SER is not valid on 01.06.2010'.
    Regards,
    Anindita

  • Assessment Cycle problem (KSU5)

    Hi experts!!!
    I am trying to do an assessment cycle, but somehow not all the cost are being taken.
    Only the real amounts are being taken. I need also to treat the real stadistic values.
    Anyone can give me some advise?
    Thanks in advance for your reply.

    Hi Alejandro Garcia,
    At the time of Allocation of costs (Distribution/Assessment etc), only real postings will be considered in the Sender object. Statistical postings are only for information purpose.
    Pls try to understand the reason with the following example...
    At the time of posting of an expense in FI, we will be able to select one Real object and two statistical Object. So, If you have selected Internal Order (which is real object) and one Cost Center, then, real posting will happen to Internal Order and Statistical posting to Cost Center.
    But, if you want this statistical posting also to be considered at the time of assessment of cost from that cost center, then it would be duplication of the same cost which will finally reach Product.
    I hope it is clear, please revert back for further explanation...
    Srikanth Munnaluri

  • Torch Reboot Cycle Problem after Blackberry ID Update

    Hi!
    I started my App World to download a few new applications. It went on to ask me to do an ID update, which i did. After installing the Blackberry ID, the phone asked me to restart it, which i did.
    But now, it has gone into a reboot cycle and refuses to start. I tried starting the phone in Safe Mode, but when the screen becomes white (just before starting the phone) and i leave the 'Escape' button, BANG! Back into the reboot cycle. It doesnt even boot up in the safe mode. I tried like a zillion times to get it working in safe mode, but to no avail.
    Any help please? I need to get the phone up and running as soon as possible! A fast response will make my day!
    Model: Blackberry Torch 9800
    OS: Version 6 (never updated, so original one which came with the phone)
    Carrier: Idea (India)
    Thank you,
    regards,
    Eeshan Umbrani

    Hello,
    If you can't get it to boot into Safe Mode (which can be tricky indeed), then perhaps this KB will be useful:
    KB27956 How to recover a BlackBerry smartphone from any state
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • OTC CYCLE PROBLEM

    Helo experts ,
    I have completed process of order to cash till generation of accounting document  but the customer account not gets debited please provide the solution

    Hi Vivek
    I am not using one time customer it's regular customer and the screen shot of the accounting document generated i have already attached u check there  that instead of debiting customer it debits other sales deduction account as shown in above screen. and document flow of sales order is as below.

  • Very very odd repetitive freezing problem.

    Hi all,
    I have a January 2008 MacBook, with user-installed maximum RAM and 500GB drive. Just recently I have started to have the "machine hangs for 2 minutes and then works albeit in an unpredictable way for one minute and then repeats this cycle" problem.
    I would say nine in ten boots of either my normal user or the root user results in random and painful sluggishness (often from the login prompt, which beachballs for a couple of minutes) and one in ten is ok for a few minutes.
    Right now the only way this machine is usable is using the Safe boot option, holding down the shift key on boot.
    I'm a geek and I've done pretty much everything I can think of to fix this problem short of a reinstall.
    * top does not report unusual CPU usage. Even during freezes it reports less than 10% CPU in use. I conclude that the CPU chewing is therefore in the kernel.
    * I've booted in normal and kextstat and booted in safe and kextstat and diffed the two and honestly removed any non-Apple stuff in my normal boot.
    * I've removed ALL startup items, especially from root.
    * Following advice on here I've removed ALL my Internet Plug-Ins.
    * I've seen weird "kernel[0]:" blank syslog messages, which is surely a bug somewhere.
    * I've repeatedly fixed permissions and checked the disk.
    Booting normally as root or as my normal user sees this problem occur. Booting safe does not. I really am getting to the end of my tether with this. I don't hack the BSD kernel and don't know where my CPU is going where the usual userland tools cannot see.
    My next step is to boot normal, ps wwaux, then boot safe and ps wwaux and analyse the two. I am struggling with where to go here.
    The symptoms of this problem are exactly what I'd imagine you see if a hard drive is dying. When one process is in diskwait then everything else beachballs while the bus is locked for thirty seconds. Disk Utility, and Techtool do not report any problems.
    It's probably worth mentioning that I am still having problems with the Airport drivers in this machine (from a vanilla install of SL, this machine STILL sometimes insists it cannot see some Wifi networks that everything else can). I am still seeing these symptoms whilst trying to diagnose the other problem, which makes things even more tricky. I can sometimes get the airport hardware to "see" my wifi network (that all three of my iPhones can see, along with both my PC laptops) by turning Airport off and on and removing and adding new locations.
    I had the somewhat heretic thought today that the frustrating problems I've had with this, my third Apple Laptop, are infinitely worse than I've ever had with any - ahem - PC laptops I've owned, but maybe that's a matter of expectation management. When Apple control the vertical and the horizontal I don't expect them to ship machines which don't connect to Wifi, like this and my girlfriend's MacBook don't, and I don't expect to have a machine which spends 2 of every 3 minutes in deep sleep.
    Neil.

    Ok, so I removed all my /Library/Preferences/ and rebooted, assuming that since this problem manifests *at the login window*, something root is doing at boot is causing a problem. So now all root boot stuff is running at defaults.
    No change. In fact I spent so much time waiting for the login window to log me in, I powered off and rebooted safe again.
    So I am still in this position:
    Logging in in NOT safe mode results in a completely unusable computer, usually before I even log in. Save for brief respites, probably about 1 minute in ten (now I've spent more time staring at this), the machine is completely unresponsive.
    Logging in in safe mode results in a completely working machine, albeit with the disadvantages of safe mode (no DVD, no network shares).
    Analysis of a $ps wwaux generated by logging in as root, opening a terminal window and typing ps wwaux > file gives these results:
    Common processes between good and bad boots:
    _coreaudiod 75 0.0 0.1 2491332 4556 ?? Ss 7:16PM 0:00.04 /usr/sbin/coreaudiod
    _mdnsresponder 16 0.0 0.1 2473928 5588 ?? Ss 7:15PM 0:00.39 /usr/sbin/mDNSResponder -launchd
    _usbmuxd 33 0.0 0.1 2485696 4244 ?? Ss 7:16PM 0:00.05 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd -launchd
    _windowserver 61 1.2 0.6 2820408 24940 ?? Ss 7:16PM 0:03.43 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer -daemon
    daemon 14 0.0 0.1 2456028 2636 ?? Ss 7:15PM 0:00.07 /usr/sbin/distnoted
    root 1 0.0 0.0 2459192 1764 ?? Ss 7:08PM 0:00.50 /sbin/launchd
    root 9 0.0 0.5 2475644 19384 ?? Ss 7:15PM 0:44.62 /usr/libexec/kextd
    root 10 0.0 0.2 2485832 9196 ?? Rs 7:15PM 0:04.42 /usr/sbin/DirectoryService
    root 11 0.0 0.0 2447056 1088 ?? Ss 7:15PM 0:00.07 /usr/sbin/notifyd
    root 12 0.0 0.0 2459612 1392 ?? Ss 7:15PM 0:00.19 /usr/sbin/syslogd
    root 13 0.0 0.2 2488468 6692 ?? Ss 7:15PM 0:01.02 /usr/libexec/configd
    root 15 0.0 0.1 2462048 3692 ?? Ss 7:15PM 0:00.09 /usr/sbin/diskarbitrationd
    root 24 0.0 0.1 2474308 5972 ?? Ss 7:16PM 0:00.17 /usr/sbin/securityd -i
    root 30 0.0 0.2 2525004 7504 ?? Ss 7:16PM 0:00.14 /usr/sbin/cupsd -l
    root 31 0.0 0.2 2479332 7120 ?? Ss 7:16PM 0:00.37 /usr/sbin/krb5kdc -n
    root 37 0.0 0.2 2530332 8412 ?? Ss 7:16PM 0:00.11 /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/RFBRegisterMDNS
    root 39 0.0 0.2 2494248 7768 ?? Ss 7:16PM 0:00.40 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    root 40 0.0 0.5 2847644 20060 ?? Ss 7:16PM 0:00.63 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console
    root 41 0.0 0.1 2455512 2540 ?? Ss 7:16PM 0:00.01 /usr/sbin/KernelEventAgent
    root 43 0.0 0.2 2513468 7644 ?? Ss 7:16PM 0:00.41 /usr/libexec/hidd
    root 44 0.0 0.1 2464920 3292 ?? Ss 7:16PM 0:00.04 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/Support/fseventsd
    root 46 0.0 0.1 2444732 2220 ?? Ss 7:16PM 0:00.03 /sbin/dynamic_pager -F /private/var/vm/swapfile
    root 51 0.0 0.3 2565608 14584 ?? Ss 7:16PM 0:00.32 /usr/sbin/blued
    root 52 0.0 0.1 2455416 2532 ?? Ss 7:16PM 0:00.01 autofsd
    root 58 0.0 0.5 2493004 22524 ?? Ss 7:16PM 0:01.36 /System/Library/CoreServices/coreservicesd
    root 84 0.0 0.0 2458664 1428 ?? Ss 7:23PM 0:00.05 /sbin/launchd
    root 88 0.0 0.7 2832024 28624 ?? S 7:23PM 0:00.82 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
    root 89 0.3 0.8 2888444 33892 ?? S 7:23PM 0:01.00 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    root 90 0.0 0.9 2930288 39260 ?? S 7:23PM 0:01.42 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    root 93 0.0 0.0 2444156 2096 ?? S 7:23PM 0:00.01 /usr/sbin/pboard
    root 94 0.0 0.2 2507024 7028 ?? S 7:23PM 0:00.36 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/fontd
    root 98 0.0 0.4 2829504 16392 ?? S 7:24PM 0:00.31 /usr/libexec/UserEventAgent -l Aqua
    root 100 0.0 0.3 2813648 13392 ?? S 7:24PM 0:00.07 /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Ma cOS/AppleVNCServer
    root 105 0.0 0.1 2491800 5128 ?? S 7:24PM 0:00.03 /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer
    Processes ONLY in safe mode (good boot) only:
    root 113 0.0 0.4 3091844 16544 ?? S 7:24PM 0:00.20 /System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Content s/MacOS/quicklookd
    root 125 0.0 0.5 2864156 21224 ?? S 7:24PM 0:00.27 /System/Library/CoreServices/NetAuthAgent.app/Contents/MacOS/NetAuthAgent
    root 133 0.0 0.2 2542704 8592 ?? Ss 7:24PM 0:00.05 /usr/libexec/launchdadd
    root 137 0.0 0.1 2470900 2664 ?? Ss 7:25PM 0:00.01 /usr/libexec/service_helper
    Processes ONLY in BAD boot (normal mode) only, sample one:
    _atsserver 166 0.0 0.2 2509832 9508 ?? Ss 2:29PM 0:00.18 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/fontd
    neil 163 0.0 1.6 2662752 65424 ?? UNs 2:24PM 0:01.58 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker MDSImporterWorker com.apple.Spotlight.ImporterWorker.501
    root 47 0.0 0.0 610804 688 ?? Ss 2:22PM 0:00.02 /opt/nova/bin/novacomd
    root 48 0.0 0.1 103928 6160 ?? Ss 2:22PM 0:00.20 /usr/sbin/qmasterd
    root 72 0.0 0.1 2447440 2216 ?? Ss 2:23PM 0:00.01 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsServ
    root 121 0.0 0.2 2511576 6648 ?? S 2:23PM 0:00.03 /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent -launchd -allowquit
    root 122 0.0 0.1 369288 2112 ?? S 2:23PM 0:00.06 /Library/Printers/Canon/CUPSCAPT/BackGrounder/Canon CAPT BackGrounder.app/Contents/MacOS/Canon CAPT BackGrounder
    root 124 0.0 0.1 420252 4956 ?? S 2:23PM 0:00.61 /Applications/Timbuktu Pro/Timbuktu Pro.app/Contents/SharedSupport/Timbuktu Host.app/Contents/MacOS/Timbuktu Host
    root 140 0.0 0.1 393724 4432 ?? S 2:23PM 0:00.13 /Applications/Timbuktu Pro/Timbuktu Pro.app/Contents/SharedSupport/Timbuktu Host Menu.app/Contents/MacOS/Timbuktu Host Menu -psn069649
    root 141 0.0 0.1 368012 2260 ?? S 2:23PM 0:00.07 /Applications/Timbuktu Pro/Timbuktu Pro.app/Contents/SharedSupport/TimbuktuSkype.app/Contents/MacOS/TimbuktuSkype -psn073746
    root 155 0.0 0.7 11280524 29452 ?? S 2:24PM 0:00.96 /System/Library/CoreServices/Apple80211Agent.app/Contents/MacOS/Apple80211Agent -psn081940
    root 157 0.0 0.1 2500628 6244 ?? SN 2:24PM 0:00.02 /usr/sbin/kextcache -F -system-prelinked-kernel
    root 167 0.0 0.2 2514968 8284 ?? Ss 2:29PM 0:00.16 (fontworker)
    Processes ONLY in BAD boot (normal mode) only, sample two (I think I must have killed Timbuktu in this):
    _atsserver 166 0.0 0.2 2509308 9488 ?? Ss 2:29PM 0:00.19 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/fontd
    _cvmsroot 182 0.0 0.0 2458640 1160 ?? Ss 2:58PM 0:00.01 /sbin/launchd
    _cvmsroot 184 0.0 0.2 2452464 6624 ?? S 2:58PM 0:00.05 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsCompx8664 1
    _spotlight 189 0.0 0.2 2532652 9988 ?? SNs 2:59PM 0:00.10 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker MDSImporterWorker com.apple.Spotlight.ImporterWorker.89
    neil 163 0.0 1.6 2662228 65756 ?? UNs 2:24PM 0:01.91 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker MDSImporterWorker com.apple.Spotlight.ImporterWorker.501
    root 186 0.0 0.0 610804 688 ?? Ss 2:59PM 0:00.03 /opt/nova/bin/novacomd
    root 48 0.0 0.1 103928 6160 ?? Ss 2:22PM 0:00.21 /usr/sbin/qmasterd
    root 72 0.0 0.1 2447964 2232 ?? Ss 2:23PM 0:00.01 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsServ
    root 121 0.0 0.2 2511576 6648 ?? S 2:23PM 0:00.04 /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent -launchd -allowquit
    root 188 0.0 0.0 369544 1872 ?? S 2:59PM 0:00.03 /Library/Printers/Canon/CUPSCAPT/BackGrounder/Canon CAPT BackGrounder.app/Contents/MacOS/Canon CAPT BackGrounder
    root 155 0.0 0.7 11280524 29524 ?? S 2:24PM 0:00.98 /System/Library/CoreServices/Apple80211Agent.app/Contents/MacOS/Apple80211Agent -psn081940
    I'm running out of bright ideas.
    Neil.

  • Please help me resolve the many problems with my airport extreme

    Dear Community,
    My Apple Airport Extreme has never worked properly out of the box and I do not understand why. I must be doing something wrong. It is replacing a series of Linksys products which integrated with several Linux and Windows machines, and they worked flawlessly.
    Problem (1):
    Extreme crashes/reboots every now and then, especially when I try to send a lot of data from one machine to another. I assume that I am sending too much data then, and would like to know how I can slow down my data transmission so as to not hurt the Extreme.
    Problem (2):
    Airport Extreme when restarting either on its own or through the software refuses to let previously connected clients reconnect. The problem is probably because of of Windows XP, Windows Vista, and Linux. This causes major networking issues as each individual machine must have its network layer restarted or be rebooted. So I would like to know what I can do to work around these problems in the operating systems.
    Problem (3):
    Airport Utility after a spontaneous dropping of all connections by the Extreme is unable to find "any base stations within range" (it is connected to the base station by Ethernet). Base station and computer were both power cycled, problem remains. Perhaps my ethernet cable is too long and this has made the base station "out of range?"
    Problem (4):
    Apple claimed that I would be able to use a USB 2.0 disk on the Extreme to do backups. When I plug in the USB disk as advertised, the transfer rate is 12% of its transfer rate when plugged into any other hardware. Please let me know which configuration options I need to set on the disk in order to obtain full data transfer rates that will allow me to back up several networked machines in a reasonable timeframe (i.e. less than 3 days).
    Problem (5):
    Please describe to me how to connect to the router with a web browser. Every other router I have worked with allows me to connect with a web browser, and since the Apple software refuses to connect to the base station I am no longer able to configure it as I do not own a shorter ethernet cable that will bring the base station within range of the computer. Since the apple software does not take any obvious arguments that allow me to specify the IP address of the base station, my only conclusion is that I am supposed to use a web browser which will take an IP address to connect. However, when I do this, I get a "page load error." I am confused, because I was told this is an extreme unit, so I thought it had at least industry standard features, therefore I must be the one doing something wrong.
    Your assistance is much appreciated.

    Problems 1 through 4 are the topic of many (often long) past discussions in this forum. Though I hate to say it, I have yet to see anything that comes close to a "solution" for the problems you describe. Sometimes, Problem #3 results from radio interference which might be alleviated by changing the default channel the base station transmits on.
    Unlike every non-Apple router on the market, Apple's Airport Base Station must be configured using Apple's own "Airport Utility" software application. It is not possible to configure an Airport Base Station using a web browser.
    Regrettably, in your case it sounds like you would be better off continuing to use your previous Linksys wireless router.

  • Live Cycle Acrobat 9 etc... Flex day 3

    Day 3... and I am frustrated to discover that I may not be
    able to continue with this training because apparantly Live Cycle
    Data Services ( and Acrobat 9) which the Live cycle site advises
    downloading first - are only available for Windows, not Mac. Is
    this so? Surely there are other ways of using Flex with remote
    Services... e.g. AMFPHP? Do you know where these topics might be
    covered? Is it possible to get around this Live cycle problem...? (
    I've found a site detailing how to install Live Cycle on a Mac @
    technoracle.blogspot.com - but the comments beneath make it seem a
    bit hit and miss... What about ColdFusion 8? Doesn't it have Live
    Cycle ready installed as a component? It runs fine on Mac... I am
    presently bummed to discover such a roadblock in the middle of the
    otherwise inspiring training series.

    Hi - Thanks for your help anirudhs. I am following Duane's
    instructions but - because Live Cycle and jboss have both put out
    updates since they were written, am unsure. To begin with, I
    downloaded Live Cycle AIX 2.6 and jboss 4.2.3, as opposed to the
    versions he had recommended - and there are some differences.
    Following his instructions, I have got as far as: 7 & 8:
    7. From the same location, copy
    <lcds_install_root>/resources/security/tomcat/context.xml to
    your JBoss under the WEB-INF directory or adjust an existing
    context.xml to add the <valve>. You’ll have to open the
    context.xml files to compare them. Copying works best if you have a
    fresh install of JBoss.
    8. Expand your <lcds_install_directory> and copy the
    following files:
    flex-admin.war flex.war samples.war
    But am not sure how I should adjust the context.xml? Do I
    merely add the path to the path manager and enable it? Or write a
    specific set of context tags? ( Or should I create a fresh file in
    the WEB-INF directory...?
    Also I cannot find the files specified in 8. In the
    install_directory there is lcds samples.war, lcds.war and
    ds_console.war. Are these equivalents?

  • Firewire Drives Constantly Cycling

    Every since the last update my Firewire drives have been cycling up and powering down whenever I open finder and at irregular intervals. (I had to redo my Spotlight Privacy Preferences after the update.)
    Time Machine is supposed to backup every hour but the TM drive is waking up every 15 minutes or so running for 10 minutes then going back to sleep.
    I only use the two WD MyBook Premium drives for (1) Time Machine and (1) as a complete system backup with SuperDuper.
    Is there a way I can tell Finder to ignore the two external drives when I'm opening and saving files?
    Please Apple - fix the external drive cycling problem with Time Machine!!!
    Any suggestions would be greatly appreciated.

    Have you considered maybe a WD problem? Check if they have firmware updaters.
    Message was edited by: Smokerz

  • Black screen, repeated wake/sleep cycling - logs included

    I just experienced one of the sleep/wake cycling problems. I was able to ssh in and collect some system logs while this occurred and have some crashlog data. They look slightly different than those in similar threads here. I have a 15" C2D MacBook Pro, 10.4.8 with 11/13/06 firmware. Gaps are where I tried to wake by pressing the space bar or a few keys.
    Any ideas?
    Dec 28 18:38:29 Galvatron lookupd[10039]: lookupd (version 369.6) starting - Thu Dec 28 18:38:29 2006
    Dec 28 18:38:29 Galvatron configd[43]: posting notification com.apple.system.config.network_change
    Dec 28 18:38:31 Galvatron mDNSResponder: Repeated transitions for interface en1 (192.168.1.102); delaying packets by 5 seconds
    Dec 28 18:38:39 Galvatron kernel[0]: AFPSleepWakeHandler: waking up
    Dec 28 18:38:58 Galvatron kernel[0]: AFPSleepWakeHandler: going to sleep
    Dec 28 18:38:59 Galvatron kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 28 18:38:59 Galvatron kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 28 18:38:59 Galvatron kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000
    Dec 28 18:38:59 Galvatron kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 3
    Dec 28 18:38:59 Galvatron kernel[0]: hibernateallocpages flags 00000000, gobbling 0 pages
    Dec 28 18:39:00 Galvatron configd[43]: posting notification com.apple.system.config.network_change
    Dec 28 18:39:03 Galvatron configd[43]: rtmsg: error writing to routing socket
    Dec 28 18:39:27 Galvatron kernel[0]: System SafeSleep
    Dec 28 18:39:27 Galvatron kernel[0]: hibernatepage_listsetall start
    Dec 28 18:39:27 Galvatron kernel[0]: hibernatepage_listsetall time: 351 ms
    Dec 28 18:39:27 Galvatron kernel[0]: pages 436636, wire 59916, act 147140, inact 68228, zf 2084, could discard act 65028 inact 94240
    Dec 28 18:39:27 Galvatron kernel[0]: hibernatepage_listsetall found pageCount 436636
    Dec 28 18:39:27 Galvatron kernel[0]: IOHibernatePollerOpen, mlget_interruptsenabled 0
    Dec 28 18:39:27 Galvatron kernel[0]: IOHibernatePollerOpen(0)
    Dec 28 18:39:27 Galvatron kernel[0]: writing 436070 pages
    Dec 28 18:39:27 Galvatron kernel[0]: image1Size 98301440
    Dec 28 18:39:27 Galvatron kernel[0]: all time: 17161 ms, comp time: 3297 ms, deco time: 0 ms,
    Dec 28 18:39:27 Galvatron kernel[0]: image 626291712, uncompressed 1133780992 (276802), compressed 623730272 (55%), sum1 58a94049, sum2 d123b2f9
    Dec 28 18:39:27 Galvatron kernel[0]: hibernatewriteimage done(0)
    Dec 28 18:39:27 Galvatron kernel[0]: sleep
    Dec 28 18:39:27 Galvatron kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Dec 28 18:39:27 Galvatron kernel[0]: Started CPU 01
    Dec 28 18:39:27 Galvatron kernel[0]: IOBluetoothHCIController::restartShutdownWL this is a wake from sleep
    Dec 28 18:39:27 Galvatron kernel[0]: System Wake
    Dec 28 18:39:28 Galvatron kernel[0]: ERROR: VendorAccelerator::setdisplay_mode_andvram() call to fFramebuffers[0].framebuffer->getPixelInformation() result:FFFFFFCE
    Dec 28 18:39:30 Galvatron lookupd[10067]: lookupd (version 369.6) starting - Thu Dec 28 18:39:30 2006
    Dec 28 18:39:33 Galvatron configd[43]: posting notification com.apple.system.config.network_change
    Dec 28 18:39:33 Galvatron lookupd[10068]: lookupd (version 369.6) starting - Thu Dec 28 18:39:33 2006
    Dec 28 18:39:35 Galvatron mDNSResponder: Repeated transitions for interface en1 (192.168.1.102); delaying packets by 5 seconds
    Dec 28 18:39:42 Galvatron kernel[0]: AFPSleepWakeHandler: waking up
    Dec 28 18:40:01 Galvatron kernel[0]: AFPSleepWakeHandler: going to sleep
    Dec 28 18:40:03 Galvatron kernel[0]: hibernate image path: /var/vm/sleepimage
    Dec 28 18:40:03 Galvatron kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Dec 28 18:40:03 Galvatron kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000
    Dec 28 18:40:03 Galvatron kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 3
    Dec 28 18:40:03 Galvatron kernel[0]: hibernateallocpages flags 00000000, gobbling 0 pages
    Dec 28 18:40:04 Galvatron configd[43]: posting notification com.apple.system.config.network_change
    Dec 28 18:40:06 Galvatron configd[43]: rtmsg: error writing to routing socket
    Dec 28 18:41:11 Galvatron kernel[0]: System SafeSleep
    Dec 28 18:41:11 Galvatron kernel[0]: hibernatepage_listsetall start
    Dec 28 18:41:11 Galvatron kernel[0]: hibernatepage_listsetall time: 242 ms
    Dec 28 18:41:11 Galvatron kernel[0]: pages 436522, wire 59895, act 147122, inact 68193, zf 2080, could discard act 65023 inact 94209
    Dec 28 18:41:11 Galvatron kernel[0]: hibernatepage_listsetall found pageCount 436522
    Dec 28 18:41:11 Galvatron kernel[0]: IOHibernatePollerOpen, mlget_interruptsenabled 0
    Dec 28 18:41:11 Galvatron kernel[0]: IOHibernatePollerOpen(0)
    Dec 28 18:41:11 Galvatron kernel[0]: writing 435956 pages
    Dec 28 18:41:11 Galvatron kernel[0]: image1Size 98491904
    Dec 28 18:41:11 Galvatron kernel[0]: all time: 17258 ms, comp time: 2029 ms, deco time: 0 ms,
    Dec 28 18:41:11 Galvatron kernel[0]: image 626366976, uncompressed 1133461504 (276724), compressed 623806608 (55%), sum1 1b2b1f23, sum2 72ccda1b
    Dec 28 18:41:11 Galvatron kernel[0]: hibernatewriteimage done(0)
    Dec 28 18:41:11 Galvatron kernel[0]: sleep
    Dec 28 18:41:11 Galvatron kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Dec 28 18:41:11 Galvatron kernel[0]: Started CPU 01
    Dec 28 18:41:11 Galvatron kernel[0]: IOBluetoothHCIController::restartShutdownWL this is a wake from sleep
    Dec 28 18:41:11 Galvatron kernel[0]: System Wake
    Dec 28 18:41:13 Galvatron kernel[0]: ERROR: VendorAccelerator::setdisplay_mode_andvram() call to fFramebuffers[0].framebuffer->getPixelInformation() result:FFFFFFCE
    Dec 28 18:41:14 Galvatron lookupd[10089]: lookupd (version 369.6) starting - Thu Dec 28 18:41:13 2006
    Dec 28 18:41:17 Galvatron lookupd[10090]: lookupd (version 369.6) starting - Thu Dec 28 18:41:17 2006
    Dec 28 18:41:17 Galvatron configd[43]: posting notification com.apple.system.config.network_change
    Dec 28 18:41:26 Galvatron kernel[0]: AFPSleepWakeHandler: waking up
    ******** Crash log *****
    panic(cpu 0 caller 0x001914A8): pmapflushtlbs() timeout pmap=0x4b0700 cpustosignal=0x2
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x252d3ae8 : 0x128d08 (0x3c9afc 0x252d3b0c 0x131de5 0x0)
    0x252d3b28 : 0x1914a8 (0x3cccfc 0x4b0700 0x2 0x2)
    0x252d3b98 : 0x192491 (0x4b0700 0x23c0a000 0x0 0x15da9b)
    0x252d3c18 : 0x1735f5 (0x105d9 0x0 0x0 0x0)
    0x252d3ca8 : 0x165327 (0x3ee8198 0x0 0x0 0x10000)
    0x252d3d98 : 0x165b10 (0x23c1a000 0x0 0x1 0x0)
    0x252d3dd8 : 0x162e1f (0x1477e74 0x23c0a000 0x0 0x23c1a000)
    0x252d3e08 : 0x12da3c (0x1477e74 0x23c0a000 0xfff8 0x0)
    0x252d3e28 : 0x143284 (0x23c0a000 0xfff8 0x252d3dfc 0x3973b00)
    0x252d3e58 : 0x37c2e4 (0x23c0a000 0x23d68000 0x252d3e88 0x2)
    0x252d3e88 : 0x3b8bcd (0x391c800 0x3ef2d8 0x38c6348 0x38f10b)
    0x252d3ec8 : 0x392599 (0x38c6100 0x4 0x1d 0x2)
    0x252d3f08 : 0x392acf (0x38c6100 0x0 0x252d3f38 0x3d18170)
    0x252d3f28 : 0x394b24 (0x38c6100 0x0 0x38efb68 0x37f0be)
    0x252d3f58 : 0x39814b (0x38efb40 0x135eb4 0x0 0x38c0144)
    0x252d3f88 : 0x397e81 (0x38efb00 0x252d3fd4 0x134c09 0x135eb4) Backtrace continues...
    Kernel version:
    Darwin Kernel Version 8.8.2: Thu Sep 28 20:43:26 PDT 2006; root:xnu-792.14.14.obj~1/RELEASE_I386
    Model: MacBookPro2,2, BootROM MBP22.00A5.B00, 2 processors, Intel Core 2 Duo, 2.16 GHz, 2 GB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: AirPort Extreme, 1.0.27p3
    Bluetooth: Version 1.7.11f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS541612J9SA00, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D, 780.94 MB
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    15 MacBook Pro C2D   Mac OS X (10.4.8)  

    When you get the blackscreen, does the following line always appear:
    Dec 28 18:39:28 Galvatron kernel[0]: ERROR: VendorAccelerator::setdisplay_mode_andvram() call to fFramebuffers[0].framebuffer->getPixelInformation() result:FFFFFFCE
    Did you run hardware test? Is this problem reproducible every time?

  • Re-boot cycle with new opty 175?

    Iv already posted in this thread https://forum-en.msi.com/index.php?topic=101539.40 but its been a couple of weeks since anyone has made a post so thought I would repost here, sorry if this is wrong way to do it.
    I installed my new Opty 175, It recognised OK in my system. ACPI MultiProcessor PC with both cores reported under CPU in Device manager, Task Manager showing 2 graphs for both cores, all looks good so far.
    Installed the MS Hotfix (never done the PerfEnablePackageIdle registry edit, is this maybe a problem?) then the AMD Optimiser, everything still looking good.
    Quote
    install Dual Core HotFix V4 --> https://forum-en.msi.com/index.php?topic=103843.0
    reboot.
    install Dual Core Optimizer --> http://www.amd.com/us-en/assets/content_type/utilities/Setup.exe
    reboot, re-test. (check it from device manager:
    This is the order I installed the fixes, as per BOSSMANS instructions.
    I cant see the MS hotfix KB896256 in ADD/REMOVE programs??
    AMD fix is there though.
    My Problem is the same as mremulator's described in this thread https://forum-en.msi.com/index.php?topic=101922.0
    Quote
    No No No, the dual core optimiser and MS Hotfix are NOT compatible.   
    I made the mistake of installing the two and Windows XP would reboot at desktop. AMD have confirmed this.
    I have the desktop reboot problem, though not all the time. Seems to be when I've been in the BIOS (no changes made) or recently I ran Memtest for 16 passes (no errors) and rebooted to the reboot cycle again.
    I was thinking of just doing a re-install but after reading the above thread it looks like I will have the same problem after installing both dual core fixes?
    I have a Ghost Image of my upgrade before the Dual Core fixes where installed and was thinking of going back to this to try again to fix the reboot cycle problem, will this be a good Idea?
    Also, any ideas as to whay the MS Hotfix doesnt show in ADD/REMOVE programs? (show updates is ticked)
    Can someone please give me a clear route to Installing the fixes (if they are applicable), and if the registry edit for the MS Hotfix is needed???
    Any help is much appreciated 
    g2k.

    Right, I've been at this for nearly 4 hours now.
    I've done all below and this is MY findings:
    1. Restored my Ghost image (which was made prior to installing any fixes, just the CPU installed)
    2. Installed the "AMD Athlon™ 64 X2 Dual Core Processor Driver for Windows XP and Windows Server 2003 Version (x86 and x64 exe) 1.3.2.16" software.
    3. Installed the MS Hotfix KB896256, then done testing with the reg files supplied by BOSSKILLER, plus the boot.ini edit (with both  "/NoExecute=OptIn"
     and "/EXECUTE", absolutely no difference with either).
    Done a few reboots, messing around in BIOS, just looking - no changes. All fine when booting up. Happy with that I chose the enable reg entry and saved this as my default.
    4. Installed AMD Optimiser, reboot straight to windows = OK
    reboot to BIOS and mess around looking at the settings (no changes), reboot and when windows loads - instant reboot and back into my reboot cycle!
    continued to mess around rebooting and into BIOS and finaly had to F8 to load the "Last good config that worked" on the list.
    5. Uninstalled AMD Optimiser, repeated all the rebooting and BIOS messing around, I CANT get the system to get the reboot cycle error at all now
    My conclusion is - dont install the AMD Optimiser! Also I agree with mremulator in this thread: https://forum-en.msi.com/index.php?topic=101922.0
    Im using only the MS hotfix with the enabled reg key and its fine like that, installing the AMD one made absolutely no difference for me apart from the reboot problem.
    I understand people dont have this problem running both fixes, just thought I would post my findings incase anyone else ran into similar problem as me.
    @ BOSSKILLER
    can you tell me what the difference is between the BOOT.INI edits " "/NoExecute=OptIn" and /EXECUTE" please??
    Also, many thnx for all your help
    nice one
    g2k.

Maybe you are looking for