Days in a row - seed meter

Hi all

I am creating a counter of streak 'days in a row.

Where the learner where if the learner accesses the module on two consecutive days in a row it would increase. If they missed a day it would basically start over from scratch.

I may have a variable load and save the memory of the browsers and could create a variable that whenever they finish the module, increases by one.

However, I need something more which acknowledges if little time has passed since the last time that the module has been used and resets the variable to 0.

I know that Captivate system variables, such as cpInfoCurrentDay is not sure how I can integrate it into a step forward or a conditional Action to make it work.

What cpInfoEpcohMS done and would be useful in this case?

I'm confused now, $vdate will always be less than $vdate + 86000? You will need to subtract the present value of the cpInfoEpochMS $vdate and see if the result is less 86000. If you use a conditional, tip action, you must first a decision than a standard action for mimicks subtraction Expression, then the conditional action. Something like this:

First decision "always."

IF 1 is equal to 1

Expression v_subtract = cpInfoEpochMS - $vdate

Second decision

IF v_subract is less than 86000

Increment of 1 V_counter

ON THE OTHER

Assign the v_counter with 0

Tags: Adobe Captivate

Similar Questions

  • Customer reviews second day in a row: and you should inform your contact at Echosign I couldn't fill it electronically via my iPhone in Safari or Chrome.  I got the signature part via mobile phone to work but the submit button would not FIR

    Customer reviews received the second day in a row.

    And you should inform your contact at Echosign I couldn't fill it electronically via my iPhone in Safari or Chrome.  I got the signature part via mobile phone to work but the submit button not not fire and typing method did not work at all.  Suppose what echosign knows the percentage of people who are currently working off the coast of their mobile phones.

    WTF?

    Aaron, no thanks to Adobe (and a big thank you using Google Apps,) I finally could solve this problem.  The way the document authenticates in the back-end is through Google + Apps Admin profile.  Once I entered in the Console administration, compatible Google + for the created domain a + profile for the admin of the field, the auto shape filled the signature form after that I have authorized access to authentication on the shortcut menu.  Not sure if your situation is in Google Apps, but even if not, I'd be willing to bet that the problem on your side is the account that is used for authentication when you open your form.  I hope this helps!

  • 5 days in a row = nowhere

    I hope someone can help me here. It was the 5th consecutive day, working on something that should be very simple. I myself am subscribed to Lynda.com but so far no member of their support responded to my pleas. I am building a site for my friend (www.mikemorleyphoto.com) and the words Me page I thought, would be a simple dynamic test box that scrolls. I followed the "tutorial" step by step, so many times I lost count with the same result every time. (isn't that what madness is?)

    For some reason I can't connect the text scrolling bar for the life of me. Maybe I made the wrong mask? I do not know. Who didn't not been mentioned in the tutorial. In fact, in the example, the mask was already created.

    I'd appreciate any help / advice, you are ready to give.

    Thank you ~ John (the link is below)

    Here is a link to the entire file and content. (it's a small file):

    http://www.mikemorleyphoto.com/clients/aboutme.zip

    Can you describe the approach that you follow and provide code that you use for this? While you might find someone ready to dig in the files you made available, you could get more attention not to let the people to try to understand what you did.

  • Availability of the system, if more than 25 days?

    Hello

    The parameter 'time' in the call NavigationMovement (dx, dy, status, time) is equal to the number of milliseconds since the device booted up last. However, the value is an int. After my calculations, the value of time is only good if the unit has been running for less than 25 days continuously (see below).

    Anyone know what is happening to the value of time once it exceeds 25 days? I came across a bug on my program where things worked very well on my device, but then the call of NavigationMovement behaved badly and I thought it was because my camera was too long. I did a traction battery and things worked properly again.

    I won't try to debug this iteratively until my device of permanent test for 25 consecutive days each time.

    How can I keep my program works correctly even if the device of the user stays on for more than 25 days in a row?

    Thank you

    CALCULATION OF time MAX VALUE:

    int Max value is 2 ^ 31-1

    => 2147483647 milliseconds

    => 2147483.647 seconds

    => 596,52323 hours

    => 24,8551 days

    Two ideas:

    1. to work around this problem:

    (a) if drop test (iLastSwipeTime > 0).

    and

    (b) verification (time - iLastSwipeTime) & 0x7FFFFFFF rather than simply (time - iLastSwipeTime).

    2. to test, take a look at EventInjector.  There are no setTime() for EventInjector.NavigationEvent (at least it is not documented), but both KeyEvent and KeyCodeEvent this (obsolete) method.  See if you can use it in your tests.

  • How do I change calendar of the day seen weeks/months?

    My schedule allows me to see only 2 days in a row.  I would like the option week or month, but may not know how to change it.  Thank you

    Hello

    To switch to the week or month view in the calendar after the opening of calendar simply right click on the window and the options that you get at the bottom of the screen select week or month.

    Concerning

  • Noting the current day

    Hi, happy new year.

    I have a code that gives me a calendar on my cfml page.

    Is it possible that I can change this so that the current day has a background color?

    Thank you very much.

    < code >

    < cfset distant = year (now ()) >

    < cfset thisMonth = month (now ()) >

    < p > < cfoutput > #MonthAsString (thisMonth) # #thisYear # < / cfoutput >

    < cfoutput >

    < table border = "1" width = "100%" height = "100%" >

    < b >

    < cfloop index = 'x' from = "1" to "7" = >

    < th > #dayOfWeekAsString (x) # < /th >

    < / cfloop >

    < /tr >

    < / cfoutput >

    < cfset firstOfTheMonth = createDate (year (now ()), month (now ()), 1) >

    < cfset dow = dayofWeek (firstOfTheMonth) >

    <!-this gives us a number between 1 and 7. Our pad will be the day of the week less 1.->

    < cfset pad = dow - 1 >

    <!-now we need to create the first line of the calendar with the empty boxes, as appropriate: - >

    < cfoutput >

    < b >

    < / cfoutput >

    < cfif pad gt 0 >

    < cfoutput > < td colspan = "#pad #" > < table > < / cfoutput >

    < / cfif >

    < cfset days = daysInMonth (now ()) >

    < cfset meter = pad + 1 >

    < cfloop index = 'x' from = "1" to = "#days #" >

    < cfoutput >

    < td > #x # < table >

    < / cfoutput >

    < cfset counter = counter + 1 >

    < cfif meter is 8 >

    < cfoutput > < /tr > < / cfoutput >

    < cfif x lt days >

    < cfset counter = 1 >

    < cfoutput >

    < b >

    < / cfoutput >

    < / cfif >

    < / cfif >

    < / cfloop >

    < cfif meter is not 8 >

    < cfset endPad = 8 - meter >

    < cfoutput >

    < td colspan = "#endPad #" > < table >

    < / cfoutput >

    < / cfif >

    < code >

    It seems you're out only the current month, which makes things easier (if you add the feature to navigate backward or forward through the months and years, this code should be changed slightly).

    Find out what is today:

    While you are in a loop on your days 28-31, check if you are on the current day:

    #x #.

  • Cannot install update - iOS 9.3.5

    I have updated my iPad 32 GB of Air problems

    It is running iOS 9.3.3 and wouldn't be updated for iOS 9.3.4.  Now he only will be not updated either 9.3.5.

    When I tried to update 9.3.4, I got messages saying that the update check has failed.  For 9.3.5, it just says: "year error occurred installing iOS 9.3.5" but does not specify what.

    For the two updates, I deleted files update downloaded and redownloaded them several times, without success.  It will not update via iTunes either.  The only advice that I can see anywhere on these issues are 1) download the update new - done and failed.  (2) refresh or restart the machine - made and failed.  (3) update through iTunes - no longer works.

    I have several GB of free space and the problem occurs even when fully charged and if hooked up or not.

    My iPhone updated fine, apart from a few glitches (with contacts and the app crashing) which seemed to be resolved.   I understand these updates are important security, so am eager to sort.

    I would like ideas.  Other than suggestions to do what I've done!

    Thank you.

    Hello

    On Tuesday 13 ios 10 will be available for download.

    I would expect it, s only 2 days in a row.

    See you soon

    Brian

  • Mini Mac crash constantly?

    Can anyone diagnose why my mac mini Crash?

    I bought second hand and it had been updated for the last OS El Capitan (initially he would have OSX Server).  The machine looks in very good condition (physically).

    It crashed, probably about 10 times in the 3 weeks I've owned it, and use it today to watch Hulu, it crashed several times.  As a general rule, it is kept for days in a row - don't know if this is related, although of course it crashes now much today.  It also seems that it crashes during video playback, streaming or in VLC.  Usually, the mac crashes completely: the video becomes still, no noise, and nothing works (not even the ouse moves).  I have to hard reboot with the power button.  Otherwise, the machine restarts sometimes just and begins to start without a stop on images effect.

    On this last occasion (where I post this), I had spent playing a video with VLC on mute, while iTunes was playing.  I have several external drives connected, including a USB Hub and also a bluetooth keyboard, and a system audio bluetooth. The display is my TV via HDMI.

    The report of panic is less to-I do not know how to interpret it.  Can someone please help?

    Anonymous UUID: 0C0BC4B6-3A7A-605F-7632-954C86529610

    Anonymous UUID: 0C0BC4B6-3A7A-605F-7632-954C86529610

    Sun Aug 21 18:18:59 2016

    Panic report *.

    panic (cpu 0 0xffffff801c7ce6fa appellant): Kernel trap at 0xffffff801c6ca3e3, type 14 = page fault, registers:

    CR0: 0 X 0000000080010033, CR2: 0XFFFFFF80EDEAD248 CR3: 0X0000000185D16000 CR4: 0 X 0000000000002660

    RAX: 0XFFFFFF80EDEAD000, RBX: 0XFFFFFF803087DE40 RCX: 0 X 0000000000000048, RDX: 0XFFFFFF9127CE3E40

    RER: 0XFFFFFF9127CE3DE0, RBP: 0XFFFFFF9127CE3E00, IHR: 0X000000004F1DDC2A, RDI: 0XFFFFFF803087DE40

    R8: 0X0000000057B9D41C, R9: 0XFFFFFFFF00000000, R10: 0X00000000000003E8 R11: 0 X 0000000000000206

    R12: 0XFFFFFF803087DE40, R13: 0 X 0000000000000013, R14: 0XFFFFFF9127CE3E40 R15: 0 X 0000000000001807

    RFL: 0 X 0000000000010287, RIP: 0XFFFFFF801C6CA3E3, CS: 0000000000000008, SS 0 X: 0 X 0000000000000010

    Lack of CR2: 0xffffff80edead248, error code: 0 x 0000000000000009, CPU error: 0x0, PL: 1

    Backtrace (CPU 0), frame: return address

    0xffffff9127ce3a70: 0xffffff801c6dab52

    0xffffff9127ce3af0: 0xffffff801c7ce6fa

    0xffffff9127ce3cd0: 0xffffff801c7ec563

    0xffffff9127ce3cf0: 0xffffff801c6ca3e3

    0xffffff9127ce3e00: 0xffffff801c6c7c3c

    0xffffff9127ce3ea0: 0xffffff801c6e2936

    0xffffff9127ce3ee0: 0xffffff801c6d1bf4

    0xffffff9127ce3f10: 0xffffff801c7b8eca

    0xffffff9127ce3fb0: 0xffffff801c7ecd86

    Corresponding to the current thread BSD process name: iTunes

    Mac OS version:

    15G 31

    Kernel version:

    15.6.0 Darwin kernel version: Thu Jun 23 18:25:34 PDT 2016; root:XNU-3248.60.10~1/RELEASE_X86_64

    Kernel UUID: B5AA8E3E-65B6-3D0E-867B-8DCCF81E536C

    Slide kernel: 0x000000001c400000

    Text of core base: 0xffffff801c600000

    Text __HIB base: 0xffffff801c500000

    Name of system model: Macmini4, 1 (Mac-F2208EC8)

    Availability of the system in nanoseconds: 1840863639631

    last load kext to 1051179609969: com Logitech.Control Center.HID Driver 3.9.3 (addr 0xffffff7f9f85b000 size 278528)

    Finally unloaded kext to 1116424951616: com Logitech.Control Center.HID Driver 3.9.3 (addr 0xffffff7f9f85b000 size 278528)

    kexts responsible:

    com Apple.filesystems.msdosfs 1.10

    com.apple.driver.AudioAUUC 1.70

    com.apple.driver.AppleHWSensor 1.9.5d0

    com.apple.driver.AGPM 110.22.0

    com.apple.driver.ApplePlatformEnabler 2.6.0d0

    com Apple.filesystems.autofs 3.0

    com.apple.driver.AppleOSXWatchdog 1

    com.apple.driver.AppleMikeyHIDDriver 124

    com.apple.driver.AppleHDA 274.12

    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0

    com.apple.driver.AppleMikeyDriver 274.12

    com.apple.GeForceTesla 10.0.0

    com.apple.driver.AppleUpstreamUserClient 3.6.1

    com.apple.driver.AppleMCCSControl 1.2.13

    com Apple.Driver.pmtelemetry 1

    com.apple.iokit.IOUserEthernet 1.0.1

    com.apple.iokit.IOBluetoothSerialManager 4.4.6f1

    com.apple.Dont_Steal_Mac_OS_X 7.0.0

    com.apple.driver.AppleHV 1

    com.apple.driver.AppleIntelSlowAdaptiveClocking 4.0.0

    com.apple.driver.AppleLPC 3.1

    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.4.6f1

    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1

    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0

    com.apple.BootCache 38

    com.apple.driver.AppleIRController 327,6

    com.apple.iokit.SCSITaskUserClient 3.7.7

    com.apple.driver.AppleUSBStorageCoexistentDriver 3.7.1

    2.8.5 com.apple.iokit.IOAHCIBlockStorage

    com.apple.driver.AirPort.Brcm4331 800.20.24

    com.apple.driver.AppleFWOHCI 5.5.4

    com.apple.driver.AppleAHCIPort 3.1.8

    com.apple.iokit.AppleBCM5701Ethernet 10.2.0

    com.apple.driver.AppleSDXC 1.7.0

    com.apple.driver.usb.AppleUSBOHCIPCI 1.0.1

    com.apple.driver.usb.AppleUSBEHCIPCI 1.0.1

    com.apple.driver.AppleRTC 2.0

    com.apple.driver.AppleHPET 1.8

    com.apple.driver.AppleACPIButtons 4.0

    com.apple.driver.AppleSMBIOS 2.1

    com.apple.driver.AppleACPIEC 4.0

    com.apple.driver.AppleAPIC 1.7

    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0

    com Apple.NKE.applicationfirewall 163

    com Apple.Security.Quarantine 3

    com.apple.security.TMSafetyNet 8

    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0

    com.apple.driver.AppleBluetoothHIDKeyboard 181

    com.apple.driver.AppleHIDKeyboard 181

    3.12.8 com.apple.AppleGraphicsDeviceControl

    com Apple.kext.Triggers 1.0

    com.apple.driver.DspFuncLib 274.12

    com.apple.kext.OSvKernDSPLib 525

    com.apple.driver.IOPlatformPluginLegacy 1.0.0

    com.apple.driver.AppleHDAController 274.12

    com.apple.iokit.IOHDAFamily 274.12

    com.apple.iokit.IOAudioFamily 204.4

    com.apple.vecLib.kext 1.2.0

    com.apple.nvidia.classic.NVDANV50HalTesla 10.0.0

    com.apple.nvidia.classic.NVDAResmanTesla 10.0.0

    com.apple.iokit.IOSurface 108.2.3

    com.apple.iokit.IOSerialFamily 11

    com.apple.driver.CoreCaptureResponder 1

    com.apple.iokit.IOSlowAdaptiveClockingFamily 1.0.0

    com.apple.driver.IOPlatformPluginFamily 6.0.0d7

    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.4.6f1

    com.apple.iokit.IOFireWireIP 2.2.6

    com.apple.driver.AppleSMC 3.1.9

    com.apple.driver.AppleSMBusController 1.0.14d1

    com.apple.driver.AppleSMBusPCI 1.0.14d1

    com.apple.iokit.IONDRVSupport 2.4.1

    com.apple.iokit.IOGraphicsFamily 2.4.1

    com.apple.driver.usb.IOUSBHostHIDDevice 1.0.1

    com.apple.driver.IOBluetoothHIDDriver 4.4.6f1

    com.apple.iokit.IOBluetoothFamily 4.4.6f1

    com.apple.iokit.IOUSBHIDDriver 900.4.1

    com.apple.driver.usb.AppleUSBHub 1.0.1

    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.7

    com.apple.iokit.IOUSBMassStorageClass 4.0.2

    com.apple.iokit.IOUSBMassStorageDriver 1.0.0

    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.7

    com Apple.Driver.USB.cdc 5.0.0

    com.Apple.Driver.USB.Networking 5.0.0

    com.apple.driver.usb.AppleUSBHostCompositeDevice 1.0.1

    com.apple.iokit.IO80211Family 1110.26

    com Apple.Driver.corecapture 1.0.4

    4.6.1 com.apple.iokit.IOFireWireFamily

    com.apple.iokit.IOAHCIFamily 2.8.1

    com.apple.iokit.IOEthernetAVBController 1.0.3b3

    com.apple.driver.mDNSOffloadUserClient 1.0.1b8

    com.apple.iokit.IONetworkingFamily 3.2

    com.apple.driver.usb.AppleUSBOHCI 1.0.1

    com.apple.driver.usb.AppleUSBEHCI 1.0.1

    com.apple.driver.AppleEFINVRAM 2.0

    2.2.9 com.apple.driver.NVSMU

    com.apple.iokit.IOUSBFamily 900.4.1

    com.apple.driver.AppleEFIRuntime 2.0

    com.apple.iokit.IOUSBHostFamily 1.0.1

    com.apple.driver.AppleUSBHostMergeProperties 1.0.1

    com.apple.iokit.IOHIDFamily 2.0.0

    com.apple.iokit.IOSMBusFamily 1.1

    com Apple.Security.sandbox 300.0

    com.apple.kext.AppleMatch 1.0.0d1

    com.apple.driver.AppleKeyStore 2

    com.apple.driver.AppleMobileFileIntegrity 1.0.5

    com.apple.driver.AppleCredentialManager 1.0

    com.apple.driver.DiskImages 417,4

    com.apple.iokit.IOStorageFamily 2.1

    com.apple.iokit.IOReportFamily 31

    com.apple.driver.AppleFDEKeyStore 28.30

    com.apple.driver.AppleACPIPlatform 4.0

    com.apple.iokit.IOPCIFamily 2.9

    com.apple.iokit.IOACPIFamily 1.4

    com.apple.kec.Libm 1

    com Apple.KEC.pthread 1

    com Apple.KEC.corecrypto 1.0

    Model: Macmini4, 1, MM41.0042.B03 of BootROM, 2 processors, Intel Core 2 Duo 2.66 GHz, 8 GB, MSC 1.65f2

    Graphics card: NVIDIA GeForce 320 M, NVIDIA GeForce 320 M, PCI, 256 MB

    Memory module: DIMM0/0 BANK, 4 GB DDR3, 1067 MHz, 0 x 8502, 0 x 505341333447313036363253000000000000

    Memory module: BANK 1/DIMM0, 4 GB DDR3, 1067 MHz, 0x0000, -.

    Airport: spairport_wireless_card_type_airport_extreme (0x14E4, 0 x 93), Broadcom BCM43xx 1.0 (5.106.98.100.24)

    Bluetooth: Version 4.4.6f1 17910, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi, AirPort, en1

    Serial ATA Device: ST9500423AS, 500,11 GB

    USB device: USB Bus

    USB device: USB Bus

    USB device: Hub BRCM2070

    USB Device: USB Bluetooth host controller

    USB Device: IR receiver

    USB device: USB 2.0 Bus

    USB device: My book

    USB device: My book 1140

    USB device: USB 2.0 Bus

    USB device: USB 2.0 Hub

    USB Device: Ext HDD 1021

    USB drive: Microsoft Nano transceiver 1.1

    USB device: 10B 8 items

    Crush Bus:

    Try to uninstall the Logitech devices and drivers:

    last load kext to 1051179609969: com Logitech.Control Center.HID Driver 3.9.3 (addr 0xffffff7f9f85b000 size 278528)

    Finally unloaded kext to 1116424951616: com Logitech.Control Center.HID Driver 3.9.3 (addr 0xffffff7f9f85b000 size 278528)

    Then try to unplug these devices:

    USB drive: Microsoft Nano transceiver 1.1

    USB device: 10B 8 items

  • iPhone 5s does not illuminate

    my iPhone 5s did pay almost 3 days in a row and has not lit, what should I do?

    Try to start the unit by holding down the home button and the power button.

  • Apple Watch without charge for more than 1 month.

    So I have not loaded my Apple Watch in 1 month, and when I tried to load, I loaded 3 days in a row and it still won't turn, no, it is not the charger, I tried force restart with digital Crown and side button and still nothing, then I was stupid enough to cancel the twinning of the Apple Watch with my iPhone thinks it would work somehow , and now I can't reset it, so dumb. I can't connect to iTunes either, I'm so lost and confused, I just had this Apple Watch for about 2 months for my birthday and I don't know what to do. I have tried every thing on the web to force reboot to restore the entire Apple Watch. Please if anyone knows, please tell me, literally I am desperate for your help, thank you in advance.

    Hello

    Given the steps you've already tried, I suggest you contact Apple Support (mail service may be available) or make a booking Genius Bar in order to have your watch checked under warranty:

    Contact - Support official Apple

    https://Twitter.com/applesupport

    http://www.Apple.com/retail/Geniusbar/

  • SENT mail shows 'From' instead of 'To '.

    Every once in a while, when I go to my mail folder SENT, they all show my name as 'From '.

    But I * know * that comes from the email - of course, it's me!   :-)   What I need, is that I sent it to.

    Sometimes this happens whenever I click on SENT mail for a day or two.  Sometimes it

    behaves itself for several days in a row.

    Is it possible for me to stop it when it arrives?

    Open the "Sent" folder and use

    Mail.App > view > columns

    Check 'To' and, if you wish, disable the option 'From '. You can also change the order of columns by dragging headings.

    C.

  • Open new tab in firefox newly updated

    When you click the plus sign "+" to open a new tab, it nothing happens. Same thing when you select 'file' and 'new tab' or press ctrl + T. I rolled back three days in a row to this version of firefox and keeps it updated to this version.

    I need to be able to open a new tab and access all of my sites more often used. Help, please. I don't want to go back to IE.

    Hello, this is probably caused by an add-on incompatible - in case you have more installed label mix, try update to its latest version on its homepage...

    Troubleshoot extensions, themes, and issues of hardware acceleration to resolve common problems of Firefox

  • Airport Extreme network orientation parameters

    Here is our network (diagram below) configuration:

    Internet is available through a pass by modem cable to the Sonic Wall set with a static IP address. The wall of sound, we have a port to a point of cradle that is not with a static IP and gives on a totally different range of the IPS via DHCP to our POS. Another port of the Sonic Wall, I had going to the WAN port on our new airport extreme. I have a switch with some control machines connected to the Airport extreme via an ethernet cable. All devices connected via wifi or hard cable with Airport extreme are placed for IPS via DHCP.

    I am trying to configure parameters on a new device extreme airport our Wi - Fi to my company. We recently had some problems of internet connectivity for a minute or two at a time and I wonder if it could be some sort of conflict of IP address or if it was just a failure of the internet that did not affect the status of the modem lights cable (all were green = connected). Brief history: the most extreme airport on a port of our Sonic wall with the airport extreme is default DHCP and NAT (he gave me the orange light, and he suggested that I put it in Bridge mode). Internet in all of our network seemed to work very well, so I just left it alone.

    30 days later we have a brief interruption in internet connectivity with our credit card processing POS two days in a row for a minute or two of. After the second case, we shut down the extreme airport just in case that was causing our problem. I had a technician COMPUTER down and he suggested I put the airport with a static IP (x.x.7.80) outside the range of IP addresses of our wall router Sonic DHCP-range (let's say it was x.x.7.100 - x.x.7.252) he has been giving and then configured the network settings for DHCP LAN only Airport (I used x.x.7.10 - x.x.7.70) with a range that doesn't overlap the IP of the Sonic Wall range. Part of the confusion, I had during the configuration of the airport was if I needed to plug in our Sonic Wall static IP address in the 'router' address and if I needed to use the DNS servers that appeared in the Sonic Wall settings (I thought he was shooting at those of the cable company). After you make these changes, I got a green light on the airport and the connection was working fine when tested. The next day, we had another interruption of connectivity where our treatment card and internet from WIFI got interrupted. I unplugged the power of WIFI and it seemed that our POS network has begun to process cards normally again.

    The point side cradle of the network is to grasp what IP the sonic wall gives him and give the address on a completely different system that is used in the other part of the network. Another question would be if I can just put the Airport extreme to DHCP mode under the 'Internet' parameter and go to the bridge on "Network" setting Mode I don't know how the bridge Mode would affect our network. I'm not wanting to do anything on the side POS (point of cradle) which is rather difficult with someone like me who is not an expert. Any thoughts are appreciated to help me resolve this issue.

    Brief history: the most extreme airport on a port of our Sonic wall with the airport extreme is default DHCP and NAT (he gave me the orange light, and he suggested that I put it in Bridge mode). Internet in all of our network seemed to work very well, so I just left it alone.

    There are two schools of thought on this.  The traditional method (better, in my opinion) would have the AirPort Extreme, put in place in Bridge Mode... Since you already have another router... (the Sonic Wall device which is upstream of your network)... providing routing services.

    Although you might be able to make a network work well with two different devices acting both as of the routers on the network, it complicates things, adds another firewall to the network, and also produces a base called Double NAT network error.

    Sometimes you can get away with a Double NAT error on a simple network, but the double layers of NAT may cause some unpredictable problems. The usual problem is slower navigation, or you will not be able to access some Web sites.  Network devices may not communicate reliably, or communicate at all in some cases.

    This is why Apple software configuration you advise to set up AirPort Extreme in bridge... Mode to fix the Double NAT error. This type of configuration simplifies your network... Since one device will put a router... not two.

    In recent years in particular, we have seen some tips on forums that goes against the rules of traditional networking.  These people that it is OK to have two devices both try to act as routers to the same network... and to 'ignore' the Double NAT error on the network.

    It's interesting tips, since the Apple software advises you avoid having a Double NAT on the network... and some advanced features like Back to My Mac specifically Apple advise to avoid a Double NAT error on the network.  If you have a console online game and you want to play interactively on Internet, you already know that a Double NAT error will not allow this.

    My suggestion would be so... If you have not already tried it... to set up the AirPort Extreme in Bridge Mode.  Apple calls this setting off (Bridge Mode)... which simply means that routing services are turned 'Off' Mode bridge.

    You can still assign a static to AirPort Extreme IP address, if you want, but the devices that are connected to the AirPort Extreme will receive the Sonic Wall router network IP addresses... Since the airport acts as a simple device to "go" when he returns and in Bridge Mode.

  • Camileo S10 does not

    Hello

    last week, I found my old camileo s10 that I him have not used for a year or two, so I guess the battery was completely dead and unusable.

    However I found a charger that has mounted the camcorder, it may not have been that which is expected but when it is plugged into an outlet an orange light appears around the record button.

    However, after charging for two days in a row, the camcorder appears not functional even if the orange light remains constant when charging.

    If anyone can offer a solution to this problem, or is my camcorder simply dysfunctional because of the long period of unused remaining time? Thanks for any help.

    I put t see many options here

    If the battery is OK, it should be possible to load.
    The camcorder must be decommissioned: flashing light confirms the load, but the light is constant when the load was over.

    In your case, it might be possible that the battery is defective and, therefore, it of not possible to load.
    Maybe you should try the new battery

  • Reader of fingerprints of Qosmio X 500-12 L randomly refuses to work

    I have a pretty annoying bug on the 500-12 L X. The fingerprint reader is no longer random. I can put my computer to sleep 4 days in a row, the fifth day, when activated, no more fingerprints than reading. And just try login PASSWORD will result in a loop on screen... I have to turn it off and get "incorrect password" to show to the screen, (video driver?)

    Then when you start the computer from the OFF position is just a bet, sometimes it works, sometimes I need to take the power off, battery, wait 30 seconds, put the battery and power back, and then the fingerprint reader works again.

    Quite annoying... any1 else with this problem?

    Do you have the factory preinstalled Windows installed? Or a version installed generic Windows?

    Maybe the fingerprint driver need updated, or added value package needs to update.

    Also make sure you have the latest version of the BIOS installed (I think it's v2.80 for now).

Maybe you are looking for