Can't get WRT54GS working, but my BEFSX41 does. Twice on phone support, no joy.

My current setup that works:
befsx41 router:
internet connection type: Obtain an IP automatically
local ip address: 192.168.1.1
subnet mask: 255.255.255.0
Local DHCP Server: enabled
Start IP: 192.168.1.100
My computer:
IP address: 192.168.1.100
subnet mask: 255.255.255.0
default gateway: 192.168.1.1
Prefered dns server: xx.xxx.xxx.xx
alternate dns server xx.xxx.xx.xx
I've run the EasyLink Connect program more than once while connected to the WRT54GS router.  The last time I ran it, it was telling me that I didn't have a Linksys router connected, even though the wrt54gs router was indeed connected.
I'm trying to connect one desktop to the WRT54GS router with wire.  Shouldn't I just be able to connect the WRT54GS router in the same way as the BEFSX41 and change the IP address and Default Gateway on my computer?
I've gone through this over the phone twice and still no joy.  Any help would be appreciated, I don't want to call again if I don't have to.
thanks,
Monte
Message Edited by monte on 01-12-2008 08:35 PM

Its not clear from your note whether your computer got its 192.168.1.100  address from the BEFSX41's  DHCP server, or whether you have assigned your computer a fixed LAN IP address.  If it got the address from the DHCP server, its OK.  If you went into your computer and set it to 192.168.1.100 , then you have used an illegal fixed LAN IP address, and this might be the cause of your problem.  Any fixed LAN IP address must be outside the DHCP server range.
Assuming your computer got its address from the DHCP server (or assuming you change the address to a valid fixed LAN IP address, such as 192.168.1.20 )  then your WRT54GS should work when set to its factory default values.
To reset your router to factory defaults, use the following procedure:
1) Power down all computers, the router, and the modem, and unplug them from the wall.
2) Disconnect all wires from the router.
3) Power up the router and allow it to fully boot (1-2 minutes).
4) Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
5) Power down the router.
6) Connect one computer by wire to port 1 on the router (NOT to the internet port).
7) Power up the router and allow it to fully boot (1-2 minutes).
8) Power up the computer (if the computer has a wireless card, make sure it is off).
9) Try to ping the router. To do this, click the "Start" button > All Programs > Accessories > Command Prompt. A black DOS box will appear. Enter the following: "ping 192.168.1.1" (no quotes), and hit the Enter key. You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out." If you see "Reply from ...", your computer has found your router.
10) Open your browser and point it to 192.168.1.1. This will take you to your router's login page. Leave the user name blank, and in the password field, enter "admin" (with no quotes). This will take you to your router setup page. Note the version number of your firmware (usually listed near upper right corner of screen). Exit your browser.
If you get this far without problems, power down the computer and WRT54GS.  Connect the ethernet port on your modem, by wire, to the Internet port on the WRT54GS.  Leave a computer connected by wire to port 1 on the WRT54GS.  Power up the modem and allow it to fully boot (1-5 minutes).  Power up the WRT54GS and allow it to fully boot (1-2 minutes).  Power up your computer.  Test your Internet connection  -- it should work.  If you still have trouble, in the computer, temporarily turn off your software firewall, including Windows firewall, and see if that helps.
If you cannot get "Reply from ..." in step 9 above, your router is dead.
If you get a reply in step 9, but cannot complete step 10, then either your router is dead or the firmware is corrupt. In this case, use the Linksys tftp.exe program to try to reload your router with the latest firmware. After reloading the firmware, repeat the above procedure starting with step 1.
If you need additional help, please state your ISP, the make and model of your modem, your router's firmware version, and the results of steps 9 and 10. Also, if you get any error messages, copy them exactly and report back.
Please let me know how things turn out for you.

Similar Messages

  • Can't get my work email to load on my new phone

    I can't get my work email onto my Droid X.   Anyone know the trick? 

    Carl3 wrote:
    I can't get my work email onto my Droid X.   Anyone know the trick? 
    First quesiton I have is do you have authorization to access your work email from your Droid X? Just knowing the email address and password is enough for you to get your personal email, but your employer must approve remote access.
    If it's okay with your employer, you may also need to know the incoming and outgoing email server addresses, the port number, and your username on your employer's email server. If you're not sure what they are, check with your IT admin AFTER you get confirmation that it's okay to get your email.

  • Can't get Sequencing working (table or view does not exist...)

    Hello,
    I'm running JDeveloper 10.1.2 on a Oracle 9i database.
    All my mappings are correct, i mean, i can query the database using the Toplink API and list all the objects on teh database. What it's not working is inserting new objects due to this sequencing problem.
    This is what i'm doing:
    myClass newObject = (myClass) uow.newInstance(myClass.class);
    uow.assignSequenceNumber(newObject);
    But this is generating this Exception:
    Local Exception Stack: Exception [TOPLINK-4002] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle.toplink.exceptions.DatabaseExceptionException Description: java.sql.SQLException: ORA-00942: table or view does not exist
    Internal Exception: java.sql.SQLException: ORA-00942: table or view does not exist
    Error Code: 942
    I figured this could be a problem with the sequencing configuration and all that stuff (I don't have a sequence table). So i checked my configurations...
    'Toplink Mappings' is setup to 'Use Native Sequencing', as per Notes on http://www.boku.ac.at/oradoc/ias/10g(9.0.4)/web.904/b10313/dataaccs.htm. This page also states this:
    "When using native sequencing with Oracle, specify the name of the sequence object (the object that generates the sequence numbers) for each descriptor. The sequence preallocation size must also match the increment on the sequence object" (...) "Use preallocation and native sequencing for Oracle databases.
    And this is exactly what i'm doing. On myClass mappings, the 'Use Sequencing' checkbox is checked, the correct sequence name is typed correctly, once this is the same sequence i've been using for years prior to Toplink, the selected table is the correct one, just as the id field on the table.
    Another thing is that the 'Preallocation Size' on Toplink Mappings match the increment value on the database sequence.
    I must be missing something...
    Can anybody shed some light on this?
    Thanks a lot to all.

    Hello
    The method accessing check box tells TopLink to use the get/set methods on your object to set its attributes - If it is unselected, TopLink will set the attribute directly. Great if you have business logic in your get/set methods that you don't want TopLink to hit each time it creates an object after a read from the database (or registers, etc).
    The problem you are encountering seems like you have sequencing set to "Use Default Sequencing Table". This option is on the "TopLink Mappings" page on the "Database info" tab just below where you would have set which connection to use. You will need to ensure you have the "use Native sequencing" selected. If you set this information instead through code, be sure you do it on the database login before you login to the session.
    If this doesn't help, try turning on TopLink logging to see the SQL statement that causes the problem. The knowing the table name and SQL being used might help figure out where it is being set.
    Best Regards,
    Chris

  • I have 2 itunes accounts - one work a/c and one home a/c, but when i sign in at home only my home songs appear even if I sign in my work a/c. I have authorised both computers to show both a/cs. How can I get my work a/c songs to appear at home?

    I have 2 itunes a/cs one at work and one at home. Both computers are authorised for the 2 a/cs, but I can;t get my work a/c songs to show on my home computer, even though I sign in my work a/c, and I can't get my home songs to show up on the  work computer even though I sign in my home a/c. V. frustrating!

    Hi,
    You will have to manually copy your music. Get a pen-drive big enough to accommodate all your music. And follow these steps:
    1. Create a new folder on the pen-drive.
    2. Copy the music from your work computer to the folder you just created. It's in (yourhomefolder)>Music>iTunes>iTunes Media>Music if you're using a Mac, or in C:\Users\(yourusername)\Music\iTunes\iTunes Media\Music if you're using Windows.
    3. Now on your home computer quit iTunes, and copy your music from work to the "Automatically Add to iTunes" folder in (yourhomefolder)>Music>iTunes>iTunes Media.
    4. Start iTunes. It will automatically start to process the files and move them to the appropriate place.
    Repeat these steps with your music from home on your work computer. Also I suggest to use only one iTunes account if possible.
    Hope it helps
    Regards,
    Gábor

  • Hello, I use MAC AIR OSX 10.6.8 and have Adobe CS2, that I was using 2 years ago on my older computer. I stopped using it because it would close down in the middle of work. Now I would like to reinstall it on the MacAir but I can not get it working. It te

    Hello, I use MAC AIR OSX 10.6.8 and have Adobe CS2, that I was using 2 years ago on my older computer. I stopped using it because it would close down in the middle of work. Now I would like to reinstall it on the MacAir but I can not get it working. It tells Adobe doesnT support my System. But I can not update my old version or activate it. What can I do?

    The mac you want to install photoshop cs2 on is running mac os x 10.6.8 Snow Leopard?
    (photoshop cs2 won't run on intel macs with mac os x newer than snow leopard)
    Did you ever have cs2 installed on this particular computer before?
    If the problem is that you already installed cs2, but it won't activate, that's because adobe took the activation servers offline for some older adobe products such as cs2.
    You'll need to use the non activation version of cs2 from here and the supplied serial number:
    Activation server shut down for Creative Suite 2, Acrobat 7, and Macromedia products

  • IPhone 5 - The icons and letters enlarge and I can't get them to original size. I restarted the phone but it didn't work.

    iPhone 5 - The icons and letters enlarge and I can't get them to original size. I restarted the phone but it didn't work.

    Sounds like Zoom is enabled. Here's what to do.
    Use "3" fingers and double tap on the screen to zoom out. then just go to Settings/General/Accessibility and turn Zoom off

  • HT1349 I recently bought an iPhone and my charger is not working. It worked for the first time but now it is now it is not working. Can i get it replaced in India because i bought this phone from US?

    I recently bought an iPhone and my charger is not working. It worked for the first time but now it is now it is not working. Can i get it replaced in India because i bought this phone from US?

    The warranty is only good in the U.S.
    You woulod have to send it to someone in the U.S.  They could take it in and if it is defective, then it would be replaced.

  • I want to buy an ipad 2 3G but i am not a US resident, how can i get to work on a local network NOT verizon or AT

    i want to buy an ipad 2 3G but i am not a US resident, how can i get to work on a local network NOT verizon or AT&T

    From your screen name would it be safe to guess that you will be using it in Egypt? If your carrier uses is a GSM network you can do as Chris suggests.
    From the Apple page http://www.apple.com/eg/buy/   there is a link to Arab Buisness Machine, they sell the iPad 2 and offer local support should any problems arise.

  • Can't get WRT54G to start up, gets stuck at "checking computer settings"

    Can't get WRT54G to start up, gets stuck at "checking computer settings" at 99% Please help!
    If I hit the escape key it will go to the password screen, it looks like the password is already entered for me so I hit enter, but then it just goes back to "checking computer settings" and won't go past 99% again.'
    Sorry but the last post mistakenly said the wrong number so I posted this.

    If you are running the install CD that came with the router, the behavior you describe is exactly what happened when I tried using the CD today. The CD didn't seem to work with my computer's fixed IP address (not in the 192.168.1.0 network.)
    What worked for me was to set my computer to have the fixed IP address 192.168.1.2. Then I was able to contact the router using its web interface at 192.168.1.1 amd make the necessary settings.
    The password had NOT been changed from the default despite the install CD software seemingly accepting a new password. The default password worked.
    Paul

  • Can t get to work tint2 launcher

    I'm a beginner in arch linux and i'm trying to figure out why the laucher don't show up in my panel,
    i've set up the panel the way i want but i would like to have a few launcher
    I've try serveral thing but i can't get it to work,
    and chromium.desktop and gparted.desktop do exist in /usr/share/applications/
    tks
    Here my tint2rc
    # TINT2 CONFIG FILE
    # horizontal panel
    # squared taskbars
    # idirae config
    # Background definitions
    # ID 1
    rounded = 0
    border_width = 1
    background_color = #808080 20
    border_color = #ffffff 10
    # ID 2 - task active
    rounded = 0
    border_width = 0
    background_color = #feffff 0
    border_color = #d8d8d8 0
    # ID 3 - task
    rounded = 0
    border_width = 0
    background_color = #F5F5DC 0
    border_color = #000000 0
    # ID 4
    rounded = 0
    border_width = 1
    background_color = #888888 0
    border_color = #ED2323 60
    # ID 5 - taskbar
    rounded = 0
    border_width = 1
    background_color = #feffff 10
    border_color = #ffffff 10
    # ID 6 - active taskbar
    rounded = 0
    border_width = 1
    background_color = #feffff 30
    border_color = #ffffff 30
    # ID 7 - tooltip
    rounded = 3
    border_width = 0
    background_color = #222222 90
    border_color = #222222 90
    # ID 8
    rounded = 0
    border_width = 1
    background_color = #888888 20
    border_color = #888888 20
    # Panel
    panel_monitor = all
    panel_position = top left horizontal
    panel_items = LTSBC
    panel_size = 100% 32
    panel_margin = 0 1
    panel_padding = 3 3
    panel_dock = 0
    wm_menu = 1
    panel_layer = bottom
    panel_background_id = 1
    # Panel Autohide
    autohide = 0
    autohide_show_timeout = 0.3
    autohide_hide_timeout = 1.5
    autohide_height = 6
    strut_policy = follow_size
    # Taskbar
    taskbar_mode = multi_desktop
    taskbar_padding = 5 2
    taskbar_background_id = 5
    taskbar_active_background_id = 6
    taskbar_name = 1
    taskbar_name_background_id = 0
    taskbar_name_active_background_id = 0
    taskbar_name_font = Crisp 12
    taskbar_name_font_color = #ffffff 30
    taskbar_name_active_font_color = #ffffff 50
    # Tasks
    urgent_nb_of_blink = 20
    task_icon = 1
    task_text = 0
    task_centered = 1
    task_maximum_size = 20 20
    task_padding = 0 0
    task_background_id = 3
    task_active_background_id = 2
    task_urgent_background_id = 4
    task_iconified_background_id = 3
    # Task Icons
    task_icon_asb = 80 0 0
    task_active_icon_asb = 100 0 0
    task_urgent_icon_asb = 100 0 0
    task_iconified_icon_asb = 80 0 0
    # Fonts
    task_font = BankGothic Md BT 10
    task_font_color = #696969 60
    task_active_font_color = #696969 100
    task_urgent_font_color = #696969 100
    task_iconified_font_color = #696969 60
    font_shadow = 0
    # Launcher
    launcher_icon_theme = elementary
    launcher_padding = 2 2
    launcher_background_id = 1
    launcher_icon_size = 20
    # Specify icon theme names with launcher_icon_theme.
    # if you have an XSETTINGS manager running (like xfsettingsd), tint2 will follow your current theme.
    #launcher_icon_theme = AwOkenWhite
    # Each launcher_item_app must be a full path to a .desktop file
    launcher_item_app = /usr/share/applications/chromium.desktop
    launcher_item_app = /usr/share/applications/gparted.desktop
    # Clock
    time1_timezone = :/usr/share/zoneinfo/dir/Canada/Eastern
    time1_format = %I:%M %p
    time1_font = BankGothic Md BT 9
    #time2_format = %A, %B %d
    #time2_font = Ubuntu-L 7
    clock_font_color = #ffffff 80
    clock_padding = 5 0
    clock_background_id = 5
    clock_lclick_command = gsimplecal
    #lock_rclick_command =
    # System Tray
    systray = 1
    systray_padding = 2
    systray_sort = right2left
    systray_background_id = 5
    systray_icon_size = 20
    systray_icon_asb = 100 0 0
    # Tooltips
    tooltip = 0
    tooltip_padding = 2 2
    tooltip_show_timeout = 0.0
    tooltip_hide_timeout = 0.0
    tooltip_background_id = 7
    tooltip_font_color = #ff0000 100
    tooltip_font = Roboto-Thin normal 9.0
    # Mouse
    mouse_middle = none
    mouse_right = toggle
    mouse_scroll_up = toggle
    mouse_scroll_down = iconify
    # Battery
    battery = 1
    battery_hide = never
    battery_low_status = 10
    battery_low_cmd = notify-send "battery low"
    bat1_font = sans 8
    bat2_font = sans 6
    battery_font_color = #ffffff 80
    battery_padding = 5 0
    battery_background_id = 5
    # End of config
    Last edited by jolejo07 (2013-07-05 01:39:25)

    I've try but can't get it working ether, i've download from Aur but when i'm trying to use the PKGBUILD with makepkg
    it telling me
    ==> ERROR: Cannot find the fakeroot binary required for building as non-root user.
    ==> ERROR: Cannot find the strip binary required for object file stripping.
    Last edited by jolejo07 (2013-07-05 01:45:21)

  • How can we get ADFSecurity work when used in OC4J, OID and OAM?

    I am getting error in http server log "mod_oc4j: Response status=499 and reason=Oracle SSO, but failed to get mod_osso global context."
    But I am not using Oracle SSO and my client doesn't want to use it either, I am using OAM SSO(CoreIDSSO) in my configuration. Please read the details below.
    I am using ADFSecurity in an app that is protected by OAM. To migrate ADFSecurity permissions from
    system-jazn-data.xml to OID, I used JAZNMigrationTool to populate OID with Grantees and Permissions. OAM gives login page, and authentication works fine.
    But ADFSecurity is not working. ADFComponent Delete button is enabled even for roles that dont have permissions for the iterator delete.
    - The app works fine when I use without OAM. ADF Security permissions work fine.
    - The app works fine when used with OAM, but with ADFSecurity disabled (enforce=false).
    - When I enforce ADFSecurity alongwith OAM, ADFSecurity is not working.
    In the doc "Oracle Containers for J2EE Security Guide b28957", there is a mention of use of CoreIDPrincipal for permissions. Our OID Permissions entries show
    LDAPRealmRole for attribute orcljaznprincipal. I am not sure if this could be the reason.
    We have configured AccessServerSDK for the SOA instance and have policy for the urls in the policy manager. We have entries in orion-application.xml, orion-web.xml and system-jazn-data.xml as per the documentations.
    How can we get ADFSecurity work when used with OID and OAM?

    Have you been able to successfully integrate OAS with OAM & OID? We have similar requriement and so far we have not been able to get it working.
    We have application specific roles which we map to OID roles using orion-application.xml.
    Any pointers to achieve this would be greatly appreciated.
    thanks,
    Dipal

  • Can't get iscsi working

    Hi,
    First sorry about the long post but any help would be really appreciated. I can't seem to get iscsi working what am i doing wrong?
    May 24 09:53:39 edsrvscdm-01 iscsi: NOTICE: iscsi connection(5) unable to connect to target iqn.1992-08.com.netapp:sn.135042183
    bash-3.00# iscsiadm list target -v
    Target: iqn.1992-08.com.netapp:sn.135042183
    Alias: -
    ISID: 4000002a0000
    Connections: 0
    Discovery Method: Static
    Login Parameters (Negotiated):
    Data Sequence In Order: -
    Data PDU In Order: -
    Default Time To Retain: -
    Default Time To Wait: -
    Error Recovery Level: -
    First Burst Length: -
    Immediate Data: -
    Initial Ready To Transfer (R2T): -
    Max Burst Length: -
    Max Outstanding R2T: -
    Max Receive Data Segment Length: -
    Max Connections: -
    Header Digest: -
    Data Digest: -
    This is the setup I have done:
    # svcadm enable network/iscsi/initiator
    Collect the IQN number of the system.
    # iscsiadm list initiator-node
    Initiator node name: iqn.1986-03.com.sun:01:00144fa05cee.4ddb6b11
    Initiator node alias: edsrvscdm-01
    Login Parameters (Default/Configured):
    Header Digest: NONE/-
    Data Digest: NONE/-
    Authentication Type: NONE
    RADIUS Server: NONE
    RADIUS access: unknown
    Tunable Parameters (Default/Configured):
    Session Login Response Time: 60/-
    Maximum Connection Retry Time: 180/-
    Login Retry Time Interval: 60/-
    Configured Sessions: 1
    Create an lun on netapp filer
    lun setupThis setup will take you through the steps needed to create LUNs
    and to make them accessible by initiators. You can type ^C (Control-C)
    at any time to abort the setup and no unconfirmed changes will be made
    to the system.
    Do you want to create a LUN? [y]: y
    Multiprotocol type of LUN
    (solaris/windows/hpux/aix/linux/netware/vmware/windows_gpt/windows_2008/xen/hyper_v/solaris_efi)
    [linux]: solaris
    A LUN path must be absolute. A LUN can only reside in a volume or
    qtree root. For example, to create a LUN with name "lun0" in the
    qtree root /vol/vol1/q0, specify the path as "/vol/vol1/q0/lun0".
    Enter LUN path: /vol/edsrvss_01_iscsi/lun0
    A LUN can be created with or without space reservations being enabled.
    Space reservation guarantees that data writes to that LUN will never
    fail.
    Do you want the LUN to be space reserved? [y]: n
    Size for a LUN is specified in bytes. You can use single-character
    multiplier suffixes: b(sectors), k(KB), m(MB), g(GB) or t(TB).
    Enter LUN size: 40873m
    You can add a comment string to describe the contents of the LUN.
    Please type a string (without quotes), or hit ENTER if you don't
    want to supply a comment.
    Enter comment string: lun for edsrvscdm-01
    The LUN will be accessible to an initiator group. You can use an
    existing group name, or supply a new name to create a new initiator
    group. Enter '?' to see existing initiator group names.
    Name of initiator group []: group0
    Type of initiator group group0 (FCP/iSCSI) [FCP]: iSCSI
    An iSCSI initiator group is a collection of initiator node names.Each
    node name can begin with either 'eui.' or 'iqn.' and should be in the
    following formats: eui.{EUI-64 address} or iqn.yyyy-mm.{reversed domain
            name}:{optional string composed of alphanumeric characters, '-', '.'
            and ':'}
    Eg: iqn.2001-04.com.acme:storage.tape.sys1.xyz or eui.02004567A425678D
    You can separate node names by commas. Enter '?' to display a list of
    connected initiators. Hit ENTER when you are done adding node names to
    this group.
    Enter comma separated nodenames: iqn.1986-03.com.sun:01:00144fa05cee.4ddb6b11
    Enter comma separated nodenames:
    The initiator group has an associated OS type. The following are
    currently supported: solaris, windows, hpux, aix, linux, netware,
    vmware, xen or hyper_v.
    OS type of initiator group "group0" [solaris]:
    The LUN will be accessible to all the initiators in the
    initiator group. Enter '?' to display LUNs already in use
    by one or more initiators in group "group0".
    LUN ID at which initiator group "group0" sees "/vol/edsrvss_01_iscsi/lun0" [0]:
    LUN Path : /vol/edsrvss_01_iscsi/lun0
    OS Type : solaris
    Size : 39.9g (42858446848)
    Comment : lun for edsrvscdm-01
    Initiator Group : group0
    Initiator Group Type : iSCSI
    Initiator Group Members : iqn.1986-03.com.sun:01:00144fa05cee.4ddb6b11
    Mapped to LUN-ID : 0
    Do you want to accept this configuration? [y]:
    Tue May 24 10:34:01 BST [lun.map:info]: LUN /vol/edsrvss_01_iscsi/lun0 was mapped to initiator group group0=0
    Do you want to create another LUN? [n]:
    lun show
    /vol/edsrvss_01_iscsi/lun0 39.9g (42858446848) (r/w, online, mapped)
    iscsi nodename
    iSCSI target nodename: iqn.1992-08.com.netapp:sn.135042183
    Set up the Solaris host to find the new lun:
    iscsiadm modify discovery --static enable
    iscsiadm add static-config iqn.1992-08.com.netapp:sn.135042183,10.21.17.30
    Check it appears on the system:
    iscsiadm list static-config
    Static Configuration Target: iqn.1992-08.com.netapp:sn.135042183,10.21.17.30:3260
    iscsiadm list target
    Target: iqn.1992-08.com.netapp:sn.135042183
    Alias: -
    ISID: 4000002a0000
    Connections: 0
    Rescan the system to check for the new iscsi disk:
    devfsadm -Cv -i iscsi
    Chris

    opps forgot to enable iscsi on the filer! Enabled and all seems to be workin!

  • Can't get Mail working properly

    I just got my new MacPro this week, and it's really great except for I can't get Mail working right. I've set up my accounts and a few emails come through, though not many, and because it's been a week since I've been online, there should be many more than that. Also, I can't send any emails at all, no matter what I do. They will eventually go into my Sent box, but I've been sending them to myself to see if it's working, and they never come through. I spent an hour on the phone yesterday with the tech support for my ISP, and they told me that I'd have to talk to the Apple techs because they didn't have current info for *Mail 3.1*, the version I have, that the latest they had was for 2.something. So I called the Apple tech support and spent 2 hours on the phone with them, and they weren't able to help me get it going correctly either. It keeps giving me error messages such as Connection Failed, or Unable to Receive Mail, saying "there may be a problem with the mail server or network" and that "the connection to the server on ... port has timed out." I'm on DSL and am always online, so I know it's not the internet connection that's the problem. Can anybody give me some advice on what I should try? Any help will be gratefully appreciated!

    Is your ISP Verizon, Demon, or Glocalnet, then it might be Apples biggest Leopard Bug in conjunction with these ISP:s POP-servers.
    The one that randomly changes the settings in "advanced" from "password" to "APOP".
    The visual result of this bug is that you will get a popup-box where Mail asks you to enter your password. (Which is useless entering, since the preference settings are changed.)
    My advice counts only when you are supposed to use "password" as the correct setting in "Advanced" and in conjunction with some ISP:s.
    Michael

  • Australia Post Shipping - Can't get to work

    Hi,
    I have read all the online support docs I can find and I just can't get Australia Post Shipping to work on our site for international orders.
    Everywhere it says:
    Choose your shipping provider
    Enter your account details
    Your customers see real time shipping costs!
    But Australia Post selection doesn't let us enter account details - does anyone know where I enter them?
    (see image at bottom)
    And after I allocated sizing, weights etc to every product it doesn't even look like it even works:
    (see how there are no options to select)
    Does anyone have any ideas on how to get it to actually work? I can't imagine BC would role something like this out if it didn't even work but from all my googling I can't see that anyone actually uses it (or at least comments on using it!)
    Would love any help

    I've try but can't get it working ether, i've download from Aur but when i'm trying to use the PKGBUILD with makepkg
    it telling me
    ==> ERROR: Cannot find the fakeroot binary required for building as non-root user.
    ==> ERROR: Cannot find the strip binary required for object file stripping.
    Last edited by jolejo07 (2013-07-05 01:45:21)

  • Flex 4 - Can not get ADG working

    Hello,
    I have just downloaded flex 4 SDK (flex_sdk_4.0.0.14159_mpl) and Flash Builder 4.
    I have created a test prroject and can not get it working with Advanced Data Grids.
    Here is my set up:  Created Project called Test, this contains one MXML file that contains an Advanced Data Grid:
    <fx:Script>
            <![CDATA[
                import mx.collections.HierarchicalData;
                [Bindable] private var _test:HierarchicalData;
            ]]>
    </fx:Script>
    <mx:AdvancedDataGrid id="test" dataProvider="{_test}">
       <mx:columns>
           <mx:AdvancedDataGridColumn headerText="COL_A" />               
           <mx:AdvancedDataGridColumn headerText="COL_B" />               
           <mx:AdvancedDataGridColumn headerText="COL_C" />               
        </mx:columns>
    </mx:AdvancedDataGrid>
    This works Okay.  I then include a libary into the project, the libary, also built with the same SDK, contains a class that contains nothing but one single method that does nothing:
    <mx:Canvas xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx"
               width="100%" height="100%">
        <fx:Script>
            <![CDATA[
                import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn;
                private function test(col:AdvancedDataGridColumn):void { }
            ]]>
        </fx:Script>
    </mx:Canvas>
    Launcing now causes the error
    TypeError: Error #1007: Instantiation attempted on a non-constructor.
        at mx.controls::AdvancedDataGridBaseEx/getSeparator()[E:\dev\4.0.0\frameworks\projects\datav isualization\src\mx\controls\AdvancedDataGridBaseEx.as:4618]
        at mx.controls::AdvancedDataGridBaseEx/createHeaderSeparators()[E:\dev\4.0.0\frameworks\proj ects\datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:4660]
        at mx.controls::AdvancedDataGrid/createHeaderSeparators()[E:\dev\4.0.0\frameworks\projects\d atavisualization\src\mx\controls\AdvancedDataGrid.as:2428]
        at mx.controls::AdvancedDataGridBaseEx/drawSeparators()[E:\dev\4.0.0\frameworks\projects\dat avisualization\src\mx\controls\AdvancedDataGridBaseEx.as:4574]
        at mx.controls::AdvancedDataGridBaseEx/updateDisplayList()[E:\dev\4.0.0\frameworks\projects\ datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:2119]
        at mx.controls::AdvancedDataGrid/updateDisplayList()[E:\dev\4.0.0\frameworks\projects\datavi sualization\src\mx\controls\AdvancedDataGrid.as:2899]
        at mx.controls.listClasses::AdvancedListBase/validateDisplayList()[E:\dev\4.0.0\frameworks\p rojects\datavisualization\src\mx\controls\listClasses\AdvancedListBase.as:3468]
        at mx.managers::LayoutManager/validateDisplayList()[E:\dev\4.0.0\frameworks\projects\framewo rk\src\mx\managers\LayoutManager.as:663]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:718]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.0.0\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1072]
    Removing the method in the libary project alivates the problem.  But I can not see why this is a problem in the first place!!??!?!?!?!?!?!?
    Can anyone help. this is really weird.

    I'm getting the same error. This is due to a bug in AdvancedDataGridBaseEx.  The offending code is:
                var headerSeparatorClass:Class =
                    getStyle("headerSeparatorSkin");
                sepSkin = new headerSeparatorClass();
    if getStyle returns null then you will be trying to instantiate  headerSeparatorClass is going to cause the "Instantiation attempted on a non-constructor" error.
    Apparently someone thought that the headerSeparatorSkin would never be null.

Maybe you are looking for

  • Device issue with WLC (excluded client)

    I have a single client that is having issues staying connected to my WLC running code 7.0.220.0 Here are the debugs, it just keeps on looping: *apfMsConnTask_0: Jul 18 10:41:06.352: 00:40:96:b8:78:7a Adding mobile on LWAPP AP 10:8c:cf:78:93:80(0) *ap

  • Fireworks Crashes / Freezes When Using the Text Tool

    Mac Octocore > OSX 10.6.1 Master Collection > Fireworks CS4 First I noticed the text box shift.Then Fireworks CS4 would freeze during any of the following: • Resize grouped text • Move text box • Click on text box to edit with type tool • Double-clic

  • Help! Dell Latitude Laptop

    Any one even install Solaris 8.0 on Dell Latitude Laptop, Can you give me help by sharing your success experience. The keyboard does not work when I install Solaris 8.0 Help! Thanks in advance.

  • How to invoke java class automatically at a fixed time everyday

    How to invoke a java class automatically using Quartz scheduler or any other simplified way I am trying to schedule a job in my web application and need to understand conceptually How to make it work using quartz . The job is scheduled to be executed

  • How to make "shutdown immediate"  command display information

    Hi All, i just shut down my database using "shutdown immeidate". it does not display any information and just stop there. i wait serveral minutes and it display nothing. i do not know that it is doing. so i just use "shutdown abort" to shutdown. does