Please review my config

Please let me know if my config is valid. Sorry i don't have visio's but from what you see, syntex , etc..does it look ok? do you see any problems with this. attached is the complete config for the ASA
Web Site Piece (External)
access-list acl_inside permit tcp any host 64.213.103.14 eq www
access-list acl_inside permit tcp any host 64.213.103.20 eq www
access-list acl_inside permit tcp any host 64.213.103.20 eq https
access-list acl_inside permit tcp any host 64.213.103.15 eq www
access-list acl_inside permit tcp any host 64.213.103.22 eq www
access-list acl_inside permit tcp any host 64.213.103.22 eq https
access-list acl_inside permit tcp any host 64.213.103.23 eq www
access-list acl_inside permit tcp any host 64.213.103.23 eq https
access-list acl_inside permit tcp any host 64.213.103.24 eq www
access-list acl_inside permit tcp any host 64.213.103.24 eq https
access-list acl_inside permit tcp any host 64.213.103.8 eq www
static (dmz,outside) 64.213.103.14 192.168.9.21 netmask 255.255.255.255 0 0
static (dmz,outside) 64.213.103.20 192.168.9.100 netmask 255.255.255.255 0 0
static (dmz,outside) 64.213.103.15 192.168.9.200 netmask 255.255.255.255 0 0
static (dmz,outside) 64.213.103.22 192.168.9.22 netmask 255.255.255.255 0 0
static (dmz,outside) 64.213.103.23 192.168.9.23 netmask 255.255.255.255 0 0
static (dmz,outside) 64.213.103.24 192.168.9.24 netmask 255.255.255.255 0 0
static (dmz,outside) 64.213.103.8 192.168.9.8 netmask 255.255.255.255 0 0
SQL Piece (VPN)
static (inside,dmz) 192.168.9.16 192.168.11.16 netmask 255.255.255.255 0 0
static (inside,dmz) 192.168.9.30 192.168.10.12 netmask 255.255.255.255 0 0
conduit permit tcp host 192.168.9.16 eq www any
conduit permit tcp host 192.168.9.16 eq 1433 any
conduit permit tcp host 192.168.9.16 eq 1434 any
conduit permit tcp host 192.168.9.30 eq 445 any
conduit permit udp host 192.168.9.30 eq 445 any
conduit permit tcp host 192.168.9.30 eq 3572 any
conduit permit udp host 192.168.9.30 eq 3572 any
conduit permit tcp host 192.168.9.30 eq domain any
conduit permit tcp host 192.168.9.30 eq ftp any
conduit permit tcp host 192.168.9.30 eq netbios-ssn any
conduit permit udp host 192.168.9.30 eq 139 any

seems a typo here?
ip nat inside source static tcp 192.168.1.10 3074 interface FastEthernet0/0 3074 <- not f0/1?
ip nat inside source static udp 192.168.1.10 3074 interface FastEthernet0/0 3074 <- not f0/1?
rest looks fine except ip sla may not be very necessary as you only have one link.

Similar Messages

  • 2811 - Please review my work

    Hi. Newbie to the Cisco world.
    I have a spare Cisco 2811 router from which I removed/disabled all Voice and WAN devices (VIC2-2FXS, VWIC-1MFT-T1, VIC2-4FXO, PVDM2-48). I would like to now use this router in a basic network configuration with 2 VLANs (voice and data) for a regional office. An illustration of that office network is below.
    Would you please review my router config and let me know if you see any problems? Besides the requirements listed, I want to make sure that the internal network is protected from the outside. Also, please let me know if there is a way to restrict RDP to y.y.y.11 only if the incoming address is from the b.b.b.0/24 public subnet (I own this entire Class C).
    Thanks in advance for your assistance.
    Requirements
    Allow all traffic between VLAN 1 and VLAN 100 and vice versa.
    Allow both VLANs to reach the Internet
    Router to provide DHCP for phones (server will provide for workstations)
    Need SSH on vty 0 4
    Allow RDP from outside to get to server on y.y.y.11 (would prefer to restrict this to particular subnet b.b.b.0/24)
    Network Illustration

    Hi, [email protected].
    As shh5455 told it should work well. But from my point of view it's better to change line "ip nat inside source static tcp y.y.y.11 3389 interface FastEthernet0/0 3389" to "ip nat inside source static tcp y.y.y.11 3389 a.a.a.7 3389" (btw the mask for outside interface is 24? Really?)
    And from securety side your router is no good. What can be good to do:
    1. Turn off telnet (espessially if you want configure router from the internet. But first need configure SSH. Look at 11 point bellow):
    line vty 0 4
     transport input ssh
    exit
    2. Make access to vty lines only from trasted IP addresses:
    access-list 2 remark ----- ACL for VTY Lines -----
    access-list 2 permit [permited IP address or pool of IP addresses]
    access-list 2 deny any log
    line vty 0 4
     access-class 2 in
    exit
    3. As I know 2811 has vty lines 5 - 15 too. So you need copy settings from vty 0 - 4 to 5 - 15.
    4. Turn on logging information (at last for local storage. But it's better to send logged information to external device). By default it turned on but buffer size is small:
    logging buffered [size_of_buffer]
    no logging console
    logging on
    And for external device:
    logging [host address]
    Also add a line for logging failed authentications:
    security authentication failure rate [number of failed tryes before sending a log message] log
    5. Make ACL for external interface with access only for needed services (btw I prefer extended ACL for this, so example by this type of ACL):
    ip access-list extended Outer_shield
     remark ------ACCESS-LIST FOR OUTER INTERFACE IN --------
     remark *** Permit access
     permit tcp b.b.b.0 0.0.0.255 host a.a.a.7 eq 3389
    ! If you want configure router from the internet
     permit tcp [trusted IP addresses or any] host a.a.a.7 eq 22
    ! If you want check your router by ICMP
     permit icmp [trusted IP addresses or any] host a.a.a.7 eq [needed parameters]
     remark *** Deny all other
     deny   ip any any [log | if you want logging all blocked connections]
    exit
    It's better to use CBAC to make "holes" in ACL above for the traffic that is going outside. So you can use lines:
    ip inspect name IF_Outside icmp router-traffic
    ip inspect name IF_Outside tcp
    ip inspect name IF_Outside udp
    ip inspect name IF_Outside ftp
    And put this all to your outside interface:
    interface FastEthernet0/0
     ip access-group Outer_shield in
     ip inspect IF_Outside out
    exit
    6. Turn off CDP at last at outside interface:
    interface FastEthernet0/0
     no cdp enable
    exit
    7. It's better to turn on aaa authentication. Right now you have made athentication via password at the lines. But you can forget to install it in the future or there can be update at the new IOS (for example at 2901 router I had a situation when with new IOS I got new line (with the name line 2) and this line by default had access by all protocols and from any interface. Only thanks to logging about fail authentications I noticed it). For turning it on use:
    username [username] secret [password]
    aaa new-model
    aaa authentication login default local
    8. Somebody can use aux interface instead of console interface for configuring router. Copy settings from con 0 to aux 0.
    9. Turn off source routing:
    no ip source-route
    10. turn off http and https servers (or at last put ACL for it):
    no ip http server
    no ip http secure-server
    or
    ip http access-class 2
    ip http authentication [aaa or local] (if you configured point 7)
    11. Well, I don't see settings for ssh. So you can use it:
    crypto key generate rsa general-keys label [lable] modulus [size] (btw this command don't shows at "show running-config")
    ip ssh rsa keypair-name [lable]
    ip ssh time-out 30
    ip ssh authentication-retries 2
    ip ssh version 2
    ip ssh logging events
    You can also tune some additional settings like bunner and so. But all what listed above is better to do.

  • I cannot sign in.  "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc."

    I applied and received an upgrade code to Redeem Mountain Lion for my new MBP. 
    I get this message when I try to Sign in to the App Store after entering the redemption content code, and also if I just try to "Sign In".   The first part of the error is true - I haven't used the AppleID with the iTunes store.  
    I received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    I also tried to re-create this appleID...(it was one suggestion I saw for this issue) It doesn't let me since the ID already exists...
    The error is:
    "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc." 
    It's clearly not a cookie issue..   Stuck...

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

  • I have an Apple ID and trying to sign in for the 1st time on iTunes. When I do, I get the message: "This Apple ID has not been used with the iTunes Store. Please review your account information." When I do, I get stuck in the same loop and can't sign in!

    I have an Apple ID and trying to sign in for the 1st time on iTunes. When I do, I get the message: "This Apple ID has not been used with the iTunes Store. Please review your account information." When I do, it brings me to the same AppleID login window, and I get stuck in the same loop. I never get to the following screen to enter my account info. What's going on?? This is MADDENING!

    If you want to use it, click Review and check your account information.  Or you could contact the store support staff if you are concerned at http://www.apple.com/emea/support/itunes/contact.html for further help.

  • Apple id has not been used with the itunes store-please review your account information

    Hello,
    Good Day.
    I bought apple ipad 2 and need help.
    I registered online and after this i am getting the error.
    apple id has not been used with the itunes store-please review your account information
    Can any one help me in this issue.
    Thanks&Regards,
    Shankar.M

    This is information you you have created an apple id.
    To use this apple id for the itunes store, you have to agree to the terms and conditions and enter in the requested information before you can use the store.
    When you create an apple id it does not mean you gain access to all apples features, you would need to create a :-
    Itunes id
    Facetime id
    Game centre id
    imessage id
    icloud id
    You can use the same email address as each login. but until you agree to each terms and conditions you wont be able to access the services.
    This is usually done the first time you access each service and sign in with your apple id.
    As to iTunes you need a little extra as they will request to confirm details as to address, etc, with the payment information they can confirm you are actually in that country you are trying to purchase from.
    Once you have added the credit card details, you can go back in a set payment method to none and remove the credit card details once you have activated the itunes on your apple id.
    Basically this message you are getting is just ADDING the feature of iTunes store to your apple id, and confirms you have not got a iTunes id yet.

  • When I try to sign in to my account on iTunes, I get the above error message, along with "Please review your account information". When I then click on "Review"

    When I try to sign in to my account on iTunes, I get the above error message, along with"Please review your account information".
    When I then click on "Review", it comesup with the page "Create an Apple Account for the iTunes Store"and presents me with the Terms Of Service.
    When I click "Agree",  It is disabled.
    Can anyone tell me why this has happened and how to resolve it?
    Please, please, please help.

    Count me in as having the same problem. I have been leaving messages in the iTunes for Mac forum where others in there also are having problems. I have been unable to access my account since 11/7/2007. E-mails with Apple have not worked and now I haven't heard back from them since Saturday. I have tried both on a Mac and Windows machine and keep receiving the same error message that:
    This Apple ID has not yet been used with iTunes.
    I last purchased music with this account on 10/30/2007. I even tried resetting my password, changing my account info, trying on a computer with iTunes 7.4, etc. I have money in that account and 150 songs and 5-6 tv shows that I cannot access. I also just purchased a new computer and cannot sync my iPod with this computer since these songs will not transfer.
    Apple really needs a phone number for technical support. Having to deal with e-mails back and forth (and waiting a day for each e-mail) is not a good business practice. Hopefully they will have a phone number in the future.
    Either way, count me in on getting annoyed that a week later, this issue has not been fixed.

  • EPrint/Apps Connectivity Troubleshooting - Please Review

    ePrint & Print Apps Connectivity Troubleshooting Steps – Please Review before posting
    This information below is provided to help you to resolve web services connectivity problems to enable your printer to print with ePrint, launch/use Print Apps, enable web services, print your web services info sheet, or add your printer to your account on the HP ePrintCenter.   Only items that have actually been shown to resolve customer issues have been included in the list.   
    For best results review and apply the applicable steps below in the order presented before posting a request for help in the forum, so that forum members who respond to your post can provide the best possible assistance.  
    Also see this post (http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile/Start-here-Web-Services-How-To-and-Troubleshoo...) for additional “how-to” and links to important web services information, FAQs, and Help content.
    Before applying the troubleshooting information below:
    If you receive an “Invalid code” message when you try to add your printer to your HPePrintCenter account, but aren’t having any other problems using ePrint and Print Apps, you most likely only need to reprint your web services info sheet from your printer.  Your printer's claiming code that is printed on the info sheet can only be used to add your printer to your ePC account for 24 hours after printing the info sheet.  Reprinting the info sheet doesn't change your claiming code, it just re-enables your printer to be added to your ePC account for another 24 hours.  See here for the steps to re-print your web services info sheet.
    If you enabled Web Services on your printer but the Web Services info sheet containing your printer’s claiming code did not print, your printer has not fully completed its web services registration and will not print ePrint emails or print app content.  In this case you will not receive any error messages on the printer and you can view your printer’s email address on the printer front panel display.  If your web services info sheet does not print within five minutes of enabling web services, try removing and enabling web services again.  If your Web Services info sheet still does not print after re-enabling web services, you will need to wait and try again later.   If you do receive error messages when trying to enable web services, continue to the web services connectivity troubleshooting steps below.
    If you have ePrint emails that aren’t printing, please first ensure you confirm your emails meet ePrint format/attachment requirements.  Review the ePrint email requirements in the ePrint FAQ/Help on HP ePrintCenter at www.hpeprintcenter.com.  You can also check your printer’s connectivity status and ePrint job list on HP ePrintCenter if you have created an account there and added your printer.  (Always use the “Refresh” button on the ePC page, not your browser refresh button, to view updated printer connection status on the HP ePrintCenter.)  
    A.     Easy steps that can be surprisingly helpful – try these first:
    Verify your network’s internet access is working – on a computer connected to your network, use a web browser like Internet Explorer or Firefox to view a web page.  If you can’t access the internet your internet service provider may be having a service issue that is affecting ePrint/Print Apps. 
    Go to HP ePrintCenter and look in the News section (http://h30495.www3.hp.com/news/ ) to see if there are any service status updates.  In some cases, you might just need to wait a little while and try again.  
    Turn wifi off and then on again on your printer and wait for a minute for your printer to reconnect to your network   
    Reboot your printer - turn power off and then on) and wait for a minute for it to reconnect to your network
    Reboot your router - remove the power cord from the back of the router, wait a minute, and then plug it in again and wait for at least a minute for the router to power up and all your devices to reconnect.
    B.      Check your printer’s IP address to confirm it is connected to your network.   
    Verify that your printer has a valid IP address (for example, typically 192.168.x.x on a home wireless network) by viewing the network settings screen in the Networking or Wireless menu on your device’s front panel display, or by printing a Printer Status Report (usually found on the Tools menu).  If your printer does not have a valid IP address re-run the network setup process for your printer.   For more help with setting up or troubleshooting your HP printer’s connection to a wireless network, go to http://www.hp.com/go/wirelessprinting
    C.      Confirm that both your printer and router have up-to-date firmware:
    Having up-to-date firmware on your printer or router is important to use web services.  
    Check to ensure you have the latest firmware (FW) for your printer by checking for product updates, usually found under the “Web” or “Preferences” options on your printer’s menu.  If your printer finds an update but is unable to complete downloading/installing it, ensure your router FW is up to date and try again.  If your printer continues to fail to complete the download of an available FW update, continue to “E. Set a Manual IP/DNS Server” below.
    Check to ensure that you have the latest firmware for your router – review your router documentation/help (or the router manufacturer’s web site) for information on how to check for and install firmware updates.  
    Resolve temporary connection failure after printer firmware upgrade    
    Some printers may experience connection failure after firmware upgrade.  This is because the printer reboots itself after firmware updates and needs to re-establish network connection.   
    Check to ensure the printer has been given a valid local IP by your router (eg. 192.168.x.x if DHCP is used) before trying to access print apps or using ePrint.   You can see your printer’s IP address by going to the printer’s Wireless or Network setup menu.
    If you don’t see an IP, you may have to restart the printer.  In some cases, you may have to remove and re-enable web services to re-establish your connection.
    Refer to the FAQ & Help section on HP ePrintCenter for more information on how to remove and re-enable web services from your printer.
     Allow your printer enough time to reconnect to your network after you try any of the steps above, before you try ePrint or Print Apps again. 
    D.     Remove and Re-enable Web Services and Restore Factory Defaults
    Remove and then re-enable web services on your printer.  If the web services info sheet does not automatically print within a few minutes of re-enabling web services, web services has not been fully enabled on your printer.   You may need to wait and remove and re-enable web services again in few hours to allow the issues affecting your printer’s communication with the cloud servers to clear up.  Until a web services info sheet prints out your web services registration is not complete.   Complete the steps below while your printer is connected to the Internet.
    Photosmart:  The Remove Web Services option is available either under the Setup>Wireless>Web Services menu option, or the Setup>Web option, or via the ePrint icon on the printer front panel. 
    On the eStation select the Menu button on the eStation display (to the right of the Home and Back buttons at the top left when the display is docked on the printer); Select Settings;  Select "Web Services”; Select the “Web Services” checkbox. 
    Officejet:  Use Setup > Web Services Setup > Restore Factory Settings to remove Web Services from the printer. 
    LaserJet: Print a configuration page from your printer to locate the IP address. Open a Web browser and type the product IP address into the address line. The HP-embedded Web Server will open. Click the HP Web Services tab. Select the option to remove Web Services.
    2.  Restore Factory Defaults on your device.  If removing and re-enabling web services does not resolve the problem, restore factory defaults on your printer and try again.  The factory default option is usually found in the Setup>Tools menu on your printer.   Do the following on your device:
    Remove/Disable Web Services 
    Restore factory defaults/settings (depending on the printer this is found under the Setup>Tools menu, or the Setup>Web Services menus, but varies by printer) 
    If prompted, re-do initial setup of your device and add it to your network
    Re-enable Web Services 
    Once the Web Services information sheet is printed, use the printer claiming code to add your printer to your account on ePrintCenter
    E.      Set a Manual IP/DNS Server settings on your printer
    Setting a manual IP address/DNS Server on your printer will resolve web services connectivity issues that can occur on some networks with some routers.  Note:  Setting a manual IP/DNS Server may be particularly helpful on networks using DSL/VIOS routers.   
    Please read the instructions below completely before applying them.  You should not attempt these on your own if you don't understand networking basics.  Most of us have a "techie" buddy/friend/family member...if you're not comfortable this might be a good time to call him/her, or contact HP support to assist you.  
    Before you begin, first remove Web Services from your printer if it has been enabled.  (See section D. 1. above.)   Removing web services will remove your printer from your HPePrintCenter.com account (if you have previously set up an account and added it).  When you re-enable web services after completing these steps you will have a new ePrint email address and need to add your printer to your ePC account again. 
    How to set a manual IP address/DNS Server on your web-connected printer:
    Print a Network Configuration Page from the printer front panel.  On some printers this will be under Wireless>Wireless Settings, and on other models use the “Print Report” option from the Wireless status screen accessed from the wireless icon on the printer home screen.   Note the printer's IP address that is listed in the IPv4 section of the report.  On most printers you can also see the printer’s IP address from the Wireless menu, or on the Wireless status screen.  
    Type that IP address into your browser address bar (where you would normally type a web page URL) and hit enter - this will load the printer's internal settings page (also known as an Embedded Web Server, or EWS)
    Select the “Network” or “Networking” tab (the label varies depending on printer model) from the tabs along the top of the screen in the EWS
    Depending on your printer model, the next step(s) will vary:
    Select the “IPv4” option from along the left side of the Networking screen   
    or
    Select the “Networking” option from the left side of the screen
    Then select the “Network Address (IP)” option from the left side of the screen
    The screen you end up on should be the “IP Address Configuration” screen.  That screen allows you to choose an Automatic or Manual (i.e., fixed) IP address for your printer, as well as Subnet Mask and Default Gateway values.   You will use this screen to set a Manual IP address and DNS Server for your printer.  
    To continue:
    Select the radio button next to “Manual IP”
    Select the “Suggest a Manual IP Address” option below the IP address fields.  The Manual IP address fields will automatically populate with suggested values after a few moments.
    Select the “Manual DNS Server” radio button in the DNS Address Configuration section 
    Enter the address just entered in the “Manual Default Gateway” into the “Manual Preferred DNS Server” field.  Leave the “Manual Alternate DNS Server” entry blank.
    Carefully double-check the values you entered to make sure they are all correct. 
    Click 'Apply'
    Save any open documents and close any web browsers on any computers
    Turn off the printer and unplug the router. 
    Plug in the router, wait for it to start up and for status lights to settle down (approximately a minute at least), then turn on the printer.
     After the printer has connected to your network, enable web services on your device, accept any firmware updates that may be offered, and add your printer to your account on HPePrintCenter. 
    In some cases you might need to add the printer to your computer’s Printer/My Printers folder again, after you set the new manual IP address.   If you have problems printing to your printer, simply use the option to add a printer, select the Networked printer type, and complete the add printer wizard.  You will not need to reinstall any printer software on your computer.  
    F.       Check for port/proxy issues  
    Note:  These issues are not commonly experienced, and primarily affect users in business environments. 
    ePrint and Print Apps require access to establish connections out to HP servers via ports 80, 443, 5222 and 5223.   Primarily in some business environments, network administrators may block devices initiating communication from within the firewall on some of these ports.  Please check with your network administrator or Internet Service Provider to make sure those ports are not blocked on your router/firewall for outward-bound communication initiated by your printer. 
    Important Note:  We are not suggesting that you set up port forwarding on your router to open these ports for connections initiated from outside your network to your printer.  That is not required and could be a security risk for your network. 
    2. In some business environments the local network which the printer is connected to may require a proxy setting to access the Internet.   Check with your IT Administrator or Internet Service Provider (ISP) for proxy setting if necessary.  Most ISP for home users do not require proxy configuration for Internet access.  (Note: HP web connect printers currently do not support secure proxy servers)  
    To set a proxy on an Officejet All-in-One, see this document:  http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02524629&cc=us&dlc=en&lc=en&jumpid=reg_R1002_US... 
    If the steps above have not resolved your ability to use ePrint/Print Apps, please submit a question in the here in this support forum, confirming you have completed this connectivity troubleshooting and identifying the error/problem you are experiencing.  Thank you.
    I am an HP employee.
    This question was solved.
    View Solution.

    eprint has to be the biggest boondoggle ever created. HP should be embarrased by their incompeetance - been two weeks and I have not been able to access the feature. Told a number of times (after LONG wait on phone) that there were problems with their servers and to try again in a day or so - very helpful and professional. Feel like I'm dealing with "Dogbert" customer support in Dilbert cartoon world. Can't log on using snapfish or any other means. I guess I just have to give up and recognize that HP just doesn't care - false advertising and promotion. No satisfaction.

  • Error when Submitting book - Please review your billing information

    I get the following error message when I submit a book for printing:
    Your account information has changed.
    Please review your billing information and approve it.
    I went here to review my order status but I did not have any orders:
    https://mercury.apple.com/WebObjects/OrderStatus
    I reviewed my billing information on the web located here:
    https://myinfo.apple.com
    And it is correct
    Any thoughts?

    I got the following information from apple - following this fixed my problem:
    1. Visit http://myinfo.apple.com and choose your country and preferred language from the pop-up menus. Then log in using your Apple ID and password.
    2. Click Address Book on the left. If you see any blank addresses under Shipping Addresses, make the visible address your default, and then delete the blank address.
    3. Click Phone Numbers on the left, delete all phone numbers, and save your changes. When you successfully place an iPhoto order, your phone number will be copied from iPhoto to My Info.
    4. Check Apple ID, Email, Subscriptions, and Contact Prefs and make any necessary corrections. Save your changes.
    5. Now open iPhoto.
    6. Select a photo and choose Order Prints from the Share menu.
    7. Click Account Info and sign in using your Apple ID and password. If you are unable to log in, try changing your password in My Info using the directions in step 1 above. Then return to step 6 and try again.
    8. Click Edit Shipping and choose Add New Address from the Address pop-up menu.
    9. Add the desired address into the fields, making sure to create a new label, such as "Home." Then select "Make this my default address" and click OK.
    10. Now delete any other addresses listed by selecting them and clicking the Delete This Address button. You should now have only your default "Home" shipping address left.
    You should now be able to submit your iPhoto order successfully. If the difficulty persists, please reply to give me the exact error message you see. I will do my best to help you resolve the issue. Thank you for your patience.

  • Trying to sign in to itunes store via windows xp...get to id and pwd and then it says "This Apple ID has not yet been used with the itunes store...please review acct. info"  Well how can I use it if you don't let me log in!?

    Tyring to sign in to iTunes store viz windows XP...I get to entering my ID and PWD and then the message pops up "This Apple ID has not yet been used with the iTunes store...please review acct. info."  HELP!  I have cleared DNS, checked proper date & time and deleted SC folder from programs like support suggested--all to no avail.

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

  • TS1424 my Apple id is not working on itunes store....itunes reply (please review your account information.....) And Demanding Credit Card Information.....But I dnt Have Any Credit Card......

    my Apple id is not working on itunes store....itunes reply (please review your account information.....) And Demanding Credit Card Information.....But I dnt Have Any Credit Card......

    For the CC type, select None and verify your name and address.

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • A report question please review !!!!!!!!!!!!!!!!!!!!!!

    Hi
    I am wring a report and I have a question about few things.
    I am selecting some data from different tables, some of the
    columns are: days_past_due (which is a calculated column, it's =
    to sysdate -due_date) and I have another column balance_due, Now
    I want to have few other columns like (31-60,60-90,90-180) as
    buckets and these should be calculated also like for example if
    it's for 1-30 days I want to sum up the balance_due columns if
    the days_past_due is bettwen 1-30 , Please review if you can help
    alpha

    Please do the following:
    1. Add two columns "Account Name" and "- Account Document"."Document Name" to the report.
    2. Create the following formula on "Account Name" column
    CASE WHEN ("- Account Document"."Document Name" LIKE '%string1%' AND "- Account Document"."Document Name" LIKE '%string2%' )THEN "Account Name" ELSE '0' END
    3. Put a filter on "Account Name" != 0 (Filters out all the Accounts which do not have the Document Name like in string1 and string2.
    Hope this helps and please mark it if it does.

  • This account has not yet been used with itunes store.Please review your account information

    I get this message everytime I try to sync my iTunes to my iPhone "This account has not yet been used with itunes store.Please review your account information" When I originally bought apps I used my dads iTunes account, but my dad recently passed away and his accounts have (or should have) been closed. I just recently set up a new Apple I.D. and tried to use this, but that's when I get the message.
    iTunes authorization automatically defaults to my dads Apple I.D., so I enter my new I.D. and the message appears "This account has not yet been used with itunes store.Please review your account information".
    I'm frustrated, any ideas? I really don't have the money to pay Apple to fix this!
    Thanks

    I changed my dads password, then went back to sync my apps and when it came to the Authorization, I entered his account name and the new password (which was by the way accepted and changed correctly) to have it come up on the screen as the incorrect password...REALLY!!! I went back and changed the password again...guess what? Same result "inncorect password".
    As I mentioned my dad PASSED AWAY, there is no way I can ask him what his password originally was, i can't accesses his email account as it no longer exists.
    What am I supposed to do, this is very frustrating.
    If I use my new account that's in my name, the Authorization screen just keeps asking for my Dads account.

  • I erase my mac book pro to factory setting and cannot re-install the software. I received a message saying my Apple ID has not yet used with the App store. Please review your account information. Could anyone help please. I need to re-install my os.

    I erase my mac book pro to factory setting and cannot re-install the software. I received a message saying my Apple ID has not yet used with the App store. Please review your account information. Could anyone help please. I need to re-install my os.

    Use Internet Recovery. You shouldn't need an AppleID. http://support.apple.com/kb/ht4718
    Internet Recovery will install the OS that shipped with the Mac. You can then upgrade to Mavericks if that was not it.
    Do you have an App Store account? Did you ever use it to install the OS?

  • I created an apple id online and not on itunes, my email said the apple id was successfully created but when i used it in itunes it said "This apple idhas not been used in itunes please review your account information "

    I created an apple id online and not on itunes, my email said the apple id was successfully created but when i used it in itunes it said "This apple idhas not been used in itunes please review your account information "

    Hi rixa03!
    I have a couple of troubleshooting steps for you to try to resolve this issue. First, you should try closing the app according to the instructions found on this website, which is a troubleshooting assistant for the iPad:
    Apple - Support - iPad - iPad Troubleshooting Assistant
    http://www.apple.com/support/ipad/assistant/ipad/#section_3
    If the issue persists, you may need to try resetting the iPad, the instructions for which can be found here:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

Maybe you are looking for