Upload page to server but doesnt show

Hi there,
i have done the following steps but can't find my page on the web:
1. opened DW and insert picture (jpeg) as a spalsh page. saved the file as index.html
2. opened manage sites. created "mysite". double clicked on it and insert site name ("mysite") and local site folder (/user/username/desktop/mysitefolder)
3. clicked on server on the left hand of the popup window and added a new server
    Servername: mysite
    Connection using: SFTP
    SFTP Address: got this provided from the server host
    Username: provided from server host
    password: provided from server host
4. clicked the test button and DWCS6 connected to your web server successfully
   (i left the root directory empty and the web URL is http://SFTPaddress/)
5. pressed all save buttons to leave the site manager
6. uploaded the jpeg and the index.html file to the remote server. No popup window that something is wrong.
7. go to safari and enter www.mysite.com and safari tells me that it can't find the server.
Did i forgot something somewhere? because when i pushed Test DW connected successfully to the server.
i would really appreciate if someone is able to help me.

Definitely a setting mismatch.
Most servers use /public_html (Linux servers) or www as root directory on your web server. If you upload the files below that directory level, it wont show up on your website. You may want to check that.

Similar Messages

  • URGENT HELP UPLOADED .SWF TO REMOTE SERVER BUT DOESNT SHOW

    Hi have uploaded my images and the .swf file which was
    created with those images as an Image Viewer feature in
    dreamweaver. Now before i started uploading everything to the
    server everything was working perfectly. This makes me think some
    how the source files or something are not right. I need urgent help
    please

    Did you upload the Scripts folder that DW creates in your
    local site when
    you insert Flash? If you did, or if you are not using DW8.0.2
    or greater,
    then please post a link to the page.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "keaneodog" <[email protected]> wrote in
    message
    news:fgnbhf$f1u$[email protected]..
    > Hi have uploaded my images and the .swf file which was
    created with those
    > images as an Image Viewer feature in dreamweaver. Now
    before i started
    > uploading everything to the server everything was
    working perfectly. This
    > makes
    > me think some how the source files or something are not
    right. I need
    > urgent
    > help please
    >

  • Folio is uploaded in the server but I cannot see it in my Adobe Viewer

    My folio is uploaded in the server but I cannot see it in my Adobe Viewer in my iPad, any idea guys how to be able to see it in my Viewer?
    Thanks.

    There are some bugs that can cause this issue. If you are adding long, smooth scrolling pages (ie 1024x3000) and performing a "New" to add the page from the Folio Builder Panel versus using the "Import" command, this issue can be caused.
    As the previous posted said, you need to either have all horizontal, all vertical, or all horizontal and all vertical pages. You cannot have a mix of both. If there is a fundamental error with your folio, it iwll not be available in the viewer.

  • Ipod shuffle 4th gen charges plays but doesnt show up in windows or itunes

    Ipod shuffle 4th gen charges plays but doesnt show up in windows or itunes tried to check usb driver but computer says it is working properly

    Just disconnecting it without ejecting should not cause permanent damage.  It may cause data corruption, if iTunes was in the process of syncing at the time.  But iTunes should still see the shuffle and (maybe) tell you to Restore it.
    Is it possible that the "accident" damaged the USB cable? 
    Make sure you have done this on the shuffle since the problem occurred
    http://support.apple.com/kb/HT1655
    And you should also shut down (power off) the computer, if you have not already.
    Have you tried more than one USB port on the computer (not a hub if you use one)?  You can also try it with all other USB devices disconnected, except for standard keyboard and mouse (if normally used).
    If those things do not help, what version of Windows do you use?

  • HT4623 I purchased an audiobook in I tunes on my computer, but cannot figure out how to download it on my phone....it always lets me download purchases of movies and tv shows but doesnt show an option for audiobooks

    I purchased an audiobook in I tunes on my computer, but cannot figure out how to download it on my phone....it always lets me download purchases of movies and tv shows but doesnt show an option for audiobooks

    Oh alright -- I manage to resolve my own stupidity quite abruptly, actually.
    Shortly after posting this, I annoying took another gander at iTunes Store settings. To my own idiocy, I must have unchecked "Show iTunes purchases in the cloud" at some point. In my defense, though, the availability of songs in iCloud threw me off quite a lot.
    Ha ha -- anyways, if anyone else is having the same problem, check there.

  • HT3140 put a date 1970 june 27 . and now the whole system is out of control i cant get to internet cannot change date and time  always when i opened system preferences stays in a waiting mode but doesnt show any opcion don t know what to do and i just bou

    put a date 1970 june 27 . and now the whole system is out of control i cant get to internet cannot change date and time  always when i opened system preferences stays in a waiting mode but doesnt show any opcion don t know what to do and i just bought this computer

    It may well be a driver issue but considering the loading: Xorg trying to load different drivers is somewhat normal. @cafe you can see that these are autoconfigured by X above the loading in the log:
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched intel as autoconfigured driver 0
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched intel as autoconfigured driver 1
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched modesetting as autoconfigured driver 2
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched fbdev as autoconfigured driver 3
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched vesa as autoconfigured driver 4
    As long as one of the drivers gets loaded, which it apparently does the failing of the others is fine.
    Was there an update maybe ?

  • EJB deployed but doesnt show up in JNDI tree on weblogic

    Hi,
    I have a sample EJB deployed on weblogic 10.3 server. My Bean class contains following code.
    ========================================================================
    @Stateless (mappedName = "DemoEJB")
    @TransactionManagement(TransactionManagementType.BEAN)
    public class DemoBean implements SessionBean {
         static final boolean verbose = true;
         private transient SessionContext ctx;
         private transient Properties props;
         @SuppressWarnings("deprecation")
         @Override
         public void setSessionContext(SessionContext ctx) throws EJBException,
                   RemoteException {
              // TODO Auto-generated method stub
              if (verbose)
              System.out.println("setSessionContext called");
              this.ctx = ctx;
              props = ctx.getEnvironment();
         public String demoSelect()
    throws RemoteException
    return("hello world");
    ===========================================================================
    I have created a jar file for the above class using eclipse and deployed it on weblogic. I can see the EJB in the <Deployment> on weblogic but it doesnt appear in <EJB> on JNDI tree view. Therefore i cannot access it from my client code (also written in Eclipse IDE).
    I will appreciate any guidance in this regard.
    Thanks
    Regards,
    Awais

    Hi,
    i have the same problem with yours
    This is my annotation with EJB3.0:
    @Stateless(mappedName="ConSession")
    @Remote(ConBeanRemote.class)
    @Local(ConBean.class)
    and i have a weblogic-ejb-jar.xml to define my jndi name
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-ejb-jar xmlns:wls="http://www.bea.com/ns/weblogic/weblogic-ejb-jar"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd
              http://www.bea.com/ns/weblogic/weblogic-ejb-jar
              http://www.bea.com/ns/weblogic/weblogic-ejb-jar/1.0/weblogic-ejb-jar.xsd">
    <weblogic-enterprise-bean>
         <ejb-name>ConSession</ejb-name>
    <stateless-session-descriptor>
         <business-interface-jndi-name-map>
              <business-remote>com.staffware.ConBeanRemote</business-remote>
              <jndi-name>ConSession#com/staffware/ConBeanRemote</jndi-name>
              </business-interface-jndi-name-map>
              </stateless-session-descriptor>
              <local-jndi-name>com/ConfigurationManagerBeanLocal</local-jndi-name>
         </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    [ the most important: I also have specify JNDI in a java file like this
              beanRemoteJNDIs.put("ConBeanRemote","ConSession#com/staffware/ConBeanRemote");
              beanLocalJNDIs.put("ConBean","java:comp/env/com/ConBean");
    and i can find the ConSession#com/staffware/ConBeanRemote in the jndi tree . but it shows like Multilevel directory tree
    and when i login the website and click the button
    .another error comes out :
    13:35:55,046 ERROR [EJBDelegate] Unable to lookup reference java:comp/env/com/ConBean for ConBean!
    javax.naming.LinkException: [Root exception is javax.naming.LinkException:  [Root exception is javax.naming.NameNotFoun
    dException: While trying to look up /app/ejb/CONFIG-ejb-2.0.jar#ConSession/local-home in /app/webapp/CO
    M/18328287.; remaining name '/app/ejb/CONFIG-ejb-2/0/jar#ConfigurationManagerSession/local-home']; Link Remaining Name:
    'java:app/ejb/CONFIG-ejb-2.0.jar#ConSession/local-home']; Link Remaining Name: 'com/ConBean'
    at weblogic.jndi.internal.WLNamingManager.getObjectInstance(WLNamingManager.java:104)
    at weblogic.jndi.internal.BasicNamingNode.resolveObject(BasicNamingNode.java:884)
    at weblogic.jndi.internal.ApplicationNamingNode.resolveObject(ApplicationNamingNode.java:187)
    what should i do ?
    and should i specify the jndi name in the java file . the JNDI name defined in the weblogic is right?
    can you help me ?
    thanks very much in advance!

  • IPod shows up under my computer, but doesnt show up in iTunes

    When i plug in the iPod, a window pops up showing the folders contained on the iPod, but the iPod doesnt show up in iTunes.

    here is a place to start
    iTunes Does Not Recognize Your iPod

  • Can transfer to playlist, but doesnt show up in library      please help

    I have several songs that i am unable to transfer directly to the library.... they are easily dragged/dropped into a playlist in iTunes, but dont show up in the main library.
    Also they show up as a playlist on my iPhone 4, but again are not found ANYWHERE in the main library..
    After some digging, I was able to find these songs in a folder within the iTunes folder on my PC
    The songs are labeled correctly, yet they show up as "unknown album, unknown artist" but they are clearly labeled .... Im confused and just want to get these songs to appear in the main library of iTunes and also on my phone.
    They appear as a playlist on my iPhone but I cleared the playlist and suddenly they were gone...instantly. 
    I just want these songs on my phone...  (these are mp3's that I have had on my PC for years)

    Have you had a chance to look at these troubleshooting pages? They may be of some help:
    iPod missing in My Computer and in iTunes
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    If you are using a laptop, this page might help: iPod not recognized when connected to Windows laptop over USB

  • TS1538 my ipod connects to the computer but doesnt show on itunes and it wont synk

    my ipod froze so i reset it now itunes dont read my ipod but it shows its connected to the pc please help

    Yep add me to that list too, and I have tried the menu and select button on the ipod all that happens is the contrast goes very faint, tried the combo thing and it tells me it can't be installed on this computer, tried the 5 R's on the ipod frequent question page, all do nothing, totally un impressed with Apple for the first time, never had any problems but version 8 of itunes really needs bugging out before it was released, if anyone has any other ideas please do add them as I have just bought a whole load of music which is sat on my library and cant move to ipod...oh and I have also tried the create a new account and see if that works, well I could see the ipod but couldnt transfer the contents back to itunes - sooooooo unhappy can't do apple care as classic ipod is way past 2 years

  • Podcast saying its submitted but doesnt show on iTunes

    Our podcast had a one year hiatus... we recently started it back up again using the same feed... everyone who had previously subscribed got the new episode, but there's no sign of it on iTunes nearly 10 days after it went up.. Our feed is..
    http://feeds.feedburner.com/vrecordings
    When I try to resubmit iTunes tells me the feed is already submitted..
    Anyone got any ideas how we can get it showing on iTunes again?

    i am having the exact same issue, we have been running it for 5 years, had 26 volumes and now it has disappeared from iTunes.
    we can still download the new podcast by subscribing to the feed in iTunes (file>subscribe to podcast) an the new item downloads fine.
    but the podcast cannot be found in itunes.
    when trying to resubmit is says the feed has already been submitted!
    checked all the code, has driven me insane - valid feed but not showing up
    as you say not getting much from support either

  • Ipad connected but doesnt show up under devices

    itunes doesnt show ipad under device headings

    See Here
    iPhone, iPad, or iPod touch not appearing in iTunes
    From Here
    http://www.apple.com/support/itunes/devices/

  • Recordset shows tables but doesnt show columns!!

    Hiya,
    Working on my first dynamic website, server on a datastick
    (WOS)...using dreamweaver 8.02 and phpmyadmin
    All connections with dreamweaver are successful for the
    database created in phpmyadmin...but when i create a recordset in
    the recordset dialogue box it finds the table names but not the
    column names (when i click the + for each table it comes up as
    'none')
    I have hand coded the SQL in the recordset dialogue box to
    create my recordsets, and when i click test, i get a successful
    result...including the column names
    Point is I would like to save time with dreamweaver....any
    ideas why column names of each menu show up as 'none' in the
    recordset dialogue box when they clearly exist in the test after
    hand coding?
    If anyone can help or even has experience of this I would be
    most grateful

    I assume that you are using CF as your testing server. If so
    what you are
    seeing is a bug in the update. The work around appears to be
    to change the
    database type when creating the DNS in the CF Administrator
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Deezy" <[email protected]> wrote in message
    news:eiq9nv$h38$[email protected]..
    > When I select to create a recordset from within DW8, I
    select the
    > datasource,
    > then the drop down list of tables is displayed as a full
    path to the
    > database
    > on my hard drive. IE It would show up as
    > C:\inetpub\wwwroot\sitename\database\cart.products
    >
    > I constantly have to go into the code and then edit the
    table name for it
    > to
    > work. Is there a way to correct this porblem. It only
    happens on my laptop
    > and
    > not my desktop.
    >
    > Thanks!
    > Dee
    >

  • Safari, Gray Page with nothin but bookmarks showing

    i have opened my safari and have nothing showing but gray page and bookmarks at the top and the page itself will not close unless i hit apple q or click on quit. the top will say the webpages name but display nothing but gray background. Any suggestions on what the problem is ?

    You're welcome. I wish I would have been able recommend an extension that works, though - I have tried every every extension like that that I have ever found. Because I don't like that long scrolling list either, I don't even usually use the Bookmarks menu bar drop-down, I access my bookmarks from the Sidebar which has a "proper" scroll bar for the long list, and which I find easier to use.

  • I can login but doesnt show any of my music

    Having trouble here ....i recently received a new note 4 phone because my 2month phone over heated & died so now im trying to load all apps & started with my spotify app,well im login & shows im login but no music none of my music.Im stuck here can anyone help me out here....thank you

    Hi g30marquez. When you logged into your new phone, are you certain that you used the exact same login details as on your old device? Sometimes people have duplicate accounts, and it's possible that you accidentally signed into a second account as opposed to your primary. Do the songs still appear on the desktop client or the web player? If they do and it's just your phone that isn't displaying anything, then I'm going to assume that it's most likely that you've simply signed into the wrong account.
    If that doesn't quite solve the issue, let me know and I'll happily do some more digging to help get this solved. Cheers!

Maybe you are looking for