Updated with NO SIM - HELP!

Quick summary: Living in France for 3 months and put AT&T account on hold. They told me that if I accidentally made a call from my phone it would automatically take me off hold and resume my monthly AT&T service fees. So I took the card out. All summer I have been transferring stuff to the phone and using it basically as an iTouch. I just updated my iTunes to get either a podcast or show that required the update and then went to update the phone too to transfer that content to the phone. Whoops. Didn't know you couldn't update the phone without the SIM b/c I have never not had a SIM in there while updating.
From what I have read, to fix this you install the SIM used to originally activate the phone. That was my husband's old card which he no longer has as he handed the phone down to me. Is there anything I can do to get my phone to connect again?
Thanks so much for any help you guys can provide.
Shannon

I have an AT&T SIM in the phone right now and it is not working. Regarding the need to have the original SIM used to activate the phone, I am not sure that is quite right. The SIM used to activate my phone was used for only about a month and then my husband decided to put the SIM he had in his blackberry into the iPhone and use it for work. He then discovered that his company did not support email on the iPhone so he went back to the blackberry and gave me the phone. I switched to AT&T from Verizon, transferring my number, and AT&T gave me a new SIM and I bought a data plan. Since all this I have updated the phone at least twice and never had this problem. I made these two updates with MY sim in the phone and not my husband's first temporary SIM which is long since gone.

Similar Messages

  • Update with subqueries tuning help

    I have the following update that does the required job, but undersdtandably it is running really slowly.
    update com_mat_stores
    set MST_QTY_ISS_TY =  (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_NO_UNITS) ,
                                                                   '20',  DECODE(SUBSTR(COST_NO_UNITS,1,1), '-', COST_NO_UNITS, COST_NO_UNITS*-1),
                                                                   '21',  COST_NO_UNITS)),0) STK_QTY
                                        FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                        AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                        OR (COST_CSY_COSTEL IN ('20','21')))),
        MST_VAL_ISS_TY = (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_VALUE) ,
                                                                         '20',  DECODE(SUBSTR(COST_VALUE,1,1), '-', COST_VALUE, COST_VALUE*-1),
                                                                         '21',  COST_VALUE)),0) STK_VAL
                                        FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                        AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                        OR (COST_CSY_COSTEL IN ('20','21'))))
    where  MST_QTY_ISS_TY <>  (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_NO_UNITS) ,
                                                                   '20',  DECODE(SUBSTR(COST_NO_UNITS,1,1), '-', COST_NO_UNITS, COST_NO_UNITS*-1),
                                                                   '21',  COST_NO_UNITS)),0) STK_QTY
                                        FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                        AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                        OR (COST_CSY_COSTEL IN ('20','21')))) 
    OR  MST_VAL_ISS_TY <> (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_VALUE) ,
                                             '20',  DECODE(SUBSTR(COST_VALUE,1,1), '-', COST_VALUE, COST_VALUE*-1),
                                             '21',  COST_VALUE)),0) STK_VAL
                                        FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                        AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                            OR COST_CSY_COSTEL IN ('20','21')));I managed to get a select for the records changed to use an inline view and this is much faster (see below), but I cannot get this select translated into a update statement. Any help or ideas how to change this. The 2 tables in question are quite large COM_MAT_STORES has 34k and com_costs has 90k that match the criteria (7 million in total). I have checked
    SELECT MST_ID, MST_MAT_STOCK_CODE, MST_STO_CODE, MST_QTY_ISS_TY, MST_VAL_ISS_TY, STK_QTY, STK_VAL
                  FROM COM_MAT_STORES,  (SELECT  COST_MST_ID CMST,
                                         NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_VALUE) ,
                                                                         '20',  DECODE(SUBSTR(COST_VALUE,1,1), '-', COST_VALUE, COST_VALUE*-1),
                                                                         '21',  COST_VALUE)),0) STK_VAL,
                                         NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_NO_UNITS) ,
                                                                         '20',  DECODE(SUBSTR(COST_NO_UNITS,1,1), '-', COST_NO_UNITS, COST_NO_UNITS*-1),
                                                                         '21',  COST_NO_UNITS)),0) STK_QTY
                                        FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                        AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M') OR (COST_CSY_COSTEL IN ('20','21')))
                                        GROUP BY COST_MST_ID)
               WHERE CMST(+) = MST_ID
               AND (NVL(STK_VAL,0) <> MST_VAL_ISS_TY OR NVL(STK_QTY,0) <> MST_QTY_ISS_TY);Here is the explain plan of the update statement
    UPDATE STATEMENT     CHOOSE     56     34119     443547                         
    UPDATE COMDBA.COM_MAT_STORES                                             
    FILTER                                             
    TABLE ACCESS(FULL) COMDBA.COM_MAT_STORES     ANALYZED     56     34119     443547                         
    SORT(AGGREGATE)               1     37                         
    TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
    INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              
    SORT(AGGREGATE)               1     37                         
    TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
    INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              
    SORT(AGGREGATE)               1     37                         
    TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
    INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              
    SORT(AGGREGATE)               1     37                         
    TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
    INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              

    As a first step you can remove the unwanted sub queries.
    update com_mat_stores
       set (
            mst_qty_iss_ty,
            mst_val_iss_ty
           ) = 
                select nvl(sum(decode(cost_csy_costel, '23',  abs(cost_no_units),
                                           '20',  decode(substr(cost_no_units,1,1), '-', cost_no_units, cost_no_units*-1),
                                    '21',  cost_no_units)),0) stk_qty,
                nvl(sum(decode(cost_csy_costel, '23',  abs(cost_value) ,
                                    '20',  decode(substr(cost_value,1,1), '-', cost_value, cost_value*-1),
                                    '21',  cost_value)),0) stk_val                                                              
           from com_costs
          where cost_cost_year = 2009
            and cost_mst_id = mst_id
            and (
                 (cost_csy_costel = '23' and cost_trans_code = 'm')
               or
              (cost_csy_costel in ('20','21'))
    where (mst_qty_iss_ty, mst_val_iss_ty) !=
                   select nvl(sum(decode(cost_csy_costel, '23',  abs(cost_no_units) ,
                                                                   '20',  decode(substr(cost_no_units,1,1), '-', cost_no_units, cost_no_units*-1),
                                                                   '21',  cost_no_units)),0) stk_qty,
                          nvl(sum(decode(cost_csy_costel, '23',  abs(cost_value) ,
                                                              '20',  decode(substr(cost_value,1,1), '-', cost_value, cost_value*-1),
                                                              '21',  cost_value)),0) stk_val                                                              
                              from com_costs
                             where cost_cost_year = 2009
                               and cost_mst_id = mst_id
                               and (
                                    (cost_csy_costel = '23' and cost_trans_code = 'm')
                                     or
                                    (cost_csy_costel in ('20','21'))
                             ) 

  • Update with EAP SIM

    Free Mobile, provider in France, uses now Eap-sim on his network Free Wifi!
    The request of this compatibility will be now important from french customers!
    I see that Xperia S has this Eap-sim while it is absent in Android 4!
    So it is Sony who has added it!
    On my Xperia Mini St15, I have EAP 802.1x but not SIM
    Can we expect it on our future updates (Android 4 for 2011 phones)? I hope...:smileywink:
    Regards

    It is very true that Xperia S support this. Other phones do however not support it at this point and I have no information regarding future changes for these phones.
    Since Xperia S has it I guess it's not impossible but I do not know if there are any plans for the other phones to get it or not. We have to wait and see I guess. I will try to remember to post again if I get any new info on this.
    What do you think about this forum? Let us know by doing this short survey.

  • I had already update mi new factory unlocked iPhone 4S to iOS 5.1.1 and I still having problems with "invalid sim". I'm from Argentina and here we don't have official service. PLEASE HELP ME, WHAT CAN I DO??? In Argentina is too expensive an iPhone 4S.

    I had already update mi new factory unlocked iPhone 4S to iOS 5.1.1 and I still having problems with "invalid sim". I'm from Argentina and here we don't have official service. PLEASE HELP ME, WHAT CAN I DO??? In Argentina is too expensive an iPhone 4S. Please I need help to continue believing in Apple. Thanks a lot. If anybody speak spanish better.  

    Was it purchased from an official Apple Store, not a reseller?  Only Apple Stores sell official factory unlocked phones.  The others sell hacked to unlock phones, and the unlocking is unstable.
    Try these steps, as needed:
    1. Reset phone - press both home and on/off buttons for at least 10 seconds until the Apple logo appears.
    2. Settings > General > Reset > Reset Network Settings.
    3. Replace SIM card (and reset network settings again)
    4. Restore Phone in iTunes using a backup
    5. Restore in iTunes as new, without using a backup

  • My iphone 4 with TURBO SIM .i update it to IOS 5 and now i cant continue restoring my iphone !! any1 help plz !!

    hello
    im using unlock iphone with turbo sim card. i update my iphone to the new version IOS 5 and some bug were found. so, i restore my iphone to standard iphone. but, my iphone can not connect to itunes anymore, it said that the SIMcard inserted does not appear to be supported. so. i can't continue restoring my iphone. what do i need to do??? can anyone help me....

    You need a SIM from the original carrier.

  • HT201401 I am using iphone 3s after updating my phone it is not reading the sim i tried with different sim's but none worked can you please help me

    I am using iphone 3s after updating my phone it is not reading the sim i tried with different sim's but none worked can you please help me

    There is no iPhone 3s.
    What is displaying on the device?
    Has the device ever been hacked or jailbroken?

  • Please! Help me with my SIM card problem!

    When I first bought the Blackberry Flip 8220, I was constantly having a problem with my SIM card and the signals. My signal would constantly drop down to none and would go into SOS mode. Not only that, but it would also say either "SIM Card Error,""Invalid SIM Card," or "Insert SIM Card." So, the RIM sent me a new replacement for the cellphone. For the first few days, it worked just fine but, as the time passed by, the phone started to have the similar problem. What's worse is that as the time passed, the more problem started to show up! Now, my side buttons aren't functioning and the rate of my phone experiencing the problem with the SIM card and the signals, similar to the ones mentions above, has risen drastically. For now, the side buttons aren't my priority but what I would like to find out is how come my phone is experiencing such problem with the SIM card and how I can fix it. Please, help me! Due to this problem, I can't even receive the international calls.

    Hi and Welcome to the Forums!
    I don't believe that RIM issues SIMs...the carriers issue the SIM cards since these activate your phone on their network. RIM doesn't care what network you use...but the carriers do
    So, what I'd suggest is that you go see your carrier and find out what's going on with the bad SIM. It is also possible that the device itself has a problem with the SIM card contacts...in which case the advice is the same, your carrier provides your service, so going to see them is the right thing to do.
    Good luck and let us know how it goes!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I bought the company unlocked phone from apple store Canada. It was originally loaded with software 4.2 and was working fine here in SaudiArabia.  Yesterday I updated with IOS 5.0.1.  Now it is showing that sim is not valid.  The same sim works in other p

    I bought the company unlocked phone from apple store Canada. It was originally loaded with software 4.2 and was working fine here in SaudiArabia.  Yesterday I updated with IOS 5.0.1.  Now it is showing that sim is not valid.  The same sim works fine in other phones.

    Here's and update on my problems and here are are some screen shots of the types of problems I've been having since the v5.0.1 update. Keep in mind these are native apps and I have tried the rebuild phone crap many times, nothing helps.
    This is screen shot of a what happened when I tried to use my camera one day, both the front and back cameras were all black. I had to power cycle the phone to get rid of this problem. The cameras appeared to be working correctly, I could focus and zoom but it was all black.
    Here is an image of what happened when I searched for something in a map. This is after I picked the choice I wanted, the keyboard disappeared but the list didn't. I had to force close the app and restart it for this problem to go away. Who knew five bars on ATT was possible.
    And finally this is the messaging app, although you would not know it. I had to return to home screen (after a long pause for it to process the button push) and return to the messaging app. This happens all the time with the messaging app and the notifications sounds drive me crazy. If  i'm using the phone, say browsing the web and I get an incoming message its almost 100% of the time the messaging app will screw up. The sound will play at the wrong time or not at all, message will show up in notifications and diasapear in message app or Ill have a problem like this:

  • I bought an iphone4s before my carrier put my sim in it i updated itunes now wont work with my sim

    I bought an iphone4s before my carrier put my sim in it i updated itunes now wont work with my sim

    Hello Aaron1658,
    It sounds like you are unable to activate your phone with the SIM provided to you by your carrier. Try these steps in the following article to help you troubleshoot what it happening, named:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/ts3424
    Symptoms
    Your iPhone may display one of the following messages when you attempt to activate it:
    "Your iPhone could not be activated because the activation server is temporarily unavailable."
    "The SIM card inserted in this iPhone does not appear to be supported"
    "The iPhone is not recognized and cannot be activated for service."
    "iTunes was unable to verify your device."
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to a known-good Wi-Fi network if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Apple for assistance.
    If this is not what you are referring to, would you provide some more information about what is happening? Any error messages, prompts, etc.?
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Sim problems- I updated my ipad2 to ios7 after that , iam facing problems with my sim, it showing no sim card after inserting sim. there is no prbolem with my sim.

    I updated my ipad2 to ios7 after that , iam facing problems with my sim, it showing no sim card after inserting sim. there is no prbolem with my sim.

    arun kumar chenna123 wrote:
    i have updated my iphone to ios4.1. after installation, it is showing as"The SIM card inserted in this iPhone does not appear to be supported. only compatible sim cards from a supported carrier may be used to activate iphone. Please insert the sim card that came with your iphone...."
    how to solve this problem. I don't have any sim cards that came with iphone.
    Please help out to solve this problem.
    It sounds like the phone was hacked or jailbroken, and updating it locked it to the original carrier. As it is not possible to update to any version other than the current one (5.1) the fact that you updated to 4.1 pretty much confirms the phone was hacked. There is no solution that you can get in an Apple forum.

  • HT1414 i can't activate my iphone using itunes after i update with ios 5.1 . it shows no sim installed . what i'll do????

    i can't activate my iphone using itunes after updating with ios 5.1.  it shows no sim installed. what i'll do??? please! help me.

    phone your network provider,and ask them to send you a new sim card.

  • My ipod touch is stuck on the 4.2.1 software, its a 3rd gen as well i was just wondering why i can not get the lastest update can you please help me with this issue

    i have been having an issue with updating my ipod touch for some time now and i can not seem to get it to update to the lastest update. it is stuck on 4.2.1 software and i can not update it to 4.3 or any other ios software update. can you please help me to solve this issue.

    It sounds like you actually have a 2G iPod Touch which can only go as high as iOS 4.2.1.  If it's an 8 GB iPod Touch it's definitely a 2G iPod Touch as there was never such a thing as a 3G 8 GB iPod Touch. See this article to help verify what generation iPod Touch you have.
    Identifying iPod models
    B-rock

  • I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).

    I need to know which update(s) I can apply to help stabalize the system.

    Typing the body of the thread message in the title, huh? -)
    I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).
    Only Apple could hamstring and tie Mac OS to Windows. There isn't any other than whether you can download the drivers into Windows (you can) but Apple puts a block on the installer setup even if your mac does not support it.
    Windows 7 needs at least Boot Camp 3.1 and 3.3 is what you should already have. And you are not getting security updates if you don't have at least 10.6.8 as was pointed out.  --- you arent using Software Update as you should. And you should backup and clone Mac (and Windows) as well.
    You need Mountain Lion to use Boot Camp 5.x which supports Windows 7 & 8 and 64-bit.
    I would upgrade to Lion if you can realizing that Rosetta and PowerPC are no longer supported though.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    http://www.apple.com/support/bootcamp/
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    Boot Camp 5.0 Drivers
    http://support.apple.com/kb/DL1638
    Frequently asked question
    http://support.apple.com/kb/HT4818
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdfcreate a Windows support software (drivers) CD or USB storage media
    http://support.apple.com/kb/HT4407
    The Boot Camp Assistant can burn Boot Camp software (drivers) to a DVD or copy it to a USB storage device, such as a flash drive or hard drive. These are the only media you can use to install Boot Camp software.
    https://support.apple.com/kb/HT4569
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.8.pdf
    Instructions for all features and settings.
    Boot Camp 4.0 FAQ Get answers to commonly asked Boot Camp questions.
    Windows 7 FAQ Answers to commonly asked Windows 7 questions.
    http://www.apple.com/support/bootcamp/
    Is there a download of the Boot Camp 5 Support Software if I'm not using OS X Mountain Lion v10.8.3?
    Yes, you can download the Boot Camp 5 Support Software here.
    http://support.apple.com/kb/DL1638
    How do I use the Boot Camp 5 Support Software I downloaded from the web page?
    The download file is a .zip file. Double click it to uncompress it.
    Double-click the Boot Camp disk image.
    Copy the Boot Camp and "$WinPEDriver$" folders to the root level of a USB flash drive or hard drive that is formatted with the FAT file system (see question below for steps on how to format).
    Install Windows, leaving the flash or hard drive attached to the USB port of your Mac.
    Installation of the drivers can take a few minutes. Don't interrupt the installation process. A completion dialog box will appear when everything is installed. Click Finish when the dialog appears.
    When your system restarts your Windows 8 installation is done.
    Note: If the flash drive or hard drive was not attached when you installed Windows and was inserted after restarting into Windows 8, double-click the Boot Camp folder, then locate and double click the "setup.exe" file to start the installation of the Boot Camp 5 Support Software.
    How do I format USB media to the FAT file system?
    Use Disk Utility to format a disk to use with a Windows computer. Here's how:
    Important: Formatting a disk erases all the files on it. Copy any files you want to save to another disk before formatting the disk.
    Open Disk Utility.
    Select the disk you want to format for use with Windows computers.
    Click Erase, and choose one of the following from the Format pop-up menu:
    If the size of the disk is 32 GB or less, choose MS-DOS (FAT).
    If the size of the disk is over 32 GB, choose ExFAT.
    Type a name for the disk. The maximum length is 11 characters.
    Click the Erase button and then click Erase again.
    Which versions of Windows are supported with Boot Camp 5?
    64-bit versions of Windows 8 and Windows 7 are supported using the Boot Camp 5 Support Software. If you need to use a 32-bit version, you need to use Boot Camp 4 Support Software, and you must use Windows 7. 32-bit versions of Windows 8 are not supported via Boot Camp. For a complete list of Windows OS support, click here.

  • After hours of back-up, downloading and uploading...I am now updated with all the latest Mac software. However, I no longer have access to Excel and Word. Is there a way I can access my documents in either of those? Help, please.

    After hours of back-up, downloading and uploading...I am now updated with all the latest Mac software. However, I no longer have access to Excel and Word. Is there a way I can access my documents in either of those? Help, please.

    If you have older versions of excel and word that previously ran under the Rosetta emulator (allows PowerPC code to run on Intel system), they will no longer work with Lion.
    You can use the Apple programs Pages and Numbers to access the files. They can be bought and downloaded from the App store. NeoOffice is available at http://www.neooffice.org/neojava/en/index.php which has Lion support. OpenOffice doesn't talk to Lion support, it's at http://www.openoffice.org/

  • TS1881 Since my last update with itunes I can no longer sync my pictures on my phone to my computer  Can someone help?

    Since my last update with itunes June 17,  I can no longer sync my pictures on my phone to my computer  Can someone help?

    Do other irems sync to the iPod?
    If a PC try:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    Does the iPod in in My Computer?
    If yes canyo see the photoe in the DCIM folder in My Computer>iPod>DCIM?
    Other uses have reported the same problem

Maybe you are looking for

  • Can someone recommend a replacement hard drive for my June 2009 17"MBP?

    I need at least 750GB. My current HD is 500GB but I only have 90GB remaining as I have a lot of videos stored on the machine. Can someone recommend a HD that has at least 750GB of space and performs well with a 17"MBP?

  • Calling arbitrary method with expression language

    I'm new to JSP, but have a strong background in Java. I've created a bean that I've included on a JSP page that is meant to manage access to a database. On this bean I have a method public int createNewRecord();which will create a new record and retu

  • Unconfirmed Sales Order

    Hi, When we activate Credit check, upon saving of the order, if credit limit exceeds, the order is blocked and Credit Team can view the orders blocked. In our case, there are some Orders that are still for confirmation (not yet final), hence, should

  • Billing relevance in MTO with assembly processing

    Hi, can anyone provide advise on this? I created a service material (DIEN) that will generate a production order in the sales order.  However, if i set the billing relevance to 'Not relevant', the production order cannot be created.  Is there a reaso

  • Uploading to root directory?

    Using iWeb 3.0.1, I can't seem to upload my website using the Site Publishing Settings directly to the root directory of my web hosting location. It always puts it in a separate folder then uploads the folder to the root directory. I'd like to figure