How to get server to show my website

Hello,
I have a domain registered and pointing to my server via my IP address. I have uploaded my site files to the location indicated in the server.app, the location that defaulted when I set up the web services and created a new website. When I type in my domain in a web browser I get the default server website and not my website that I want to host.
How can I change this so that when I type in my domain I get the site I want to host instead of the default server site?
I use name.com to register my domain and I'm using server on a mac mini. I am using the default name servers on name.com, I have added two DNS records, both "A" records, mydomain.com to my IP address (not the ip of my server) and *.mydomain.com and my IP (not the ip of my server).
Like I said, this works in pointing my domain to my ip so when I type it in I get my server default website but I want my hosted site. I have set it up correctly in server.app. My settings are:
domain name: domain.com
ip address: any (I have two)
port 80
SSL: none
Store files in: domain name folder (I erased the default files and copied my website files to this location)
Who can access: anyone
no additional domains configured
no redirects
no aliases
the 4 index files configured...
I have Googled and came up with everything but what I am looking for. I am new at this dns and ip stuff but know my way around a computer so a walkthrough I can follow.
Anyone else have this situation or can help?
Thanks in advance...

Have you tried clearing the cache of the web browser? It is possible that if you accessed the site with the defualt page that your browser is displaying a cached version.
Just to be sure, there are no files from the default site still in your sites folder? Also, what are the four index files that are configured? Is the website you want to display using one of those files (like index.html or index.php)? Also, have you verified the file permissions are correct for the files in your sites folder?
If you can give a few more details, we might be able to figure out the issue.

Similar Messages

  • My old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    my old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    Hello gpbondi,
    The following article provdies step-by-step instructions for downloading your purchases both in iTunes and on your devices.
    Download past purchases
    http://support.apple.com/kb/HT2519
    Cheers,
    Allen

  • Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Acrobat X Pro.  How to get tab to show up in Microsoft Office ribbon?

    Hi ebender888,
    Which Office version are you using?
    If it's Office 2013 then Acrobat 10 pdfmaker is not compatible.
    Please refer: http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html#main_ PDFMaker_compatible_applications
    Regards,
    Rave

  • HT4623 so when i plug any of my devices into laptop windows recognizes it but itunes wont. how to get itunes to show device pluged in

    so when i plug any of my devices into laptop windows recognizes it but itunes wont. how to get itunes to show device pluged in

    Hello, joegoducks. 
    Thank you for visiting Apple Support Communities.
    If your device is not recognized by iTunes, I would recommend the steps in the article below.  Start with the section labeled Verify that the Apple Mobile Device USB Driver is installed > For Windows Vista, Windows 7, and Windows 8 > Update the Apple Mobile Device Driver.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Cheers,
    Jason H.

  • Im in the caribbean and we speak english but netflix shows everything in spanish or some other foreign language and im clueless about how to get it to show in english

    i am in the caribbean and we speak english but netflix shows everything in spanish or some other foreign language and im clueless about how to get it to show in english can someone please help me with this issue

    bump

  • Holidays: how to get them to show up on my iCal

    Anybody know how to get iCal to show holidays. Is there a "show holidays" box to check? I'm not seeing it if there is. If not, is there some place to import them from?
    Thanks

    Pianafiddle,
    iCal>Calendar>Find Shared Calendars... will connect you to Apple - Mac OS X - ICal - Library, where you can select and subscribe to a Holiday Calendar.
    You can also go to ICalShare to find additional Holiday calendars.
    ;~)

  • Thinkserver RD650 & 720ix RAID - How to get all drives showing up in TDM ??

    Hi, Have just received an RD650 with a 720ix controller. The chasis I have is the one where it provides a hybrid of disk form factors. So at the front left of the server it first has 6 x 2.5" bays, and then 3 x 3.5" bays, that makes up the first half of the backplane. Then the rest of the front of the server and the other half of the back plane is populated by 6 x 3.5" bays. I have 6 hard drives in total: 2 x 300GB 2.5" 15k SAS and 4 x 3TB 3.5" 7.2k SAS. However, when I go into storage management in the TDM, the drive count is only 5 and I do not get the option to include all 4 of my 3.5" drives into a virtual drive, I only get the option of including 3. So the last 3.5" drive that is on the right hand side of the server and backplane is not showing as available. Now I know this controller supports up to 32 drives, so what do I need to do to get this to show up as an available drive? I'll post an image here as well, the green outlines are my drives which ARE available, the red box is my one 3.5" drive which is NOT showing as available (all lights are on and drive seems to be working normally, if I swap that drive for another I still just get the same, 3 of the 3.5 drives available instead of all 4). I would REALLY appreciate some help with this, I need that drive showing up for RAID10 or this server goes back! Thank you,LD. 

    Yeah sorry I meant to update this sooner, it was a dead drive, I thought I had checked it in other bays properly but obviously not. This server only has 2 usb ports! Crazy, so if you are flshing a firmware or loading a driverbundle or whatever into the TDM but USB, you have to take out either the keyboard or mouse, what genius decided this? All servers should have at least 3 USB ports, whether you are going to run them headless eventually or not. Also, ALL of the 4 3.5" drive caddies are cracked and broken where the screw attaches the plastic front part to the metal! This must have been done in the factory AND one of the sprung screws that holds the raid card down is snapped! Anyway, original problem is solved.

  • How to get server certificate before sending off confidential content?

    If my mail client knows for example the SHA1 value of TLS/SSL enabled receiving MTA's certificate, subversion of DNS and Root-CAs could be prevented if after establishing the connection, the com.sun.mail.smtp.SMTPTransport.serverSocket were accessible to retrieve that certificate:
    X509Certificate[] certs = null;
    if (serverSocket instanceof SSLSocket) {
    SSLSocket ssl = (SSLSocket) serverSocket;
    certs = ssl.getSession().getPeerCertificateChain();
    byte[] sha1 = MessageDigest.getInstance("SHA1").digest(
    certs[0].getEncoded());
    //TODO now validate with the sha1 you already know
    Unfortunately com.sun.mail.smtp.SMTPTransport (let alone javax.mail.Transport) have a public getServerSocket() or even better a getX509ServerCertificates() method.
    Any other ideas how to get at those certificates short of using gnu classpathx?
    See also http://forum.java.sun.com/thread.jspa?threadID=615422

    I found the solution for server side. We will use Handler. And base on technology to generate web service's stuff (my server using axis, but my client using jaxWS), we have different ways to implement and deploy Handler. My purpose is only write input/output xml message to log, so with my server, I only adjust server-config.wsdd as bellow:
    <deployment
    xmlns="http://xml.apache.org/axis/wsdd/"
    xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
    <handler name="log" type="java:org.apache.axis.handlers.LogHandler"/>
    <globalConfiguration>
    <requestFlow>
    <handler type="log"/>
    </requestFlow>
    <responseFlow>
    <handler type="log"/>
    </responseFlow>
    </globalConfiguration>
    <transport
    name="http" pivot="java:org.apache.axis.transport.http.HTTPSender"/>
    </deployment>
    But now I still can not control directory and log file name yet (now it's axis.log by default).
    Edited by: mydesktop on Nov 15, 2010 6:20 PM

  • How to get server name and port of OSB server in a proxy service ?

    I need to get the server name and port of the OSB server inside a proxy service. How can I get this?

    You may use java callout for this purpose -
    How to get ServerName and ApplicationName in OSB (ALSB) ?
    Regards,
    Anuj

  • How to GET data from external secure website?

    We are trying to get data from a secure website. It is something like I try to get my bank statement online, where I have a user id and password to the secure website and try to get the data from XI.
    Does anybody have any idea how we could do it? What adapter should be used.
    I would really appreciate your help and award points.
    Thank,
    Arjun.

    Hi,
    Depends on how u are connecting to the website and getting the data.
    But you can do this using HTTP/Java Proxies. You can use HTTP if you are connecting via a URL. thats the most standard procedure.
    Regards
    vijaya

  • How to get thumbnails to show as the photo instead of a folder with date shot?

    How do I get thumbnails to show as the photo instead of as a little folder with the date shot on it?

    You gave NO details whatsoever.  No wonder your post has rewmained unanswered this long.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How to get server Proxy of weblogic10.3

    oracle.security.jazn.ApplicationServerProxy getProxy() used to get server proxy of OC4J.
    Any thing similar stuff in Weblogic 10.3 to get server proxy of Weblogic 10.3? ( I am using JDev11g in-built Weblogic10.3 server.)
    Thanks in advance for your help.
    Cheers!
    Raveen

    This would get you there faster!!!!
    http://e-docs.bea.com/wls/docs61//////javadocs/weblogic/management/configura
    tion/ServerMBean.html
    "Gaurav Khanna" <[email protected]> wrote in message
    news:3cacfd87$[email protected]..
    Hi,
    Please look at the ServerMBean documentation. There is a getName() defined
    and that, I think, specifies the name of the server.
    http://e-docs.bea.com/wls/docs61//////javadocs/index.html
    Hope that helps
    "tony pan" <[email protected]> wrote in message
    news:[email protected]..
    The server name. Host name we can get from java.net API. Maybe, I waspresuming.
    JNDI tree seems to be a logic place to put it. Thanks in advance.
    Rob Woollen <[email protected]> wrote:
    tony pan wrote:
    Does anyone know how to get the name of the application server
    instance
    at runtime?
    Which name do you mean? The host name or the server name (ie the name
    in the Server
    MBean)?
    Obviously, it is in the server's JNDI tree. But what is the JNDI namefor this?
    Why is it obviously in the JNDI tree?
    -- Rob
    Our application needs to configure itself based on this server name.Thanks. We
    use weblogic 6.1.

  • HT4792 how to get imovie to show up in the apps on iTunes?

    i tried to follow the steps on how to get imovie projects to ipone but the imovie app doesnt show up in the apps on itunes.

    So, when you go in to System Preferences > Print & Fax > Set Up fax Modem ..., Internal Modem is NOT showing up in Fax List?
    Does Internal Modem.app exist in /Users/{shortUserName}/Library/Printers/?

  • How to get server time in Oracle Internet Directory (OID)?

    Hi,
    How to get current time on OID server? As in case AD, RootDSE contains currentTime attribute, Is there any attribute in OID through which I can get current time on server.
    Thanks in advance for any help.
    Regards,
    Umesh

    Hi,
    wrong forum, use Identity Manager
    Frank

  • How to get server data without reading from the socket stream?

    My socket client checks for server messages through
                while (isRunning) { //listen for server events
                    try {
                            Object o = readObject(socket); //wait for server message
                                tellListeners(socket, o);
                    } catch (Exception e) {
                        System.err.println("ERROR SocketClient: "+e);
                        e.printStackTrace();
                    try { sleep(1000); } catch (InterruptedException ie) { /* ignore */ }
                }//next client connectionwith readObject() being
        public Object readObject(Socket socket) throws ClassNotFoundException, IOException {
            Object result = null;
    System.out.println("readObject("+socket+") ...");
            if (socket != null && socket.isConnected()) {
    //            ObjectInputStream ois = new ObjectInputStream(socket.getInputStream());
                ObjectInputStream ois = new ObjectInputStream(new DataInputStream(socket.getInputStream()));
                try {
                    result = ois.readObject();
                } finally {
    //                socket.shutdownInput(); //closing of ois also closes socket!
        //            try { ois.close(); } catch (IOException ioe) { /* ignore */ }
            return result;
        }//readObject()Why does ois.readObject() block? I get problems with this as the main while loop (above) calls readObject() as it's the only way to get server messages. But if i want to implement a synchronous call in adition to this asynchronous architecture (call listeners), the readObject() call of the synchronous method comes to late as readObject() call of the main loop got called before and therefore also gets the result of the (later) synchronous call.
    I tried fideling around with some state variables, but that's ugly and probably not thread safe. I'm looking for another solution to check messages from the server without reading data from the stream. is this possible?

    A quick fix:
    - Add a response code at the beginning of each message returned from the server indicating if the message is a synchronous response or a callback (asynch);
    - Read all messages returned from the server in one thread and copy callback messages in a calback message queue and the synch responses in an synch responses queue;
    - Modify your synchronous invocation to retrieve the response from the responses queue instead from the socket. Read the callback messages from the corresponding queue instead from the socket.
    Also take a look at my website. I'm implementing an upgraded version of this idea.
    Catalin Merfu
    High Performance Java Networking
    http://www.accendia.com

Maybe you are looking for

  • How to change Instance Number of an existing 4.6C System ?

    My customer has DEV and QAS systems running in separated boxes and having the same instance number of 00. Now I'm consolidating these two SIDs into a new box. So, I need to change the instance number of one of them. I found note 127351 on how to do t

  • Scroll bar is not working since last updates

    my scroll bar on laptop mouse pad no longer works in browser since last update. It works fine in all other programs.

  • JAXB Exception...!

    When I coded the return value to java.String, I can deploy my web services. But After I changed my return value to java class with JAXB, I can't deploy my web services. Pls,check my code. I need your advice! Thanks in advance. - Persons.java package

  • Error Message regarding define pricing procedure determination

    Hi Guru: I encountered the issue when defining pricing procedure determination,when I tried to input the sales organization,distribution channel and pricing procedure and condition type into the column,the error message popped up and said "An entry a

  • Color profile (sRGB Vs. Adobe RGB)

    Hello, As I am struggling with choosing the 'right' color profile for my photo's (either sRGB or Adobe RGB) I was wondering what your opinion of this subject is. I have searched the internet for the information about this subject, but the forums/answ