Requesting Host Help II

Ok, I could not figure out how to create a second User Account for my original Apple ID.
Is it not possible to have a 2nd, or multiple, User Accounts, per Apple ID?
So, In order to ask for help in correcting the post I created with my original Apple ID and User Account I had to create a 2nd User Account. Otherwise, I would have had two posts with my name showing as the author.
I now have 2 Apple IDs: amkazen and amjmod
I have two User accounts also: one with my real name and one with amjmod, the same as my Apple ID
Can I merge the two user accounts?
I want my real name gone/deleted/purged from the user account field.
If the user accounts cannot be merged, how do I delete the original Apple ID?
Thanks for the help

Lamen,
The Alias of the account you are using, cannot be changed, but you can create a new Discussions Account, with an Alias that you prefer.
You cannot delete your present account. Just stop using it, after you have created a new one.
You can use all of the same info in the new account, Email address, User name, etc, just be sure to insert a new Alias of your choosing.
But your Level(0), Points(0), Total Posts(25), Total Posts Online(25) and Registered Date(4/3/07), will not be transferred.
In the new account, your Post Counts, Points, & Level Status will all start at 0. Your Registered Date will be the date you create the new account.
Your old account, with your previous counts & level, will still be viewable, under the old Alias.
After you quit using the old account, those posts, will be archived. What that means is, that if there are no additional responses in the Threads they reside in, the Topics will get continually pushed down on the Topics list. After a certain amount of time, maybe 2 to 6 months, the Threads will be locked, so no responses can be entered. But the Threads will not disappear.
Threads in heavily trafficked Forums, may be archived more rapidly, than those in areas with less activity.
The Topics that you started using the old account, will show your Old Alias, in the Author field of a main forum page, but eventually, readers will have to keep going to the succeeding pages to view them.
If someone were to do a Discussions Search, using these parameters:
Restrict by Category or Forum: All Categories
Restrict by Date Range: All
Restrict by Username: Your Old Alias
all of your posts, created since about 11/13/05, would be found.
To create a new account,
Log out of Discussions. Delete the Apple Cookies in your browser preferences. Then follow either of these instructions.
-How Do I Create My Account?
If you haven't signed up for an Apple ID for the Apple Store or AppleCare Support website (or forgot your old one), you can create a new account on the My Info webpage. Just click the "create one" link on the right side of the My Info page. Choose your country location and preferred language from the appropriate pop-up menus, then click Create Account. In the resulting page, enter a unique name (such as your email address) in the Apple ID field and fill in your other relevant information accordingly (fields marked with * are required). Click Continue to complete the process.
-To register, click Login in the sidebar on the right side of the Discussions page. In the resulting page, click the "create one" link at the bottom of the page, then click "create one" in the subsequent page and follow the instructions to create an Apple ID. For more information, see the Apple ID FAQ page.
Those instructions, and more info, can also be viewed by clicking on ?Help & Terms of Use, in the right column of Discussions pages.
ali b

Similar Messages

  • A Request for help from me again! Yay!

    hi guys! I was working on implementing threads for the directions of the unit. When i press forward once...nothing happens, but when i press twice it gives me this HUGE list of errors. I dont have a clue. Again, any help would be appreciated.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class NBoard extends JFrame implements KeyListener{
         int selection = 0;
         boolean selectionmade = false;
         final int WIDTH = 600;
         final int HEIGHT = 600;
         Image Viz =Toolkit.getDefaultToolkit().getImage(JOptionPane.showInputDialog("What character do you want?")+".gif");
         int XC = 50;
         int YC = 50;
         Thread moving = new Move();
         Unit Host = new Unit();
         public NBoard(){
              this.setSize(WIDTH,HEIGHT);
              selection = Integer.parseInt(JOptionPane.showInputDialog("What level design do you want?"));
              if(selection > 0){
                   selectionmade = true;
              addKeyListener(this);
              this.setVisible(true);
         public static void main(String args[]){
              new NBoard();
         public void paint(Graphics g){
              if(selectionmade == true){
                   if(selection == 1){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                   if(selection == 2){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                        for(int ctr = 1; ctr < 6; ++ctr){
                             g.drawRect(WIDTH/4 ,ctr * 100, 20, 20);
                             g.drawRect((WIDTH / 3) * 2 ,ctr * 100, 20, 20);
                   if(selection == 3){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine((WIDTH/2) - 90,0,(WIDTH/2) + 90,HEIGHT);
                   g.drawImage(Viz,XC,YC,this);
              public void keyPressed(KeyEvent e){                              //The Problem Areas
                   if(e.getKeyChar() == 'w'){
                        moving.start();                                             //Starting the thread to move up
                   else if(e.getKeyChar() == 's'){
                        YC = YC + 2;
                   else if(e.getKeyChar() == 'a'){
                        XC = XC - 2;
                   else if(e.getKeyChar() == 'd'){
                        XC = XC + 2;
                   System.out.println(e.getKeyChar());
                   repaint();
         public void keyReleased(KeyEvent e){                              //The Problem Areas
              if(e.getKeyChar() == 'w'){
                   moving.interrupt();                                             //Trying to interrupt the thread once the key is released
         public void keyTyped(KeyEvent e){}
    class Move extends Thread{                                                  //The Problem Areas
         public void run(){                                                       //The Thread
              Unit.XC = Unit.XC - 2;
              try{
                   Thread.sleep(1000);
              catch (Exception e){}
    class Unit{                                                                      //The Object which will hold all of the information about each unit
         static int XC = 30;
         static int YC = 30;
    } By the way, here is my order of events, so you can look forward to seeing requests for help for them (hopefully not).
    Threads: Moving the guy around
    Threads: Making him shoot a ball at the mouses position
    Network: Allow others to join/play game (This is gonna be HUGE probably), while host decides on game type.
    Thanks for all the help so far!

    Where does moving ever get started? Why does Move extend Thread instead of implementing Runnable? (Implementing runnable is preferred and often the correct way to do it and it is in this case)
    But regardless there shoud be a moving.start() somewhere or start of the Thread that has the Runnable target Move.... I don't think I see one. Unless I missed it.
    so...itll work if i change the setup to Runnable?

  • How can I get iTunes to answer my requests for help?

    I have tried for a few days now to get iTunes to help me get some tunes that partially downloaded. Their initial response seemed to work but the next day the tunes were only partially on my PC. I re-installed the software, called the phone number on my PayPal receipt, sent another e-mail request for help, responded to their follow up e-mail a few days ago asking if my issue was resolved.........and STILL cannot get them to help me resolve. They say I should receive a response within 24 hours, and it has been longer. No phone number to call, the initial instructions to re-download the missing tunes were confusing  

    It is quite easy to find out how to redownload purchases, using the search bar ( by Support) at the top of this page:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    You can contact itunes support again by clicking Support at the top of the page, then clicking the link under Contact Us.

  • SRM: Extended Classic scenario: Request your help.

    Hi Guru's,
    We are implementing the EXTENDED CLASSIC SCENARIO in our project. kindly request your help.
    in our project the SRM box is :  G3OSBSR102.
    R/3 backend Box is :   RCHSBR3142.
    Now when i create a shopping cart it should create the Purchase order In SRM( G3OSBSR102) and also copy the created purcahse order in teh backend system : RCHSBR3142.
    The issue here is which Logical system should be populated in the field at item level when creating the shopping cart :BE_LOG_SYSTEM.
    1) In this field: BE_LOG_SYSTEM.
    If i populate the SRM local: G3OSBSR102., then it will consider the Business object type as : BUS2201and creates the local Po but while transfering this local created document(PO) to R/3 system is loosing the Logical system at the item level of the PO.
    If i populate this field at the item level via DEBUGG mode then system is sucessfull in transferring the document to R/3.
    2)  In this field: BE_LOG_SYSTEM.
    If i populate the SRM local: RCHSBR3142, then it will consider the Business object type as : BUS2012 and creates the purchase order in R/3 system and will not create teh local purchase order.
    Kindly request your help for any further settings if i did miss.Appreciate your help in this regards.
    Many Thanks,
    Prasad NN.

    Dear Prasad,
    To work on Extended Classic Scenario, you just have to maintain the following configuration in SPRO:
    >SAP Supplier Relationship Management
    >SRM Server
      >Cross-Application Basic Settings
       >Activate Extended Classic Scenario
    Check the flag "Extended Classic Scenario Active".
    You dont have to manipulate "BE_LOG_SYSTEM" field to choose your scenario.
    Regards
    Thiago Salvador

  • SR_ Extended Classic Scenario : Request your help please

    Hi Guru's,
    We are implementing the EXTENDED CLASSIC SCENARIO in our project. kindly request your help.
    in our project the SRM box is : G3OSBSR102.
    R/3 backend Box is : RCHSBR3142.
    Now when i create a shopping cart it should create the Purchase order In SRM( G3OSBSR102) and also copy the created purcahse order in teh backend system : RCHSBR3142.
    The issue here is which Logical system should be populated in the field at item level when creating the shopping cart :BE_LOG_SYSTEM.
    1) In this field: BE_LOG_SYSTEM.
    If i populate the SRM local: G3OSBSR102., then it will consider the Business object type as : BUS2201and creates the local Po but while transfering this local created document(PO) to R/3 system is loosing the Logical system at the item level of the PO.
    If i populate this field at the item level via DEBUGG mode then system is sucessfull in transferring the document to R/3.
    2) In this field: BE_LOG_SYSTEM.
    If i populate the SRM local: RCHSBR3142, then it will consider the Business object type as : BUS2012 and creates the purchase order in R/3 system and will not create teh local purchase order.
    Kindly request your help for any further settings if i did miss.Appreciate your help in this regards.
    Many Thanks,
    Prasad NN.

    Hi ,
    Go to SPRO
    There is a node - Activate Extended Classic scenario
    Do the config.
    Regards
    G.Ganesh Kumar

  • How to uninstall Application host helper service?

    Hi all,
    I have remove IIS features from my server 2008 R2 64bits sp1 but i still see this application host helper service. How can i remove this service from my system?
    Thanks

    HI,
    The ApplicationHost Helper Service in IIS 7.0 and above hosts IIS functionality that is needed even if IIS is not running.
    This service currently hosts the following functionality:
    l  Configuration
    history
    l  Application
    Pool account mapping
    For more information, please refer to the following Microsoft article:
    ApplicationHost Helper Service
    http://www.iis.net/learn/install/installing-iis-7/applicationhost-helper-service
    Source: http://social.technet.microsoft.com/Forums/windowsserver/en-US/33b02e01-acf6-4444-a7ed-5bebade77c10/iis-install-left-behind-application-host-helper-service?forum=winserver8gen
    Regards,
    Rafic
    If you found this post helpful, please give it a "Helpful" vote.
    If it answered your question, remember to mark it as an "Answer".
    This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before implementing!

  • Request the help, I have the adobe the original software, but the ordinal number is missing, there is way checking before recording or begging the solution

    請求幫助,我有adobe正版軟體,但是序號不見了,有辦法查到之前的紀錄或求解決辦法嗎?
    Request the help, I have the adobe the original software (Adobe Creative Suite 6 Design & Web Premium), but the ordinal number is missing, there is way checking before recording or begging the solution
    Does anyone know how can I do? Please help,thank you very much.

    Hi there,
    I'm not sure that I understand. Are you trying to find the order number or serial number for your Adobe software? If so, please see Find your serial number quickly - Adobe.
    Best,
    Sara

  • Hello!!! I Reenroll "Developer Enterprise Program" but error:We are unable to process your request. Help pleeeeees!

    Hello!!! I Reenroll "Developer Enterprise Program" but error:We are unable to process your request. Help plees!
    Development period ended six months ago.

    ???????

  • Transport request for Help LaunchPad : K900033.N73

    Dear friends,
    Can anyone please tell me where to find transport request for Help LaunchPad K900033.N73 ?
    (We had raised a OSS 161317/2014 and this has been recommended by Shu Liu )
    We have SAP System with SAP_BASIS 740.
    I tried to work with SAP Note1799002 - How to choose Help LaunchPad files from uPerform Installation PackageI .. but did not managed to find this.
    best regards
    ashish

    Hi Anish,
    Sorry for delay.
    I see that Ancile have answered your question. Hopefully this is to your satisfaction.
    Regards,
    Matthew

  • Approximately 6% of all requests for help on this forum are ever "solved."

    Approximately 6% of all requests for help on this forum are ever "solved." And approximately 34% of all requests for help on this forum are never responded to. Even with all the caveats, these numbers are embarrassing. Good luck everyone!

    More facts and stats from the horse's mouth - http://www.mozilla.org/foundation/annualreport/2009/sustainability.html
    "Total assets as of December 31, 2009 were $143 million compared with $116 million at the end of 2008, an increase of 23 percent. Unrestricted net assets at the end of 2009 were $120 million compared with $94 million in 2008, a 28 percent increase."
    "Mozilla consolidated expenses for 2009 were $61 million, up approximately 26 percent from 2008 expenses of $49 million. Mozilla operating expenses in 2009 continued to remain highly focused on people and infrastructure."
    "At the end of 2009, Mozilla was funding approximately 250 people working around the world."
    Yes, Mozilla is indeed doing very well but they're a bit worried about the IRS audit that is currently going on.
    Now, if we take the figure from the 2008 cnet article that 80% of expenses are spent on Mozilla employees as a relatively stable benchmark for 2009, we see that employee salaries averaged out to around $200,000 dollars annually for each employee, which obviously isn't what each employee is actually getting paid, but what it does mean is that given typical corporate scaling of salaries, some folks in this non-profit are making lots and lots of money.
    The individuals who should be the most upset about Mozilla's unwillingness to invest even a fraction of its profits into building a real and responsive user support system are the collective-community-driven-volunteers who commit their free time so Mozilla can continue to cash in big time at their expense. A brilliant model!
    Again, Firefox users appreciate the work that you and the other unpaid/unacknowledged volunteers do here.... Mozilla appreciates it more.

  • Request for help in tuning the server which is running opmn process.

    Hi Folks,
    I request for an help in tuning the server which is running oracle app server opmn process , It is chewing arround 40% of the CPU resource,and our sysadmin is back of me to resolve this issues.
    any feedback on this is highly appriciated...
    Thanks in advance

    Re: How to Achieve Performance Tuning
    I hope you may find answers here..
    Sharma

  • Problems publishing to a non-mobile me URL/host - HELP!!

    Hi,
    I'm using iweb 08 and having major problems posting my site to my hosting service. I'm using BlueHost with a godaddy URL and the problems are not on their end. I'm using Easy iWeb publisher 5.0.1 to upload it and gives me could not upload errors every time. The files it has errors with change a lot and I know it's not my files because I have successfully uploaded my site a few times (after 30 tries or so.) I need to update my site but I can't seem to get thru the upload process. Also it takes FOR EVER to upload. Please help! my url is benwolan.com

    Try a different ftp client. The free CyberDuck is well though of in this forum.
    OT

  • Not receiving contact requests, need help!

    Hi there,
    I am not receiving contact requests on skype, I kind of rely on getting them since my students try to respond to my ads and make a first contact.
    Any help here?
    Please add me, I am rapidiomas.
    Thanks for your help!

    I got the same issue. I sent the contact request to our Jakarta Director Skype account by Skype for business then we waiting waiting ............................ until 17 days later and he got the request.
    How funning this system is!

  • Self Hosted Help Desk

    I am creating Users for my IT team and notice that the links go to track.spiceworks.com. I notice that this creates a user for the Help Desk App and on the community pages. Before I move forward I just want to know if what if any information of help desk app is shared with spiceworks servers. I don't want our things like ticket information or users credentials being stored where we don't have control over access. Thanks 
    This topic first appeared in the Spiceworks Community

    Hi Adam,
    Thanks for your fast response.  I think the problem I had was that I am not a coder and use Muse as it should be,  for someone who is more of a designer instead.
    The issue, which was one that I could not find any information, resolution not instructions about, is that you must do all you have stated to add self hosted fonts into Muse and your computer, these will then work perfectly in Muse and if you "Preview Web Page in Broswser".... but will NOT show up if you PUBLISH the website to the internet, hosted fonts will change to a default.
    The ANSWER that is woking for me is that I am exporting to HTML first and the using Cyberduck or FileZilla as the FTP.... I had to create a file called FONTS in the root directory of my website and then dump ALL the font files.... SVG OET WOFF TFF (everything) into that file and make sure its published to my live site... that seems to work.
    It may be that if you use Muse own Upload to FTP Host direct to publish then it automatically will do this but when I export to HTM first it doesn't do it.
    I scoured the internet and could only find one reference to this and it may be that this is the answer to many peoples problems as it doesn't seem to be widely known that you have to do this.
    Roger

  • WRT54G not working with cable internet access - request for help

    Good evening!
    At least that's the time when I write this.
    I have a PC running Vista 64-bit version. 
    Until yesterday, I was connected to the internet using my WRT54G and a cable modem. There was a power outage (or blackout) and I lost my internet connection. I was not home when this happened. I got home and found the circuit breaker off. Since then, I can not access the internet anymore when I use the router. 
    If I connect the computer to the cable model directly, I can access the internet without a problem (hence I'm able to post this). 
    If I connect the computer to port 1 in the router, and connect the cable modem to the internet port in the router, I am not able to connect to the internet. 
    I have already:
     - updated the firmware to the latest version (it was already installed)
     - reset the router pressing the "reset" button for 30 seconds, unplugging it, and reconnecting power still pressing the "reset" button for 30 seconds. 
     - power cycled the devices
     - tested 3 differnet patch cables that I know are good and they work
     - reset the modem via a soft-reset remote request sent from the cable operator
    None of these options have helped me restore my router's connection to the internet.
    I know the router is working because I can print using my wireless printer and I can see my shared drives in the other PC I have connected to it,  but none of them are able to connect to the internet!
    Does anyone have any additional ideas on how I can fix this, before I go out and buy a new router?
    Thanks in advance!
    Pablo

    As you have mentioned in your previous post, that you have resetted your router and you are still able to Print from your Wireless Printer, I Feel that your Router is not getting Resetted properly, whenever you reset your router your router goes to Factory default mode, and it will change the wireless network name to "linksys" and your Network will be unsecured. Press and hold the reset button for 60 seconds...Release the reset button...Unplug the power cable from your router, wait for 60 seconds and re-connect the power cable.
    Once you reconnect the power to the Linksys router, On your computer Open IE and in the address bar type (http://192.168.1.1) and hit enter, when prompted for username and password, Leave the username blank and in password type "admin" and click Ok. Below the Setup tab you will find MTU, So change it to "Manual" and change the size from 1500 to 1365 and Click on Save Settings. Then Below the Setup Tab you will find the Sub tab "MAC address Clone" click on it and "Enable" and click on "Clone your PC's MAC" and click on Save Settings. Now you can Unplug the Power from Router and Unplug the Power for Modem. Wait for 30 seconds, and 1st connect the Power to your Modem and wait till all the lights goes Stable then you can connect the power to Linksys router and once all the lights are sold. On your computer Open IE and check if you are Online. 

Maybe you are looking for

  • Post Processing a bank line item - opening balance

    Hi Experts,       I need some help with post processing of a bank statement item. It is a greenfield implementation where no legacy transactional data or opening balances are migrated. Therefore I've posted a bank statement with incoming domestic ban

  • Is there any way to read 2 tasks at once (with DAQmx)

    Ok, I don't belive there is... but that is a problem I want to solve. I use about 10 sensors of the same kind, but I only have 2 signal amplifiers. So I have the possibility to read from 2 channels. (Ok, I could create a task that reads from 2 channe

  • Ipad wi-fi not working, but can read the bars

    My new ipad does not work on teh interenet?  Takes the password,

  • Import Server not working

    Hi , I have a scenario where PI is sending data to MDM inbound port which is automaticaly getting imported to MDM . Now problem is PI is succesfully sending data but file is not coming to Inbond port. PI side all the configuration is fine . Through I

  • Power Supply for IQ505a Touch smart PC

    Can you give a phone number where I can order a replacement Powersupply for IQ 505a Touchsmart PC