Issue with quote site command,FTP

Hello SDNit's,
We have come accross a wierd problem where in we are trying to set the record length using the QUOTE site command .
The command works alright when we run it on the FTP server but when we execute the same using the FTP_COMMAND function module it returns a unsuccessfull return code.
Any inputs on this will be greatly appreciated.
Thanks,
Sid.

Hi,
It sounds like you have enabled 'Auto-Click' for some folders by accident - this causes all the links contained within to open in tabs.
Go into the bookmarks manager and remove the checkbox for Auto-Click from the affected folders.
Hope that helps.

Similar Messages

  • Just activated BlueAnt S4 with my iPhone4 and having an issue with the Phone Commands

    Just activated BlueAnt S4 with my iPhone4 and having an issue with the Phone Commands - as I have multiple numbers for people (ie: iPhone, Work, Home), is it the BlueAnt that is having the issues or the iPhone? Tried to eliminate info on my partner's contact in with only 2 contact numbers (iPhone, Home) and one or the other is totally screwing up. Seems, from BlueAnt website, that it would be the iPhone contacts...and the guessing begins?!! Anyone else have similar issues when BlueAnt S4 was paired and giving 'Phone Commands'?? Any suggestions would be beneficial as I've spent way too much time on the web looking for a good fix/answer. Thanks.

    On your new phone: Settings>General>Reset>Erase All Content & Settings. Start over, this time using your new ID.

  • Issue with Executing OS commands from Stored Procedure

    I am trying to execute the scripts provided at :
    http://github.com/xtender/XT_SHELL
    provided by xtender user.
    As required, I have asked my DBAs to grant privileges by executing the following scripts:
    Begin
      --change to needed permissions and execute
      dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/factiva/ODS/bin/CVIM_Rpt_ExportCSVFile’, 'read,write,execute' );
    end;
    /where CVIM_Rpt_ExportCSVFile is my script residing in the Unix server where my Oracle is installed.
    The error I am facing when I try to execute the following command is:
    select * from table(xt_shell.shell_exec('/var/scripts/CVIM_Rpt_ExportCSVFile',100))
    Exception:the Permission (java.io.FilePermission /var/scripts/CVIM_Rpt_ExportCSVFile execute) has not been granted to ODS. The PL/SQL to grant this is dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )I have asked my DBA to also execute the following scripts: - But I still see the same error as above. I am not able to figure out whats going on. Can anyone pls help me out??
    EXEC Dbms_Java.Grant_Permission('ODS', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC Dbms_Java.Grant_Permission(ODS', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )

    DUPLICATE
    ===============================================================
    Issue with Executing OS commands from Stored Procedure
    ==============================================================

  • I am having issues with a site for work. it loads all the links on the left side of the screen. is there a way to fix this or get an older version of fire fox?

    Its my office intraweb and I was told its not compatible with this upgrade

    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • ISSUE WITH SUPPLIER SITE OPEN INTERFACE IMPORT PROGRAM in R12

    I am facing issue while submitting supplier site open interface import program programmatically using fnd_request.
    I am uploading the interface tables with the mandatory data and running the standard Request Set for Suppliers.The program is creating the Suppliers but is unable to create the Supplier Sites.It is getting completed with no rejections as well as imported records.
    It is updating the Supplier Sites Interface table (ap_supplier_sites_int ) with status as rejected with no rejected records in ap_supplier_int_rejections table.
    I am using the following code.
    Step 1 - call set_request_set
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Calling set_request_set...');
    success := fnd_submit.set_request_set ('SQLAP', 'FNDRSSUB852');--'FNDRSSUB1703');
    IF (NOT success)
    THEN
    RAISE srs_failed;
    ELSE
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'Calling submit program first time...'
    END IF;
    -- Step 2 - call submit program for each program in the set
    success :=
    fnd_submit.submit_program ('SQLAP',
    'APXSUIMP',
    'STAGE10',
    'ALL',
    1000,
    'N',
    'N',
    'N',
    CHR (0)
    IF (NOT success)
    THEN
    RAISE submitprog_failed;
    END IF;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'Calling submit program second time...'
    success :=
    fnd_submit.submit_program ('SQLAP',
    'APXSSIMP',
    'STAGE20',
    'ALL',
    1000,
    'N',
    'N',
    'N',
    CHR (0)
    IF (NOT success)
    THEN
    RAISE submitprog_failed;
    END IF;
    -- Step 3 - call submit_set
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Calling submit_set...');
    req_id := fnd_submit.submit_set (NULL, TRUE);
    IF (req_id = 0)
    THEN
    RAISE submitset_failed;
    END IF;
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Finished.');
    And in the interface table the record status is rejected and ther is no corresponding record in ap_supplier_int_rejections.
    but the supplier is getting created succesfully.
    ### Steps to Reproduce ###
    INSERT INTO ap_suppliers_int
    (exclusive_payment_flag,
    vendor_interface_id,
    vendor_name,
    segment1,
    vendor_type_lookup_code,-- set_of_books_id,
    status
    VALUES ('N', --'N',
    ap_suppliers_int_s.NEXTVAL,
    'TEST_REC4',
    4428813,
    'VENDOR', --2041,
    --rec_spl_site_bank_hdr.set_of_books_id,
    'NEW'
    INSERT INTO ap_supplier_sites_int
    (vendor_site_interface_id,
    vendor_interface_id,
    vendor_site_code,
    address_line1,
    city,
    state,
    zip,
    country,
    operating_unit_name,
    status --exclusive_payment_flag
    VALUES (ap_supplier_sites_int_s.NEXTVAL,
    -- VENDOR_SITES_INTERFACE_ID
    ap_suppliers_int_s.CURRVAL,
    -- VENDOR_INTERFACE_ID
    'REC_VDR_SITE4',
    -- VENDOR_SITE_CODE
    'REC_ADDR4',
    -- ADDRESS_LINE1,
    'REC_CITY4', --CITY
    'REC_STATE4', --STATE
    3442121,
    'US', -- COUNTRY,
    ' Test US Operating Unit',
    'NEW'
    );

    Hi
    I have the same issue with ap supplier sites interface program .. Did your problem got solved..I will be thankfull for any help
    Thanks

  • Request management service issue with SSL Sites

    Hi guys,
    I've configured up the request management service, but after start the service on our wfe servers (even before to configure specific web applications),  our ssl sites begin to fail and the event viewer start to alert several errors, by the other hand,
    sites over 80 port with no SSL works as expected.
    I've found some similiar scenarios without a happy ending. Below you can find some of the main errors in event viewer and ULS Logs. In
    this post  solved a very similar issue using ssl host headers with a unique ip but we are using fqdn certificates so it is not an option for us.
    I've already checked the
    good posts from Spencer Harbar and He says that is good idea to use host named site collection, but this is not an option for me because we need to use Self Service Creation and mixed authetnication, besides, None of the Technet literature that i've reviewed
    says  something about don't support path based site collection.
    So far, the only way to avoid this errors is not using the service(discouraging finding), These are some errors we got on Event viewer and logs:
    Machine 'MACHINENAME (AppPool(_LM_W3SVC_515444293_ROOT))' failed ping validation and has been unavailable since '3/28/2014 3:55:48 PM'.  (Just starting the service Event viewer begis to have a bunch of this errors)
    03/28/2014 13:34:01.96 w3wp.exe (0x1184)
    0x154C SharePoint Foundation
    Request Management ai2q3
    High Reached maximum number of failed machines based on ping results for this routing group
    53c2819c-8216-20f3-68c0-c0a3e55c92d5
    03/28/2014 13:34:01.96 w3wp.exe (0x1184)
    0x154C SharePoint Foundation
    Request Management ai2q4
    Medium Unavailable machines based on ping results: MACHINENAME
    53c2819c-8216-20f3-68c0-c0a3e55c92d5
    03/28/2014 13:34:01.97 w3wp.exe (0x1184)
    0x1C2C SharePoint Foundation
    Request Management adc7u
    Medium Mapping URI from 'https://HOSTNAME:443/Style Library/somos-sura-css/inicio/inicio.css' to 'https://MACHINENAME/Style%20Library/somos-sura-css/inicio/inicio.css'
    53c2819c-8217-20f3-68c0-cb2f392c388b
    Seems like it tries to find a site with the machine name, not the host name registered in the Alter access mappings (like portal.acme.com) .
    I would appreciate some feedback about this. Another posts with similar issues:
    http://amolmeshe.blogspot.com/2013/05/sharepoint-2013-request-management.html 
    http://www.akspug.org/Blog/Post/4/Request-Management-and-Error-8316 
    Regards,

    Hi,
    According to your post, my understanding is that you had an issue about the Request management service with SSL sites.
    It’s a known issue that the request management service could not work with the SSL site.
    We had already reported the issue to the product team, as a workaround, if you want to use the request management service, you can change the https site back to http.
    What’s more, the SharePoint 2013 SP1 has been relased, you can install it to check whether it works.
    http://support.microsoft.com/kb/2817429/en-us
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • I'm experiencing 2 issues with a site I'm working on that I can't figure out...

    I'm developing a site for a local 5-star restaurant, and I'm almost done with the development. Unfortunately, I'm a lot better at design then coding, and I have a couple of problems that I have not found solutions to.
    If you have a few minutes, I'd love some advice on how to fix these. They are confusing me a lot...
    1) My pages have a footer that attached to the bottom of the content of the page. On pages that end with tables, there's space between the content and the footer. On pages without tables, it looks fine. Examples:
    Broken:
    [1] http://www.dorseygraphics.com/review/wclg/site_05/winelist.html
    Not broken:
    [2] http://www.dorseygraphics.com/review/wclg/site_05/contact.html
    2) My background image contains some complex elements that overlap (like vines overlapping the content area just a bit on either side). the client LOVES this, so it's not an option to remove. My background is currently a large PNG that easily takes care of the overlapping issue with a simple BG image. But it runs out at the bottom of the page, and some of the pages have content that it too tall for the background.
    Example:
    [3] http://www.dorseygraphics.com/review/wclg/site_05/reviews.html
    How would you go about solving this problem? I'm thinking the easiest way is to add a new containing DIV and use it to extend the content area down, but that would mess up the header (I think). I'm confused.

    1) My pages have a footer that attached to the bottom of the content of the page. On pages that end with tables, there's space between the content and the footer. On pages without tables, it looks fine. Examples:
    Broken:
    [1] http://www.dorseygraphics.com/review/wclg/site_05/winelist.html
    Not broken:
    [2] http://www.dorseygraphics.com/review/wclg/site_05/contact.html
    The problem here is the background image.  Do you have the image without the beige background in the center?  If so what you need to do is leave the background of the body as the URL to the image (without the beige in the center), no-repeat, and leave the color as you have.  Then move the lighter beige color background to the container with the navigation and content.
    2) My background image contains some complex elements that overlap (like vines overlapping the content area just a bit on either side). the client LOVES this, so it's not an option to remove. My background is currently a large PNG that easily takes care of the overlapping issue with a simple BG image. But it runs out at the bottom of the page, and some of the pages have content that it too tall for the background.
    Example:
    [3] http://www.dorseygraphics.com/review/wclg/site_05/reviews.html
    How would you go about solving this problem? I'm thinking the easiest way is to add a new containing DIV and use it to extend the content area down, but that would mess up the header (I think). I'm confused.
    If you look at my above answer I don't think this is a huge problem.  In CSS3 (Safari, Firefox, Chrome, IE9) you can have multiple background images, one static and one repeating in your case.  However, older browsers will not see this, most notably IE 8 and earlier.  You could put the initial image in one layer and make the body background a repeating image but you run the risk of the layers not aligning. 
    Another alternative is to set the max-height of the content container and then set the overflow attribute to scroll in the CSS (overflow: scroll;).  That would make the content container scroll independantly from the page.
    A final alternative would be to discuss the pages with the client again.  For instance with the wine list there are different types of wines.  You could have nested tabbed panels, or you could make a page for each wine type sparkling/white, red, etc. and then have tabbed panels underneath to make the lists shorter.  Otherwise the "Significant Others" or "Riesling" get lost at the bottom of the page, regardless of your background, and users do not know those wines are offered.

  • Strange issue with iWeb site, please help

    Hi everyone,
    Until recently, I've been keeping an iWeb blog of my time in India. Nothing too complicated, just stories and photo albums. However, recently something strange has happened, and the website is no longer displaying correctly. It looks fine in iWeb, and when I publish it in a folder and open it locally, everything is fine. However, after uploading it to my hosting provider, it looks like this:
    http://www.egbertopreis.nl/India/
    (screenshot of what it looks like here: http://egbertopreis.nl/website_screenshot.PNG )
    This is a screenshot from iWeb of what it should look like: http://www.egbertopreis.nl/iWeb_screenshot.png
    I'm using the 'darkroom' theme, but as you can see, something is clearly wrong. It is not displaying the menu correctly, the layout looks strange and it isn't loading any of the articles. The other pages are accessible if you navigate there directly, but there you have the same problem.
    It looks like, for some reason, the CSS and javascript elements cannot be loaded, although I have no idea why this might be the case. They are all just static files, and it worked fine until about a week ago.
    Although I'm an IT professional, I have literally no idea what could cause a problem like this. I went with iWeb because I wanted to use an 'easy' solution and not over-engineer something for once
    Usually what I'd do in a situation like this, is just purge the whole site and re-upload it. However, since I'm traveling around, I don't have fast internet access anywhere and the site is now so large that it would take forever to completely re-upload. This is also the reason why I can't troubleshoot it properly myself...
    Any help (or even words of encouragement :-)) whatsoever would be extremely welcome. Thanks in advance!
    Message was edited by: Heliode
    Edit: Forgot to mention what I already tried myself;
    - deleted the HTML and XML files and let iWeb do 'publish changes'. Everything was re-uploadeded, but issue remained.
    - Deleted the 'Scripts' folder on the remote host, and manually re-uploaded from locally published folder. No effect.
    - Tried randomly changing layout items in the hope that any potentially corrupted files might be overwritten after publishing. No effect.

    Hi Roddy, thanks for your reply. It wasn't just me though; a lot of other people from back also reported the same issue. I was also getting the same thing from behind a wired connection. You can still see and experience the issue yourself if you look here.
    I've since 'resolved' the issue by getting a .Mac trial account. A friend helped me move the whole blog over there, where the site works as it is supposed to:
    http://web.me.com/eggmeister/India/
    Therefore the issue has to be with the hosting. Right now I'm suspecting it might be some obscure configuration issue with the hosting company's server. Maybe something like too low a setting for Apache's 'MAX REQUESTS'. This might cause issues with all the javascript going on in the iWeb pages, loading elements back and forth. I'm in contact with the hosting provider, and will let you know what I find. Might be useful for future reference.

  • IE issue with iWeb  site

    1) Images don't load
    2) in IE 8 : HTML email snippet does not show up
    How can this be resolved?

    Hi Roddy, thanks for your reply. It wasn't just me though; a lot of other people from back also reported the same issue. I was also getting the same thing from behind a wired connection. You can still see and experience the issue yourself if you look here.
    I've since 'resolved' the issue by getting a .Mac trial account. A friend helped me move the whole blog over there, where the site works as it is supposed to:
    http://web.me.com/eggmeister/India/
    Therefore the issue has to be with the hosting. Right now I'm suspecting it might be some obscure configuration issue with the hosting company's server. Maybe something like too low a setting for Apache's 'MAX REQUESTS'. This might cause issues with all the javascript going on in the iWeb pages, loading elements back and forth. I'm in contact with the hosting provider, and will let you know what I find. Might be useful for future reference.

  • Issues with Executing Javascript command in Captivate

    Hi,
    I am having issues with executing javascript for a button in adobe captivate 5.  Let me explain what I am trying to do.  I am working on a WBT that has three skill checks throught the course. These skill checks are not graded or tracked for completion.  I currently have an image button that has the command "Open another project" The first image button is pointed to SkillCheck1 and I have the html file and swf file in the published root folder.  This currently works fine.
    However I want to use javascript to open a new window 800X600 with not toolbars at the top.  I got this part working with the code below:
    window.open('http://www.adobe.com','mywin',
    'left=40,top=40,width=800,height=600,toolbar=1,resizable=0');
    My only problem is, once the popup opens, my WBT goes to a page that says [object] and thats it.  I am uploading two images to show what I have.  Can someone help resolve my issue of the WBT going to

    Ok so I took this link and viewed over it.  I am new to Javascript and know very little about it.  Therefore this script kind of makes no sense to me.
    <script language="JavaScript"><!--
    var windowHandle = '';
    function myOpen(url,name,attributes) {
        windowHandle = window.open(url,name,attributes);
    //--></script>
    <a href="javascript:myOpen('page.htm','windowName','height=100,width=100')">text link</a>
    I chose the option to exectute javascript.  Does captivate need all of this including <script language=JavaScript">  Here is how I edited the script.  Should I make any changes to what is in bold?
    var windowHandle = ''; 
    function myOpen(url,name,attributes) {
        windowHandle = window.open(url,name,attributes);
    <a href="javascript:myOpen('http://www.adobe.com','Adobe Website','height=600,width=800')">text link</a>

  • "New" IE8 Issues with Apple Site?

    As a diehard PC user who just recently purchased an iPod Touch, I am spending a lot more time on the Apple site than in the past. I am having nothing but problems with the main Apple site when I access via IE8. The main page takes forever to load up, then mouse clicks go unnoticed or take forever to respond to. Once I get beyond the Apple home page, things start to improve but a couple of odd errors from time to time. For instance, I was accessing this forum via Firefox, then decided that I wanted to do the same side by side with IE8. Obviously, no issues with any Apple site and Firefox whatsoever. On IE8, when I went to "Login", even after logging out on Firefox, it said that the page didn't exist.
    If I didn't know better, I would think that Microsoft and Apple don't get along All kidding aside, do I have to spend the rest of my life accessing Apple's Web site via Firefox, or can I use IE8 like I do for every other site that I access (yes, I have no other problems with any other sites that I access via IE8, except for Apple's).
    Thanks.

    mlb32704 wrote:
    As a diehard PC user .... Obviously, no issues with any Apple site and Firefox whatsoever.
    So now you get a feel for how the rest of us live, eh?
    I understand how you feel, but Apple clearly doesn't give any consideration to all the hacks required to make Internet Explorer behave. They just code to the web standards that were published about 10 years ago. Having done a moderate amount of web development I can tell you that Firefox and Safari render and behave virtually identically. All version of Internet Explorer require some sort of hacking to make work. I have three separate CSS files I include with my web sites (ie6.css, ie7.css, and ie8.css) that contain distinct sets of hacks to make pages that look perfect in Safari and Firefox look somewhat decent in IE. You would think that the number of hacks would decrease as the IE version number increases, wouldn't you? Sorry. Each version has its own distinct bugs. If there is any web site in the world that shouldn't have to deal with that, it is apple.com. If you don't want to use Firefox, try Safari for Windows.

  • Add protocol args with quotes via command-line

    I am creating a small script to insert objects into the SGD databases (ENS) via command-line and perl. I have some difficulties with protocol-arguments which require quotes (").
    For example:
    /opt/tarantella/bin/tarantella object new_windowsapp --name "o=applications/cn=new_winapp" --width 600 --height 800 --protoargs "<protocol-arguments>"
    The problem comes when I need to add multiple protocol-arguments with quotes like: -dir "c:\Program Files\Application Directory"
    Can someone tell me how to add those arguments including the quotes?
    Thanks,
    Remold Krol | Everett

    Try to use the single quote ( ' )
    say, for instance
    protoargs 'dir "c:\Program Files\Application Directory" '
    That works for me.
    Regards.

  • Issues with cross-site CAS redirect of OWA users

    Hi,
    I am having an issue with our CAS servers, possibly since upgrading to SP3 (I am not 100% if the upgrade caused it). We are currently on Exchange 2010 SP3 RU4.
    I have tested logging into OWA on each CAS server with a mailbox from the same site as the CAS, and it works fine.
    But if I am using a mailbox from the opposing site, I get this scenario:
    1. User reaches site 1 CAS server
    2. User logs into site 1 CAS server with a site 2 mailbox
    3. Site 1 CAS server redirects the user to another form authentication on a site 2 CAS with this URL:
    https://Site2CAS.domain.com/owa/auth/logon.aspx?replaceCurrent=1&url=https%3a%2f%2fSite2CAS.domain.com%2fowa%2fping.owa
    4. User again fills out the form to log in
    5. User gets a blank page with this URL:
    https://Site2CAS.domain.com/owa/ping.owa
    The workaround is that the user then can get their inbox page to load by deleting out the "ping.owa" from the URL. But obviously this is not the intended user experience.
    The redirect would apparently work fine if it wasn't for the addition of this "ping.owa" to the URL. Although I would prefer the user only have to fill the forms authentication out once, the main problem is the blank page.
    Thanks

    Rule of the GAME
    For scenario:
    CAS Array in Internet Facing AD Site and CAS Array in non Internet facing AD site
     It will be CAS Proxy and NOT Redirection
    TO force exchange to use Redirection only, set external URL in non Internet facing site CAS as $Null
    Internet Facing Site
    Internal URL= CAS NLB internal FQDN for that site CAS Array
    External URL= CAS NLB Alias published in external DNS
    Authentication= Form Based with Basic Auth
    Non Internet Facing Site
    Internal URL= CAS NLB internal FQDN for that site CAS array
    External URL= Null
    Authentication= NON Form Based (Integrated Windows Auth)
    Thats All
    Understanding Proxying and Redirection
    http://technet.microsoft.com/en-us/library/bb310763(v=exchg.141).aspx
    Thanks,
    Soumen
    Soumen Ghosh

  • Working with remote site via FTP - getting html only

    I''m using DW to remotely work with the website via FTP. Is
    it possible to make it NOT download all the assosiated files with
    the html, that I'm edtiting? I switched on the prompts in getting
    and putting stuff, but it still tries to download or upload
    additional stuff. I need it to deal only with html.
    Thanks for any clues.

    > It works good, it is just disturbing, that it is trying
    to upload
    > everything
    > besides pages.
    Works good? Make one silly mistake and you are toast.
    Use a version control system instead. DW has a primitive one
    in
    Checkin/Checkout, but it may be all you need.
    I would NEVER do what you are doing in a multi-user
    environment....
    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
    ==================
    "simterra" <[email protected]> wrote in
    message
    news:fpki1l$2ci$[email protected]..
    > hmm, because several people work with my site on the
    same documents, it
    > generates a mess if they deal with editing local pages
    and uploading them
    > to
    > the server. Working directly with pages from the server
    solve this
    > problem -
    > they're always getting the last version (given that time
    they work with
    > them is
    > largely different).
    >
    > It works good, it is just disturbing, that it is trying
    to upload
    > everything
    > besides pages.
    >

  • Help with uploading site via ftp

    I managed to upload the web site via ftp in dreamweaver.  The problem I am having is there was an existing site already on the server.  I thought when I "put" the files for the new web site it would overwrite the existing files when it "put" the index.html file.  All of my files were uploaded, but when I go to the web site url the new site files do not come up, only the old files.  If I type the extension of /index.html the new site files come up.  Can anyone help me figure out what I am missing?  I need my new site files to come up when they type in the url without typing /index.html  Thanks.

    What's the web address?
    Is there more than one index file in the root folder on the server?
    e.g. index.htm, index.html, index.php etc
    Have you cleared the browser cache? Your browser may be showing you files stored in its memory rather than downloading fresh files from the server.
    Although DW should overwrite old files on the server, it's good practice sometimes to consciously delete what you don't want to avoid filename clashes.

Maybe you are looking for

  • Convert video into iPhone video?

    I have a lot of videos that I'd like to send over to my iPhone. Problem is that most (if not, all) do not open in iTunes so I they will not get transfered over to the iPhone. Is there any free mac software out there that can convert almost any video

  • Stain on iMac 20" display

    Hi all! I have an iMac CD2 20" for 3 months. Yesterday at the bottom left corner appeared a yellowish stain. At first i thought it was a stain on the display. After cleaning with a lightly damped soft cloth the stain remained. Changing the background

  • HT3325 Anyway to use pointers in keynote remote?

    Anyway to use pointers from your iphone using keynote remote. I use presentation in ipad.

  • What's Mobile Me? Forgive stupid question

    What's Mobile Me, and do I need it? Please forgive a stupid question.

  • QM information

    Hi, mine is repetitive manufacturing process. I use MFBF to backflush my components and to perform goods receipts. I have a req . I want to create an inspection   lot automaticaly for materials after the final goods receipt is done. How do I do that.