Configured FTP Now site in Local an FTP site

I configured my site in Manage Site/Configure Server for FTP. Now my site is an ftp://site with an empty cgi-bin folder in the Local Files dialog box. I can't get back to my regular site even though everything is still on my hard drive.
Any help sure would be appreciated.
Graham Stafford

Have you inadvertently defined the site via Manage Sites > New > FTP & RDS Server?
If not, what info have you entered into the Local and Remote site definitions?

Similar Messages

  • Configuring UC540 with 2x SPA525G2 (local and remote site)

    Just got this new system installed and not sure to get full capability.
    Here's my setup and feel free to send comments to help improve configuration.
    I have two SPA525G2 phone one local connected to the UC540 and the other one is remote and connected over the built-in VPN
    I have 4 incoming lines and we need to have both phone ringing all the time.
    On each phone at least one user extension button, one monitor button to see the status of the remote extension, and one group voicemail
    So that left me with only 2 buttons to control the 4 incoming lines.
    How should i do this setup on the two remaining buttons ?

    Hello Pierre,
    There are a lot of different approaches. The following are some of the approaches:
    1. create a group for each if the incoming lines and put the extensions of the two phones in these groups.
    2. Create extension for each line and make overlay buttons which include these extensions.
    3. Use B-ACD or AA and send the calls there and then forward to the extensions of the phones.
    HTH,
    Alex
    *Please rate helpful posts.

  • Problem uploading site to server by FTP - index page is blank

    Hi,
    I made my site in I web which works fine when simulating it in a local folder. When uploading by FTP to the server from a host where a rent my domain the program starts sending the files, but in the end it says publication error, try again later or contact your server provider.
    I did contact the server provider and they do receive the pages that I am sending BUT:
    - everything appears to end up at the wrong place in the server
    - the index page that is sent with the other files appears to be empty, blank which results in the server not be alble to order the site and a white empy page is shown when opening my site on the internet.
    I checked the html files which are all fine and when I send those to the server provider they seem all ok. But the index.html file is also empty on my computer. Is this normal?
    My first page is called 'home' and we had tried to rename that home.html file to index.html and again upload the whole site. The result is that I can now see my homepage when opening the site on the internet but without the index on top (the names of the other pages where you can click to go to another page on the site) and that is it.
    Can someone help me with this? Is this a problem with Apple, shoud the index.html file be blank? Or can they change settings in the server to solve this problem.
    Grtz,
    Kroko

    iWeb was originally designed as a foolprof way to create websites and upload them to MobileMe.
    Normally, the first, or Home, page of a website is named "index" since an index.html is required in the root folder of the server for everything to work as planned.
    To stop us rookies screwing things up, and to overcome the limitations of a single MobileMe user account, the developers packaged the site files in a folder with the same name as the sitename in iWeb.
    The top site in iWeb has an external index file which rediredts to the Home page so that it can be reached by the URL...
    http://www.domain-name.com
    Any other sites are uploaded as sub sites and require the addition of the folder name in the URL...
    http://www.domain-name.com/Site-Name/
    When you are uploading to a server other than MobileMe, you have two choices of publishing methods...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    Using the iWeb FTP allows you to upload the files in a foolproof way to avoid breaking the site structure. If you want to remove the site name from the URL you can publish to a local folder and upload the contents only...
    http://www.iwebformusicians.com/iWeb/URLs-Favicons.html
    This latter method is only viable so long as you don't have a blog or podcast feed. 

  • My i web version is 2.0.4. Can I publish my i web site directly to a FTP server address?

    After Apple stopped hosting with Mobile Me, I moved hosting for my i web built web site to Network solutions. I was told by a Network solutions technician that I can publish an updated iweb site directly to a FTP server address. But I do not see that as an option with my 2.0.4 i web version. Can I update my
    version of i web? Or do I need to purchase a later version of i web for this function?

    You can open your iWeb 2 site in iWeb 3 and continue as before with the addition of FTP. However you should be able to upload with no problem in CyberDuck or Transmit - both are easy to use and reliable. Note that when you publish to a local folder you should usually upload the contents of the folder to the server, not the folder itself, unless you want the folder name (which must have no spaces in it) to appear in the URL.
    Cyberduck is free (donation requested): Transmit is $34 but I think better. You will need the server address (your hosting service can tell you that), and your username and password for that service.

  • Problem in Moving Files Locally after FTP

    I am being stuck in the middle of my application development. What simple I need to do is to get all the files from location and put them all on FTP site. After doing FTP I need to put these files locally to other flder.
    I am done with FTP site files move to the client FTP site successfully but after that when I try to move files to local directory It idnt move and "renameTo" function returns me false.I also listing my code below.
    ToFTPFiles function FTP the files and MoveFiles function wil simply move the files to the local directory.
    Adding one more thing If there are 6 files it move some time two files and some time 3 but not all always.But If I simple call MoveFiles function without ToFTPfiles it moves all files successfully.
    public void ToFTPFiles(){
                        Logger.log(Level.INFO,"FTP CLass Called"+"\n");     
                        FTPClient client = new FTPClient();                
                      FileInputStream MovedFilePath=null;
                      File f =null;
                      try {
                          client.connect(Properties.FTPServer);
                          if (!client.login(Properties.FTPUserName, Properties.FTPPassword))                     
                               Logger.log(Level.INFO,"=====Unable to log into FTp Site======="+"\n");     
                          else                           
                               Logger.log(Level.INFO,"=====Successfully Log in======="+"\n");                     
                          client.setFileType(client.BINARY_FILE_TYPE);
                          client.enterLocalPassiveMode();                     
                          f = new File(Properties.PathOfFiles);
                          String[]FilesToBeMoved = f.list();
                          for (int i=0;i<FilesToBeMoved.length;i++)     
                               MovedFilePath=new FileInputStream(new File(f.getPath()+"\\"+FilesToBeMoved));               
                   boolean retValue= client.storeFile(FilesToBeMoved[i],MovedFilePath);               
                   if (!retValue){                           
                        Logger.log(Level.INFO,"==File=="+FilesToBeMoved[i]+"Is not able to FTP"+"\n");
              } catch (IOException e) {                       
              e.printStackTrace();
              } finally {
              try {
              if (MovedFilePath != null) {
                   MovedFilePath.close();
              client.disconnect();          
              if (!client.isConnected())
                   Logger.log(Level.INFO,"=======Not Connected==============="+"\n");
              else
                   Logger.log(Level.INFO,"=======Connected==============="+"\n");
              } catch (IOException e) {
              e.printStackTrace();
                   public void MoveFiles() throws IOException
                        File files = new File(Properties.PathOfFiles);                    
              String[]FilesToBeMoved1 = files.list();
              File FromPath=null;
              File ToPath=null;
              for (int j=0;j<FilesToBeMoved1.length;j++)     
                   FromPath= new File(files.getPath()+"\\"+FilesToBeMoved1[j].trim());
                   ToPath = new File(Properties.ProcessedFilePath+FilesToBeMoved1[j].trim());
                   Logger.log(Level.INFO,"From Path = "+FromPath+"\n");
                   Logger.log(Level.INFO,"To Path = "+ToPath+"\n");
                   //if (!new File(f.getPath()+"\\"+FilesToBeMoved[i]).renameTo(new File(Properties.ProcessedFilePath+FilesToBeMoved[i])));
                   if (!FromPath.canRead())
                        Logger.log(Level.INFO,"Cannot Read The File = "+"\n");
                   if (!FromPath.renameTo(ToPath)){
                        Logger.log(Level.INFO,"==Not Moved to the Required Folder"+"\n");
                        if (!FromPath.renameTo(ToPath)){
                             Logger.log(Level.INFO,"==Not Moved Again"+"\n");
                   else
                        Logger.log(Level.INFO,"==Successfull"+"\n");
                   }Any Guess!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thanks Man this is the real mess happening in my code, thanks for identification.

  • Ftp commands not recognizing local file locations

    Hi folks. I'm trying to design an application (middleware) which takes advantage of the shell to send via ftp, a file to a remote server.
    The login works, but it won't recognize a local path:
    ftp -v -u "ftp://username:[email protected]/subdir1/" ///library/webserver/documents/domain1/alpha.txt
    I have to have focus in the directory where the file is located in order for this to work:
    cd /library/webserver/documents/domain1/
    ftp -v -u "ftp://username:[email protected]/subdir1/" alpha.txt
    But that adds another step to the process, and it doesn't do me any good.
    Is there something I'm missing, or do I have to use that to provide focus in that command? I thought the command would have taken care of it.
    Cheers

    Yeah I have had that same problem. Now, I can't even connect to any ftp sever outside of the network (or maybe even not at all). I need help. No matter what I try, it won't work on my computer. I've used System Preferences, Safari, Finder, and even Terminal. The problem appears to be only on my computer, but similar problems like login problems have appeared every once in a while on computers in the same network as me.

  • How to publish my site iWeb on a FTP servor ?

    How to publish my site iWeb on a FTP servor since Mobilme is no longer available ?

    You might want to check out third party hosts like Machighway or Hostexcellence or others who offer low cost website hosting. They will give you the info you need to plug into iWeb's ftp page to upload the site. they cost less than mobileme and offer more.
    Apple has some tutorials on ftp and iweb. http://www.apple.com/findouthow/web/#ftp
    Hugh

  • Could ftp, now can't

    For some time I've used Fetch, Cyberduck and Transmit.
    I have two non-.mac account that I have been able to ftp to without problems.
    Recently if I try to ftp to my Charter account Cyberduck will time out, Fetch and Transmit just indicate that they are attempting to connect.
    The other account give me an authentication error.
    I have not changed anything.
    With the Charter account, per their docs, I used parallels, windows and IE to attempt do do it with the browser. I could not access the page.
    I sent the link to my wife and she was successful on her PC with IE.
    This really has be baffled.
    Charter didn't have a clue, as you might suspect.
    Any thought?
    thanks

    You might want to try a couple of those tests again. I see a few errors. The fact that the first two worked tell me that the network is working correctly.
    This test is good:
    charlesusher$ telnet ftp.n2thenet.com 21
    Trying 12.180.246.2...
    Connected to ftp.n2thenet.com.
    Escape character is '^]'.
    220 www FTP server (Medusa Async V1.21 experimental) ready.
    You connected fine. It won't 'prompt' you for a username/password because we're doing this manually. If you want an actual prompt, just do 'ftp ftp.n2thenet.com'.
    charlesusher$ telnet ftp.webpages.charter.net.com 21
    ftp.webpages.charter.net.com: nodename nor servname provided, or not known
    This one looks like you messed up the hostname. I suspect it's ftp.webpages.charter.net and not ftp.webpages.charter.net.com.
    I tried telnet webpages.charter.net and got this:
    telnet webpages.charter.net
    Trying 209.225.8.65...
    elnet: connect to address 209.225.8.65: Operation timed out
    telnet: Unable to connect to remote host
    This one failed because you left the '21' off of the telnet command. You should have typed 'telnet webpages.charter.net 21'. The default for telnet is 23 so their firewall probably threw this away.
    Retry these and I bet you'll see they all connect fine.
    Make sure none of your FTP clients have any sort of proxy configured.

  • Bonjour, Je cherche une imprimante virtuel qui générerait automatiquement un pdf et ensuite le transférerait sur un ftp hors réseau local suivant une adresse programmée.  Merci pour votre aide

    Bonjour, Je cherche une imprimante virtuel qui générerait automatiquement un pdf et ensuite le transférerait sur un ftp hors réseau local suivant une adresse programmée.  Merci pour votre aide

    Bonjour,
    Merci d'avoir posté votre question su rle forum de National Instruments.
    Pourvez-vous vérifier si les variables sont bien visibles dans le Distributed System Manager dans Start>>All Programs>>National Instruments>>Distributed System Manager ou par LabVIEW >> Tools>>Distributed System Manager
    Pouvez-vous aussi regarder le lien suivant :
    Troubleshooting Network-Published Shared Variables :
    http://digital.ni.com/public.nsf/allkb/6E37AC5435E44F9F862570D2005FEF25?OpenDocument
    Brice S.
    National Instruments France

  • Need help : cannot anymore select local info in site definition only remote

    Hi
    I made the mistake choosing in site deffintion for remote info and not local info
    Now it seems impossible to reverse it cannot anymore select local info in site definition only remote
    So now I can not make the site normally.
    I've closed dreamweaver a couple times and tried it again and even my pc but it seems to be something irreparable?
    Does anyone know a better idea than reinstall?
    thank you
    Paul

    You are on the Basic Tab of the Site definition dialog in DW CS3.  Unfortunately, that's also the more confusing way to define a site.  Nevertheless, you'll note that there are 3 selections across the top of the dialog:
    1.  Editing Files
    2.  Testing Files
    3.  Sharing Files
    Have you already filled out the first two?
    A site definition in DW *could* only have the first of those three filled out - you really only need the local site defined until you are ready to upload your files (assuming you are only creating static pages - that is, pages without server scripting).
    To define most remote sites, all you need to do is to select that you connect to your remote server using FTP, and then to state the folder within which your website files are stored on the remote server (often this is a folder called 'www' or 'wwwroot' or 'public_html').
    In my mind, the better way to define a site is to go right to the Advanced tab - it's less confusing because you just fill in all of the fields without going through this 'wizard-type' interface....
    So - does that help at all?

  • I need helping!!! configuring RDP access to my local server from a remote location on my Cisco ASA 5505 Firewall.

    I need helping configuring RDP access to my local server from a remote location on my Cisco ASA 5505 Firewall.
    I have attempted to configure rdp access but it does not seem to be working for me Could I please ask someone to help me modify my current configuration to allow this? Please do step by step as I could use all the help I could get.
    I need to allow the following IP addresses to have RDP access to my server:
    66.237.238.193-66.237.238.222
    69.195.249.177-69.195.249.190
    69.65.80.240-69.65.80.249
    My external WAN server info is - 99.89.69.333
    The internal IP address of my server is - 192.168.6.2
    The other server shows up as 99.89.69.334 but is working fine.
    I already added one server for Static route and RDP but when I try to put in same commands it doesnt allow me to for this new one. Please take a look at my configuration file and give me the commands i need in order to put this through. Also please tell me if there are any bad/conflicting entries.
    THE FOLLOWING IS MY CONFIGURATION FILE
    Also I have modified IP information so that its not the ACTUAL ip info for my server/network etc... lol for security reasons of course
    Also the bolded lines are the modifications I made but that arent working.
    ASA Version 7.2(4)
    hostname ciscoasa
    domain-name default.domain.invalid
    enable password DowJbZ7jrm5Nkm5B encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.6.254 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address 99.89.69.233 255.255.255.248
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    ftp mode passive
    dns server-group DefaultDNS
    domain-name default.domain.invalid
    object-group network EMRMC
    network-object 10.1.2.0 255.255.255.0
    network-object 192.168.10.0 255.255.255.0
    network-object 192.168.11.0 255.255.255.0
    network-object 172.16.0.0 255.255.0.0
    network-object 192.168.9.0 255.255.255.0
    object-group service RDP tcp
    description RDP
    port-object eq 3389
    object-group service GMED tcp
    description GMED
    port-object eq 3390
    object-group service MarsAccess tcp
    description MarsAccess
    port-object range pcanywhere-data 5632
    object-group service MarsFTP tcp
    description MarsFTP
    port-object range ftp-data ftp
    object-group service MarsSupportAppls tcp
    description MarsSupportAppls
    port-object eq 1972
    object-group service MarsUpdatePort tcp
    description MarsUpdatePort
    port-object eq 7835
    object-group service NM1503 tcp
    description NM1503
    port-object eq 1503
    object-group service NM1720 tcp
    description NM1720
    port-object eq h323
    object-group service NM1731 tcp
    description NM1731
    port-object eq 1731
    object-group service NM389 tcp
    description NM389
    port-object eq ldap
    object-group service NM522 tcp
    description NM522
    port-object eq 522
    object-group service SSL tcp
    description SSL
    port-object eq https
    object-group service rdp tcp
    port-object eq 3389
    access-list outside_1_cryptomap extended permit ip 192.168.6.0 255.255.255.0 object-group EMRMC
    access-list inside_nat0_outbound extended permit ip 192.168.6.0 255.255.255.0 192.168.0.0 255.255.0.0
    access-list inside_nat0_outbound extended permit ip 192.168.6.0 255.255.255.0 object-group EMRMC
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 host 99.89.69.334 eq pcanywhere-data
    access-list outside_access_in extended permit udp 69.16.158.128 255.255.255.128 host 99.89.69.334 eq pcanywhere-status
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 host 99.89.69.334 object-group RDP
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 192.168.6.0 255.255.255.0 eq ftp
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 192.168.6.0 255.255.255.0 eq ldap
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 192.168.6.0 255.255.255.0 eq h323
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 192.168.6.0 255.255.255.0 eq telnet
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 192.168.6.0 255.255.255.0 eq www
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 host 99.89.69.334 object-group SSL
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 192.168.6.0 255.255.255.0 object-group NM522
    access-list outside_access_in extended permit tcp 69.16.158.128 255.255.255.128 192.168.6.0 255.255.255.0 object-group NM1731
    access-list outside_access_in extended permit tcp 173.197.144.48 255.255.255.248 host 99.89.69.334 object-group RDP
    access-list outside_access_in extended permit tcp any interface outside eq 3389
    access-list outside_access_in extended permit tcp host 66.237.238.194 host 99.89.69.333
    access-list outside_access_in extended permit tcp host 66.237.238.194 host 99.89.69.333 object-group rdp
    access-list outside_access_in extended permit tcp any host 99.89.69.333 object-group rdp
    access-list out_in extended permit tcp any host 192.168.6.2 eq 3389
    pager lines 24
    logging enable
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    icmp unreachable rate-limit 1 burst-size 1
    asdm image disk0:/asdm-524.bin
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 1 0.0.0.0 0.0.0.0
    static (inside,outside) tcp 99.89.69.334 3389 192.168.6.1 3389 netmask 255.255.255.255
    static (inside,outside) tcp interface 3389 192.168.6.2 3389 netmask 255.255.255.255
    access-group outside_access_in in interface outside
    route outside 0.0.0.0 0.0.0.0 99.89.69.338 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    http server enable
    http 192.168.6.0 255.255.255.0 inside
    http 0.0.0.0 0.0.0.0 outside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto map outside_map 1 match address outside_1_cryptomap
    crypto map outside_map 1 set peer 68.156.148.5
    crypto map outside_map 1 set transform-set ESP-3DES-MD5
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash md5
    group 1
    lifetime 86400
    crypto isakmp policy 30
    authentication pre-share
    encryption 3des
    hash md5
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    dhcpd auto_config outside
    tunnel-group 68.156.148.5 type ipsec-l2l
    tunnel-group 68.156.148.5 ipsec-attributes
    pre-shared-key *
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
    service-policy global_policy global
    prompt hostname context
    Cryptochecksum:f47dfb2cf91833f0366ff572eafefb1d
    : end
    ciscoasa(config-network)#

    Unclear what did not work.  In your original post you include said some commands were added but don't work:
    static (inside,outside) tcp interface 3389 192.168.6.2 3389 netmask 255.255.255.255
    and later you state you add another command that gets an error:
    static (inside,outside) tcp 99.89.69.333 3389 192.168.6.2 3389 netmask 255.255.255.255
    You also stated that 99.89.69.333 (actually 99.89.69.233, guessing from the rest of your config and other posts) is your WAN IP address.
    The first static statement matches Cisco's documentation, which states that a static statement must use the 'interface' directive when you are trying to do static PAT utilizing the IP address of the interface.  Since 99.89.69.333 is the assigned IP address of your WAN interface, that may explain why the second statement fails.
    Any reason why you are using static PAT (including the port number 3389) instead of just skipping that directive?  Static PAT usually makes sense when you need to change the TCP port number.  In your example, you are not changing the TCP port 3389.

  • When you expand to show local and remote sites, in DW CS6 how do I get the local to be on the left?

    When you expand to show local and remote sites, in the previous verions of DW, the files type (local or remote) selected when not seeing both, automatically came up on the left.  I liked local when I am editing and when I am ready to upload I expand to see both local in remote.  Before, the one you had selected, in my case local, was always displayed on the left.  Now in CS6 when I have local selected before I expand, the local is on the right and remote on the left. For me that is not correct.  I find that having local on the left works best for me like reading, left to right, I want the local on the LEFT so I can put the updated from left to the remote on the right. 
    -->In DW CS6 how do I get the local to be on the left?

    Thank you so much!  That did it! 

  • Mea Culpa - Internet Explorer now renders my iWeb 2 test site correctly?

    After umpteen server tweaks I finally got my iWeb 2 test site uploaded
    http://www.mjweber.com/mjwredsite/mjweber/welcome.html
    It displayed as designed in Safari on my MBP. I then fired up XP in Parallels and loaded the site in Internet Explorer. I didn't expect it to work but it did. Now I'm really stymied!
    I've had numerous compatibility issues with iWeb 2 and IE in the past week paralleled here by hundreds of other posts here. Now, when I finally upload the site, it suddenly works?
    Either the Internet gods are playing with me or the IE incompatibility stems from launching a published iWeb 2 folder from a local XP hard drive. That's where my navigation menus didn't display. What else can I say? I'm going to have a drink.
    I'd appreciate independent site validations by anyone not using Safari or OS X... Linux, Unix, Windows, Netscape, IE, etc. Thanks!
    http://www.mjweber.com/mjwredsite/mjweber/welcome.html

    Hi thanks for the advice, the text is centred vertically , left aligned and there is plenty of space at the end. I will try increasing width/height but not sure if that will help as box is already much bigger than text.
    In fact it works perfectly on another web page ...thats what surprising ....even the html for the two pages is identical from what we can see!
    Take a look at
    www.cibsys.com/cibsys1/index.html on the UK site and run down the various pages on the left side to see what happens (if you have IE on a PC). On the PC on some pages perhaps 30% eg workflow services the menu on the left fails to draw correctly leaving the text un readable.
    Thanks

  • Upload to FTP Host... not remembering ftp settings

    Upload to FTP Host works well, but the settings are not remembered for subsequent uploads.  How can I save the FTP Upload settings in Muse 2.2 for re-use?

    Sachin,
    Thank you for your note.  My installed version of Muse version 2.3 does not remember any of the FTP settings in the Upload to FTP host… dialog box.  This behavior is contrary to your report that Muse remembers FTP credentials.  From my repeated experiences this function has no retention of previous dialog entries.
    How can I make the Upload to FTP Host… remember the FTP site login, password, etc.?

  • The version 0000000075 of development configuration is now available

    Hi experts,
    when im loging into nwdi im getting pop up with below message , can u please explain what is the verison 0000000075 and why is it asking for that..
    The version 0000000075 of development configuration is now available
    Do you want to update the development Configuration ?
    Regards
    Govardan Raj

    Hi Govardan,
    a track has a server side development config (created as per the domain data settings and track data settings i.e. includes cbs, dtr, cms url, sld nameserver and the software component dependencies).
    It is an XML file you can check in CMS webui -- Track Data -- Build variants -- display development config.
    If you create a devconfig in your NWDS, then this XML file is getting synced to your local space (this is the file called .confdef).
    After this no more sync is getting done, but the locally stored .confdef is used by the devconfig, so it knows, which cms, dtr, cbs , sld to contact, etc. in other words: how to use the track.
    If you change on the server side devconfig (by changing on say cbs, dtr or sld url or SC dependency setup) then NWDS recognizes that its locally stored .confdef became outdated.
    This is why you have that popup that the server side devconf version XY is now available and you can make the locally stored one up to date.
    I hope this answers your question.
    Best Regards,
    Ervin

Maybe you are looking for

  • How can I get the variable with the value from Thread's run method

    We want to access a variable from the run method of a Thread externally in a class or in a method. Even though I make the variable as public /public static, I could get the value till the end of the run method only. After that scope of the variable g

  • Double space for period. How about comma, too?

    It's already kosher with the interface guidelines to double space at the end of a sentence to get a period, so how do I get people on the bandwagon to make the spacebar a dual- or tri-function spacebar: double tap for a comma, period, or question mar

  • Help - iPhoto Library mangled

    Hi, Any help would be greatly appreciated as I cannot find any answers in other posts. The situation: I ran out of space on my Macbook Air, so I copied my iPhoto library (65GB) onto an external drive. Then bought a new iMac and, using iPhoto 11, sele

  • I need help on re- installing my itunes

    I upgaded my itunes to its latest version but an error happened before the installation was completed. After i tried using my iunes w/o the updates but i just receive an error message related with the quicktime player.I've read several questions abou

  • I'm a newby to Treo 700wx. Two questions...

    1.  The "start" button that is supposed to open the "Today" page is not working.  I can get to this by using the stylus, but not with the button itself.  Is this a hardware problem? 2.  I have loaded my contacts and phone numbers, but when someone ca