FTP Connection Issues Dreamweaver CS5.5

I can't ftp into the top level directory of any of my hosting accounts with dreamweaver cs5.5
This is becoming a major issue and I'm aware now of other users with the same issue.
First  log in to an ftp server works fine - the test case directory is created  and deleted - and I think it is this which is causing some odd  permissions issue.
Second time you try to log in, the connection is made,  but then any directory listing times out. However if I define a  directory such as /public_html/images/ then it will connect and display  directory listings just fine.  Clicking "Test" in the server definition dialog results in an OK message.
If i FTP in using a different FTP Client (in this case  Transmit) and upload a single file, the issue goes away, and  dreamweaver can again connect - one time only, until I perform this odd  "reset".
This happens on all FTP connections across multiple  hosting companies (all of the hosting companies my clients sites are  stored at).
FTP log is below:
< 257 "/www"
  < 220 Welcome to Proweb Server FTP service (JubJub).
  > USER winfo
  < 331 Please specify the password.
  > PASS
  < 230 Login successful.
  > PWD
  < 257 "/"
  > CWD /
  < 250 Directory successfully changed.
  > CWD /www
  < 250 Directory successfully changed.
  > PWD
  < 257 "/www"
Then it waits for a while before  giving me the following error message (I've extended timeout to anything  up to a couple of minutes, no difference):
Toggling the "USE Passive FTP"  checkbox may help you establish a connection. -Select or de-select the  checkbox and click Test to tray again.
-if you are connecting  using an IPv6 enabled server, please select the "USE IPv6 transfer mode"  checkbox in the Advanced site definition dialog.
If  the problem persists, check you network settings, including the local  firewall settings on your computer, or consult your network  administrator.
I have tried PASV checked and unchecked, performance optimisation, and every other combination available to me. I am not connecting through a proxy.
The  settings on ALL of my sites worked before the cs5.5 upgrade. The  settings on NONE of my sites with a root directory specified work since  the upgrade.  The only thing that has changed is the move to dreamweaver  cs5.5.  I can connect with other ftp clients.  my ftp server settings  are correct. My server and network settings are unchanged. The settings on ALL my sites on other FTP clients continue to work fine.
Am on an i7 2.8GHz Intel iMac running 10.6.7 with 8 gigs of RAM. I have quit all software except dreamweaver and tried running my mac firewall both on and off.
Really running out of ideas, and know of other people with the same issue since the upgrade - what's going on Adobe?!

Same for me, in that I had an unreliable and effectively unusable FTP connection with CS5.5 . I've reverted to CS5, because even though I'll miss a couple of the new features I need to have a working connection to the site when working with PHP - because otherwise I can't see my site at all other than via Firefox. I also suspect that at least a couple of times I've had some sort of corruption occur as a result of the FTP hanging. All was okay before CS5.5, and I may have slagged off a different hosting provider than my present one when it was in fact (at least in part) a DW issue. If it isn't fixed in CS6 then CS6 is unusable for me and I'd definitely be happier with 'unenhanced' CS5 FTP functionality. The theoretical performance gains with the CS5.5 implementation are trivial by comparison with the problems. If all else fails, please revert to CS5 code for the FTP side of things.
UPDATE!!!!!!!!!!!!!!!!!!!!!!! This is now fixed for me. The problem was that I did not have a proper web url entered in my site definition for the remote server. I'm not sure how that was placing any limitation on FTP access - after all, the need for a full site definition was removed a couple of software issues ago - but the fact is that with the correct web address entered I have working FTP on CS6 (and seemingly on CS5.5 too). I had a simple forward slash entered for the web address, probably as a result of some earlier investigation of the local server/remote server relationships for file upload on a PHP site. I was running CS5 with the correct Web Url entered, so that was working and the CS5.5, without the correct Web Url, was not. I vaguely remember reading that the Web Url was connected with DWs management of absolute/relative links and not much else, but it seems that is not the case. The new FTP is MUCH faster and I'm a happy guy. Site menu>>>Manage sites>>>[select your site]>>>Edit>>>Servers>>>[2-click your server]>>>Web URL:    Put in the full URL e.g. http://www.somesite.com . Not sure if you need a trailing / after, but I have one.
UPDATING AGAIN: Through all of that I had turned on the  'IPv6 protocol' and 'Passive FTP' options in an attempt to get working. The result of that was FTP that worked well once transferring files but often took a while to hook up. Deselecting those, and using CS6, I'm happy with my FTP.

Similar Messages

  • Ftp connection and Dreamweaver

    Hi everyone,
    I was all day long reading the posts in this forum and Adobe's about ftp connection issues with Dreamweaver. Hope somebody else has a new idea or experience to help me.
    I have been working and updating 3 websites (different servers) with Dreamweaver 8 with no problem until yesterday. I'm pretty sure I didn't change any settings of my firewall or dreamweaver. But since yesterday I couldn't connect to just ONE of my websites. I always get the message: "Dreamweaver could not connect to the server. User canceled. Operation time out".
    It's odd because when I "test" the connection on "remote settings" it does work. But when I try to only upload any file it doesn't.
    So, I report to the server and it was not a problem with them. I tried to connect by ftp in Firefox and worked. So I realize it could be something with my ftp connection.
    I tried to turn off my firewall, but still not working.
    I tried to test the TCP/IP port 21 (and it is open).
    I tried to delete the site definitions from Dreamweaver and re-create again, but no luck.
    I just didn't re-install Dreamweaver because I'm afraid to lose the connection with my other 2 sites.
    Does anybody have any tip, or link with similar issue that I can get some turn around???
    Please any help would be appreciated.
    Thanks
    Viv
    MacBookPro2,2   Mac OS X (10.4.9)  

    But I don't understand why I get ftp connection with
    2 websites and just one is not working??? should this
    be happening if it was a "port" problem???
    I can help clarify this. With FTP, there are TWO connections. The first is the control connection, and that occurs on port 21. This is where the authentication takes place, and where commands are passed from cliet to server.
    The second connection is the data connection. This is where the transfer of data takes place (including a directory listing). There are two basic ways of establishing this connection, active and passive. In an active connection the server attempts to open a socket from port 20 to a random port on the client. This is the connection which is blocked by firewalls.
    In passive mode, the server sends back a port number that it (or rather a child) is listening on. The client connects to the server on that port, and receives data. The problem is, that while this is happening, the control connection is idle. This may cause the control connection (and thus the entire protocol) to time out.
    So there are quite a few things that can go wrong. If your server only supports active mode and you have a firewall which blocks its incoming connection, eventually the control connection will time out. If your server is load-balancing, or your router tries to recylcle ide connections, the control connection may be shut down. I don't know what's happening in your case, but I can tell you what may be happening with your ports. HTH.

  • Cannot connect from dreamweaver cs5.5 to mysql using the mysql connection wizard

    Cannot connect from dreamweaver cs5.5 to mysql using the mysql connection wizard error Http error 403 or 500 internal server error. I am using ubuntu mysql.
    a manual php script work fine
    <?php
    // open connection to mysql server
    $dbc = mysql_connect('localhost','root','password');
    if (!$dbc) {
                die('Not Connected' . mysql_error ());
    //select database
    $db_selected = mysql_select_db ("msinventory",$dbc);
    if (!$db_selected)
            die('Cannot Connect' . mysql_error());
    echo "TEST DONE1";
    ?>
    but the database connection wizard fails with http error 403 or 500
    i also use the HeidiSQL client and it works, the only problem is in dreamweaver.

    OK.  Did you really mean to ask this question on a ColdFusion forum, if it's DreamWeaver you're having problems with?  You're probably better off raising this on a DreamWeaver forum.  "Using the correct tool for the job" 'n'all.
    Adam

  • FTP Connection Issue in Dreamweaver CS4

    I just reinstalled Windows 7 Home Premium 64 bit and of course had to reinstall Design Premium CS4. Up until now Dreamweaver CS4 (Version 10.0 Build 4117) has connected to ftp flawlessly, however ever since I reinstalled I have been receiving the "An FTP error occurred - cannot make connection to host. The remote host cannot be found" error message.
    What I have tried so far:
    I have double checked that my login information is correct
    I have successfully logged in to the ftp server using another ftp client and through a browser
    Through Dreamweaver I have tried using passive FTP, secure FTP, firewall and none of those settings make a difference.
    I receive the error message whether I click "test" or try to connect through the files panel .
    I have checked my firewall settings and Dreamweaver is an allowed program.
    I don't have access to another ftp server to check if would work in that situation.
    I have uninstalled and reinstalled both Dreamweaver and the entire suite.
    Is there anything else that I need to do?
    Thanks in advance for any help.

    This is a maddening issue that's getting press in various forums, here and on Adobe's site, and all sorts of third party blogs, etc. I spent days wrestling with this with no luck, because in CS3, which I"ve been using for years under OS X, Extension Manager is broken (under Mountain Lion, at least). Installed CS4, CS5—nothing worked. The ""can't connect" error message appears instantly, suggesting that DW wasn't even trying to make the FTP connection, which led me to suspect Little Snitch or some other firewall issue, but this wasn't the case. I isolated login items, repaired permissions, booted in Safe Mode—all with no luck. Finally, I tried opening DW from a different user login and FTP connected. This, at least in my case, pointed to something in the user folder. I narrowed it down to the User/Library folder. Creating a new user and copying the Library folder over copied over the problem, as expected. New user was deleted, and I wen tinto the troublemaking User/Library folder to see what I could see. There were old files and folders there from previous installs, including CS3—speciifically in the User/Library/Application Support folder and, of course, in User/Library/Preferences. After deleting thiese, I found no further problems connecting via FTP in DW CS4. I presume that CS5 also would connect now, but I'm not keen to put it to the test. Under CS4, Extension Manager works fine, which is what I was looking to accomplish in upgrading from CS3. Moral of the story: Adobe CS installations do not like legacy files and folder either in User/Library/Application Support or User/Library/Preferences. Deleting these may work for you, too—at least it's another string to the troubleshooting bow, and this one can be a real bear. Good luck to all who have run into this.

  • The FTP function in Dreamweaver CS5 has suddenly stopped working. My ISP just had to upgrade their FTP servers and they said it was no longer compatible with the FTP in Dreamweaver CS5! Help!!

    Is there any update to Dreamweaver CS5 that will allow the FTP function to be compatible with the new FTP server protocol? Please help. Will I need to upgrade to CS6?

    Ask in the DW forum and be much more specific about the requirements for your FTP connection like its ports, TLS settings and so on.
    Mylenium

  • Problems with FTP connection in Dreamweaver 4

    I hope someone can help me with the following:
    Since recently I can only connect to the FTP host within
    Dreamweaver once a day.
    I have two defined sites in my Dreamweaver 4 and before I
    could connect several times a day both sites - no problem.
    But now it connects once and then when either trying to
    connect to the other defined site or perhaps a while later to the
    first site again (where I connected well on the same day already) I
    am getting the error message: 'FTP error - connection to the host
    cannot be madet'.
    Basically it will now always only connect daily once.
    Anyone any idea what is causing this?
    Many thanks for your help.

    These issues are most often associated with your firewall.
    Please try
    disabling it altogether.
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14834&sliceId=2
    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
    ==================
    "NicknamecomputerABC" <[email protected]>
    wrote in message
    news:g5f3d6$4p1$[email protected]..
    >I am using Windows XP.
    >
    > Am using passive FTP (this is ticked, when the
    connection works)
    > but also tried unticking it, still the same error
    message.
    >
    > Yes, contacted my host.
    > Actually just changed hosts and the previous one, where
    the same problem
    > started a while back, didn't help, mentioned something
    like, that's the
    > 'limitation in Dreamweaver' --- though this doesn't make
    any sense, I
    > think,
    > as it did work before for years?
    > Contacted also my new host, slightly more willing to
    help, had me check
    > several things (also running "command" to see whether I
    connect to their
    > server, and I did.
    >
    > Am using a AVM FritzBox (but also used that one when it
    all worked without
    > problems), it has also now FTP enabled i.e allowing port
    21.
    >
    > What I find so strange is that it does connect, just not
    more than once
    > a
    > day any longer,
    > so the settings must be right.
    >
    > I am using AVG antivirus, but also tried to not using
    it, or not using
    > their
    > shield (firewall) but still the same.
    >
    > I have also tested a third party FTP client (FileZilla)
    but there I am
    > getting
    > the following message:
    > Status: Connection established, waiting for welcome
    message...
    > Error: Could not connect to server
    >
    > So cannot even connect with FileZilla once.
    >
    > Not sure where I can see the FTP log window? (Or is this
    the message above
    > from FileZilla?
    >
    >
    > Many thanks for your assistance.
    >
    >

  • MAMP & FTP connection issues in both Dreamweaver CS6 & CC

    In 8 months time, I've never successfully gotten connected to a MAMP server nor a Netowork Server... I finally called Adobe tech support and after 2 and 1/2 hours, the polite tech told me Dreamweaver CC cannot connect, must download CS6... okay, so he connects to my screen remotely, downloads CS6 and connects it to my GoDaddy server... I thank him profusely and proceed to change all of my GoDaddy passwords ( FTP, database and webpage login passwords ) and then update them in CS6... no luck, same errors I've gotten for the past 8 months??!?!?!??!
    Does anyone know how to actually connect to a MAMP server successfully with CS6?
    Thank you in advance for any and all help with this...

    Today, he spent much time and effort figuring out how to connect to MAMP and thru much trial and error, we concluded that under Bindings, Servers, the server folder path had to be /Applications/MAMP/tmp/mysql and the web URL had to be http://localhost:8888/ which I'd gleaned from a YouTube Video weeks ago, and mentioned to him...
    You are right about the web url (http://localhost:8888/), but the Server Folder for MAMP needs to be /Applications/MAMP/htdocs.
    Check out the MAMP documentation here.
    Once you are done, just to make sure that everything is correctly setup, open http://localhost:8888 in your browser window. It should display your webpage. If it doesn't you need to ensure that your database settings are correct & your Apache, MySQL servers are running.
    Let me know if you need more help.
    Cheers,
    Subhadeep

  • Ftp connection problem with cs5.5

    Hi,
       I am jsut starting to use the Dreamweaver part of CS5.5 after upgrading from CS4. I have been trying to access my previous
    web sites using ftp as I have done before. The pop up window asks for the ftp address which is ftp.sonic.net/pub/users/us  and
    the root directory which is /home/WWW_pages/us . But the pop up box keeps changing the root directory to /pub/users/us and
    setting the ftp address to ftp.sonic.net  whch doesn't work.
    How can I work around this?
                               Thank you,
                                              ~Vonnie A

    Based on instructions on the sonic.net site
    http://www.sonic.net/support/ss/windows/ws_ftp/
    try
    FTP: ftp.sonic.net
    Root directory: /home/WWW_pages/us or /home/www_pages/us

  • Does anyone know how to resolve FTP connection issues?

    I am receiving an FTP error in connecting to anything and I need help figuring out why? I used to be able to connect to godaddy and then all of a sudden it stopped connecting. I tried the proxy settings and turning of my virus protection, but nothing works. In the help area, I tried to connect to dreamweavers ftp example site, but that connection failed also. I am getting a connection timed out response after about 10 seconds and it says I can not make connection to host.
    Does anyone have any other possible solutions? I am thinking of uninstalling the program and reinstalling it just to see if that works, but I would rather not do that. Thank you

    Does this happen with all projects, specifically the sample projects? Click Open on the RoboHelp Starter page and then click Samples in the ribbon on the left.
    If it does, then it might be quicker overall to just uninstall and reinstall.
    Otherwise post back.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Dreamweaver CS4 Search & Replace / FTP connectivity / ctrl + B, ctrl + c

    Hi all,
    CS4 Search and Replace / FTP connectivity ISSUES:
    I use Search and replace tools for some large replace operations on live websites.. However when searching and replacing.. Dreamweaver is constantly having to establish a connection between the server for each file I search and replace in.
    Programs like Pspad have this down to a T. Any chance we can have an update to make the search and replace is faster. It's utterly useless at the moment.
    Biggest problem is if the connection to the server fails whilst searching and replacing text in a document.. The file gets removed from the server.. I have lost now 3 website pages because of this. I edit files live because they are within a test environment.. I don't like working locally because I know programs like Pspad are capable of being extremely fast at editing live.
    Because of this issue, I have had to stop using dreamweaver CS4 for now..
    ctrl + B, ctrl + C ISSUES
    When pressing ctrl + b to add strong tags to text.. Sometimes it doesn't work and I have to goto the keyboard tag editor.. close it again.. Then it works again. So there's a bug there.
    And sometimes ctrl + c copies as if it does (ctrl + a, ctrl + c) ... And it stops once again when I goto keyboard tags and close it again..
    Explain that hehe!
    All the best and thanks in advance.

    jimmyt1988 wrote:
     Any chance we can have an update to make the search and replace is faster. It's utterly useless at the moment.
    This is a user-to-user forum, so no one here can grant your request. File an enhancement request through the official form at http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform.

  • Dreamweaver CS5 WebDave often times out. Can I increase the timeout?

    I am using WebDave to interact with my server. This has worked well for the last year, but for some reason my server load has increased and I am now getting timeouts often, which means pages fail to upload. Dreamweaver is not particularly good at letting you know the page did not upload, so I have a major headache trying to keep the server up-to-date. I have been working with the server people, but they have not found the load on this server to be particularly high and it is not swapping or anything. A good solution is to make WebDave inside of Dreamweaver a little bit more patient by increasing the timeout. FTP does not work for me, since my work firewall blocks FTP on the guest network.
    Question: Is there a way of increasing the default timeout for WedDave connections?
    Dreamweaver: CS5 Version 11, Build 4993
    Computer: MacBook Pro 17" Mid 2010, OS X 10.9.3, 8GB

    Ken you ask good questions. I actually don't know it is timeout, since Dreamweaver only includes in the FTP log successful messages. The failure is almost instantaneous. There is nothing on the Console Log on my Mac and nothing in the site log, but the site log is limited. I get the failure at home and work on two different WiFi. If I connect using a third party WebDav-namely the Mac built-in, then it works. If I use DW WebDav I get hit with failures about 1 out of 4. It sort of warms up after a few successful transfers and will work 3 out of 4 times. I suspect that the problem is related to the apache server is loaded and things are getting cached, and that DW is sensitive to this. That is the reason I wanted to desensitize DW. I don't have DW on a PC nor have access to a PC, but the Mac WebDav test was quite interesting.
    I will try ethernet from home tonight. I was thinking of making sure I have the latest WebDAV running on the apache server, and in DW, but I really can't change either of these, even if I figure out that they are out of date. And if DW is updated, I can't afford the update since Adobe went subscription. I am volunteer and do my Web stuff for free for Academic and Non-Profits.

  • Dreamweaver CS5 constantly quits if FTP is left connected

    I've searched everywhere and have found lots of references to this but no answers.
    Dreamweaver CS5 just quits all the time. I couldn't figure it out for ages and found one discussion that said it had something to do with the the FTP. So if I disconnect FTP, it seams mostly stable. If I forget to disconnect after each upload and leave it for 5 minutes and then try do something / anything... bam!, it just quits out.
    It is so freaking annoying and got to the point where I just can't work like this. Even resorted to not setting up FTP at all and using Filezilla for uploads but doesn't help when you're doing app development.
    Any solutions out there ??

    Hello all,
    I wanted to check in and provide an update regarding our upcoming release schedule.
    For those wishing to upgrade to Creative Cloud - Suitcase Fusion 5 is available today and includes Adobe Creative Cloud plugins, new features and other product enhancements. This Photoshop issue has been addressed along with a few other plugin related bugs. Suitcase Fusion 5 is a paid upgrade.
    For current Suitcase Fusion 4 users - Extensis is planning to release a free update for Suitcase Fusion 4 addressing this and a few other plugin related bugs. I don't have the exact release date yet but expect it to be available for download within the next few weeks.
    I will update this post once it's available from our website.
    We apologize for the inconvenience and appreciate your patience.
    Cheers,
    Chris Meyer
    Extensis Suitcase Product Team

  • FTP Fails in Dreamweaver MX, Same Config Works in CS5

    I've been using Dreamweaver MX for about 5 years and have been using FTP throughout that period.  About a week ago FTP started failing with the error message "An FTP error occurred - cannot make connection to host."  My FTP log is blank, as if it did not attempt to make an FTP connection.  If I save my site config and using that same site config in Dreamweaver CS5, then I can connect and use FTP without issue.  I can also connect with other FTP programs, such as Filezilla. This confirms that I am using correct login information, and FTP is available for the website.  Switching to passive FTP did not help.  Removing and re-installing Dreamweaver MX did not help.  Turning off all my firewalls did not help.  Searching around the web, one person mentioned a similar issue being caused by the server that maintains the website changing their SSH host key changing and were able to resolve that by deleting Dreamweaver's ssh host file.  For him the file was at ~/Library/Application Support/Dreamweaver 8/Configuration/ssh_hosts.  However, it seems to be in a different location for Dreamweaver MX on my Widows 7 computer.  Any ideas on what might be causing this or what I could try?

    BarakObi wrote:
    How about if you take a gamble and reinstall your DW MX?  It could solve the problem. IMHO
    Well - this is a very good suggestion but what puzzles me is why should a software that worked for 5 years suddenly stopped working.  This is completely beyond any sensible reasons.
    I think the MX was initially working in either Windows 2000 or Windows XP and now the NA770 decided to install the same product in Windows 7.  If this is so then it looks like it must be a question of rights attached to that user.  The OP should, perhaps try using as an ADMINISTRATOR or a USER account with those privileges to see if it is anything to do with the rights/security issues of Windows 7.
    We don't know if the product is still running on the old operating system/machine.  5 years ago we didn't have Windows 7 and MX was released well before XP was released.
    I am reluctant to suggest to reformat the HD and clear any bugs that might have entered the system but it is up to the OP to decide now.
    There is no solution to this problem assuming all the configuration settings are correct as claimed in this thread.

  • Can Dreamweaver CS5 connect to MySQL via ODBC?

    I am unable to make a direct connection to an external MySQL database because most hosting provider does not allow this type of connection due to security reasons. I am however able to make an ODBC connection to the database (which I am currently using to connect filemaker to our MySQL database).
    How can I tell Dreamweaver CS5 to connect via the ODBC driver so I can see the MySQL content in my Dreamweaver project?
    I am on a Mac running OS X 10.6.4.

    GeorgeRudd wrote:
    How can I tell Dreamweaver CS5 to connect via the ODBC driver so I can see the MySQL content in my Dreamweaver project?
    You can't - at least not if you want to use Dreamweaver's server behaviors. Dreamweaver uses the original PHP MySQL extension. If you want to connect in any other way, you need to hand code everything yourself.
    On the other hand, if you want to see the contents of your remote database in Dreamweaver, define your remote server as the testing server. Dreamweaver uploads a hidden folder to the remote server to connect to the database. Because the script is on your remote server, it's local to the MySQL database, so gets round the security issue. It then sends the details to your local computer.
    A better solution, though, is to establish a local testing environment. It's more responsive and much more secure. http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html.
    By the way, the failure to get a reply is due, in part, to posting your question in the wrong forum. The forum for issues related to PHP/MySQL and other server-side technologies is http://forums.adobe.com/community/dreamweaver/dreamweaver_development.

  • SFTP connection issue with Dreamweaver 2014

    I have a very weird SFTP connection issue with Dreamweaver CC (2014). I am on a Mac running 10.9.4 and have no problem connecting to my server through SFTP with Dreamweaver CS 6. However, using the exact same settings on CC (2014), I get the following error: "An FTP error occurred - cannot make connection to host. Your login or password is incorrect. Please check your connection information".
    I am truly at a loss here. Command line connection works without problems.
    Any thoughts?

    Hi there,
    Try after rebooting your system or in a different user account on MAC.
    Is there any limit with number of login sessions with your SFTP?
    Could you check with Filezila or similar FTP client and connect to your site, see if you get any error there?
    Thanks.

Maybe you are looking for

  • FAINT sound from Side Speak

    Hi! again, can someone help me configuring X-Fi Fatality & T7900 so that I have proper sound output from all 8 channels. Have Windvd 7. A very faint sound comes out from Side Speakers. When I test speakers, they seem GOOD with proper vol output throu

  • Receiver Determination

    Hi, We are running SAP PI 7.11. Input message: <?xml version="1.0" standalone="yes"?> <SITE_ERROR xmlns="http://test.com/SITE_Error">   <ERROR_DATA>     <ERROR_DATE>20110120</ERROR_DATE>     <ERROR_TIME>060002</ERROR_TIME>   </ERROR_DATA>   <SITE_INF

  • Publishing error (failed to connect to server)

    Using X5, I am trying to publish to our help server (web help pro), but getting a message in the output window "Warining: Failed to publish to 'yourserver'. reason: Failed to connect to server. All my permissions are set up as described here: http://

  • How to use Restricted or Calculated Key figure with Characteristics?

    Hi, Query has characteristics 'Indicator' which has values  'X' and 'Y' depending this value, the Key figure Quantity(which is always +ve) has to be shown on the report either as -ve or +ve. Do I use Restricted Key figure if so, how? Or can I manage

  • Low Res Safari and App Store Dock Icons

    After upgrading Safari to v5.1.4 earlier today I've noticed that the Safari and App Store icons on the dock are pixelated, i.e., low resolution.  Has anyone else seen this problem?  The Disk Utility icon also shows the same behavior.