Can someone tell me why this isn't working?

I am trying to upload files to a WebDAV server located at
https://webdav.buzzsaw.com/jasonpratt/webdav
uid: webdav
pwd: Webdav2005 (case sensitive)
I can download and view files, but can't upload anything. Any ideas why not? Please help, O Mac experts!

I created a webdav server on my mac. It is working, however when I upload files, (with the finder), the permissions are not set were I can write. So if I try to copy a folder, the contents will not copy. I have learned that umask can overcome this. However I have not found how to enable a umask_module in apache.
I have tried Transmit 3.2.1 and it is inconvienent, because it does not mount a Volume like the finder would. I coppied the same folder. It shows that it has the same permissions as the folder I uploaded with the finder. drwxr-x--- . However the contents are coppied in the folder.
Another stange thing, If I try to manually copy the contects after the folder and contents failed, then it works. So it looks like I do have write (w) rights.

Similar Messages

  • Can someone tell me why this is not working?

    Im playing with a new design, and I have a top line that will
    be for a menu,
    then directly under it an orange line just for effect.
    I have the orange line on the bottom of the top line, but it
    shows on the
    top..
    Im sure it has something to do with the positioning, but I am
    missing it..
    Thanks
    Gary
    http://www.siddonslaw.com/newindexdesign.html

    Much smarter idea...thanks
    Gary
    "Joe Makowiec" <[email protected]> wrote in
    message
    news:[email protected]..
    > On 21 Sep 2008 in macromedia.dreamweaver, GPaul wrote:
    >
    >> Im playing with a new design, and I have a top line
    that will be for
    >> a menu, then directly under it an orange line just
    for effect.
    >>
    >> I have the orange line on the bottom of the top
    line, but it shows
    >> on the top..
    >>
    >> Im sure it has something to do with the positioning,
    but I am
    >> missing it..
    >
    > Don't do it with an empty div. Just make the
    border-bottom of the
    > container the line:
    >
    > #topline {
    > border-bottom : 2px solid #f60 ;
    > ...
    >
    > --
    > Joe Makowiec
    >
    http://makowiec.net/
    > Email:
    http://makowiec.net/contact.php

  • Most of the time I get The Connection Was Reset. Can someone tell me why this happens?

    When I click on Firefox or when browsing or going from one site to the other I get "The connection was reset" then have to click on Try Again.
    Can someone tell me why this is happening?
    Thank you.
    THE CONNECTION WAS RESET again this morning. I even get this message when I click on the Firefox Icon to get on the net. When for example I download something then it returns me to their site I get The Connection Was Reset. When I uninstall a program and it sends to to their site in order to answer as to why I am uninstalling their program then I get The Connection Was Reset.
    Every time this happens I have to click on Try Again and find this to be annoying.
    This does not happen once or twice a week, it happen ALL THE TIME.
    This morning I went to Safe Mode and followed the instructions on INTERRUPTED OR RESET CONNECTION which tells us what to do but this did not work either.
    Would be great if someone was able to let me know what to do in order to prevent this message appearing all the time.

    Do not know how to delete this reply. I replied instead of editing my question. I have edited the above now.

  • Several times I've downloaded albums from iTunes to find that some of the tracks did not get fully downloaded so that the track with skip to the next one. Can someone tell me why this is happening and how I can fix it?

    Several times I've downloaded an album from iTunes to find that not all of the tracks were fully downloaded so that some of the tracks will skip to the next one (instead of finishing the song). Can anyone tell me why this happens and how I can fix it?

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the tracks and try redownloading fresh copies.
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • Can someone tell me why adobe reader stops working after a few days.

    Can someone tell me whats wrong with my adobe reader? I'm having to uninstall and reinstall it every other day. I cant open none of my downloads in any of my programs. Please can someone tell me how to fix this.

    What is your operating system?  What is your Reader version?  What exactly means "cant"?

  • Xcoding (1st attempt):Can someone please tell me why this isn't working?

    Hi Folks,
    Please forgive me if this is the wrong forum/area,  I am new here/first post.
    I recently have been trying out XCODE and learning Objective-C.  Coming from a background
    of Microsoft Basic 2.0, it's been a challenge to say the least!
    Here's what I wrote so far,  it's a basic 'wager/dice' game.  I basically want the game
    to keep repeating until the player runs out of money (I know I still have to program
    that into the 'while' function, so I defaulted it for 10 times in the interim). 
    Here's what I need to figure out:
    - The "While" loop is working, yet the 'cash' constantly resets to 1000 each time it starts again. I tried
    {bracketing} the functions, but whether I win/lose the dice rolls, it always resets to 1000
    There's a bunch more things I need to figure out, but if someone can tell me why the 'cash'
    keeps reseting to '1000' each time,  I'd greatly appreciate it!
    - CF
    /* dice wager game */
    #include <stdio.h>
    #include <Foundation/Foundation.h>
    int main(int argc, const char * argv[])
        int r = arc4random() % 6+1;
        int bet;
        int dice;
        int cash=1000;
        int total;
        int loop=1;
        while (loop<10){
        printf("\n");
        printf ("You have %i dollars, How much do you want to bet? \n", cash);
        scanf ("%d",&bet);
        printf ("What is the number you want to bet on (1 out of 6)? \n");
        scanf ("%d",&dice);
        if ( dice == r )
            printf("You guessed it right %i \n",r);
            total=bet+cash;
            printf("You now have %i \n",total);
        else if (r!=dice)
            printf("Your number %i was, the number is %i \n", dice,r);
            total=bet-cash;
            printf("You now have %i \n",total);
            if (total==0)
                printf("You have no more money, game over \n");
                break;
    loop++;

    Thank you!!!
    I know it seems silly to you, but it now suddenly all makes sense to me!
    Thanks!
    Here's the revised code:
    /* dice wager game */
    #include <stdio.h>
    #include <Foundation/Foundation.h>
    int main(int argc, const char * argv[])
        int r = arc4random() % 6+1;
        int bet;
        int dice;
        int cash=1000;
        int total;
        int loop=1;
        total=cash;
        while (loop<10){
        printf("\n");
        printf ("You have %i dollars, How much do you want to bet? \n", cash);
        scanf ("%d",&bet);
        printf ("What is the number you want to bet on (1 out of 6)? \n");
        scanf ("%d",&dice);
        if ( dice == r )
            printf("You guessed it right %i \n",r);
            cash=bet+cash;
            printf("You now have %i \n",cash);
        else if (r!=dice)
            printf("Your number %i was, the number is %i \n", dice,r);
            cash=cash-bet;
            printf("You now have %i \n",cash);
            if (cash<=0)
                printf("You have no more money, game over \n");
                break;
            loop++;

  • Can someone tell me why there isn't any RSS Feed for Apple Hot News?

    I am not getting any news via RSS for Apple Hot News. Does anyone know why?

    stjohnmccloskey wrote:
    So when I use the address book with iCloud, the data is no longer saved locally on my computer as it was with mobile me?
    The data lives on the iCloud server. A cached version is kept on your Mac to speed up viewing and to allow you to access the data when offline.
    I can't answer exactly why you can't sync Google with the iCloud calendar, even with the cached data, not being a programmer: but I'm afraid you can't.

  • Can someone tell me why this swf is so large? (384kb)

    Hi- I'm trying to get this file smaller so it will load quicker.  Any ideas why it is so large?
    http://www.prodentite.com/flashhelp.htm

    first 384kb is not too terrible, kinda big but not too bad. Second, a good way to see how to get your filesize down is to generate a size report. To do this, go File>Publish Settings, click on the Flash tab and check "Generate size report." Next time you test movie or publish the size report will be created. If you test movie, the size report will open in your Output window. You can scroll through that to see what is taking up file size.
    On a quick look at your swf, I see you have multiple images. Are these JPGs? If not, and since they are rectangle with out transparency, they should be jpgs. If they are, in your library, right click on each of them and click "Properties" see what your compression is. Most likely if you havent set this yet each one will have "Use Imported JPG quality" checked. Uncheck this, and set the percentage yourself. It may take some play to get a good balance between filesize and quality. I stick within the 65 - 80% range, depending what quality I need.
    Other than that, optimization is a learning experience. Different people swear by different methods. But the most important is to make sure your files are clean.

  • TS1702 My applications are not downloading.. All I get is "waiting" can someone tell me why this is happening?

    When I download an app it doesn't download automatically any more.. I've only had my iPad less than a month.
    Just wondering why it has decided to change? X

    Here are a number of things that you can try.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to update again. Tap one waiting icon only if necessary to start the download stream.
    You can also try deleting the waiting icons - tap and hold down on an icon until it wiggles - the tap the X on the icon to delete it. Then try to download again.
    You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your app preferences and device settings again.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons
    And you can always finish the app updates in iTunes on your computer and then sync them to the iPad.

  • Can someone tell me why this is not setting the session variable?

    first page
    <?php
    // script1.php
    session_start();
    echo "<form action=\"script2.php\" method=\"post\"
    name=\"name1\">";
    echo "Your name: <input name=\"name\" type=\"text\"
    size=\"20\" value=\"\">  ";
    echo "<input name=\"submit\" type=\"submit\"
    value=\"Submit\">";
    echo "</form>";
    ?>
    second page
    <?php
    // script2.php
    session_start();
    echo('Hello, ' . $_SESSION['name1']);
    ?>

    jlw12689 wrote:
    > second page
    >
    > <?php
    > // script2.php
    > session_start();
    > echo('Hello, ' . $_SESSION['name1']);
    > ?>
    You need to set the session variable first.
    <?php
    session_start();
    if (isset($_POST['name1'])) $_SESSION['name1'] =
    $_POST['name1'];
    echo 'Hello, ' . $_SESSION['name1'];
    ?>
    By the way, using echo to create your form on page one is a
    complete
    waste of time. Just use an ordinary HTML form - a lot less
    typing, and a
    lot more efficient.
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • After i updated my firefox from 3.16 to 4.0.1, have some websites i can't load, and they showed: " database error" but b4 i never got this problem. Can someone tell me why ?

    after i updated my firefox from 3.16 to 4.0.1, have some websites i can't load, and they showed: " database error" but b4 i never got this problem. Can someone tell me why ?

    Nothing is working and I can't find the Roboform toolbar. Your lack of direct support is really irritating- a live chat at least would be helpful.

  • Can someone tell me why the Yahoo mail server (IMAP) keeps requesting my Yahoo email password and says it's incorrect?  Yahoo is my Mac mail server.  This has happened before, but this time I can't get it to 'Cancel'

    Can someone tell me why the Yahoo mail server (IMAP) keeps requesting my Yahoo email password and says it's incorrect?  Yahoo is my Mac mail server. This has happened before, but this time I can't get it to 'Cancel'.

    You will have to contact Yahoo Support.

  • Can someone tell me why Apple cannot produce a Scabble game that works on Mountain Lion. So frustrated that this is not happening with all the technology available.

    Can someone tell me why Apple cannot produce a Scabble game that works on Mountain Lion. So frustrated that this is not happening with all the technology available.

    The only companies that can make a Scrabble game are the companies that own the rights to the game; Hasbro owns the rights in the US & Canada, Mattel owns the rights outside of the US & Canada.
    You need to be speaking to those two companies.

  • Please can someone tell me why I am getting this error?

    I want to call a method (setSquare()) when a JLabel is clicked by the user, the following code should work:
    *private void grid11MouseClicked(java.awt.event.MouseEvent evt) {*
    setSquare();
    But I get this error, please can someone tell me what this means? The method is already defined in the class and I have imported javax.swing etc
    Frame.java:181: setSquare(javax.swing.JLabel) in p1.Frame cannot be applied to ()

    drew22299 wrote:
    I want to call a method (setSquare()) when a JLabel is clicked by the user, the following code should work:
    *private void grid11MouseClicked(java.awt.event.MouseEvent evt) {*
    setSquare();
    But I get this error, please can someone tell me what this means? The method is already defined in the class and I have imported javax.swing etc
    Frame.java:181: setSquare(javax.swing.JLabel) in p1.Frame cannot be applied to ()
    As i dont know what that method needs i can't help you there but i do know you cannot leave it blank. Try adding a number/text whatever or null and see what it does. or check the api and take a look what it needs.
    Edited by: deAppel on Oct 31, 2007 10:35 PM

  • I have an apple tv 1st generation, and there is a setting for airtunes. can someone tell me what this is and how to use it?

    I have an apple tv 1st generation, and there is a setting for airtunes. can someone tell me what this is and how to use it?

    I've looked at that, but on my PC, "look for remote speakers connected with airtunes" isn't an option.
    The only options I get are "prevent ipods [etc] from syncing automatically" , "warn me when [X %] of the data on this computer will be changed" and "forget all remotes". Its also got a list of backups I have saved, as well as a button to reset sync history.
    When I am playing a song, the "airplay" button isn't even visible.
    I am sure that the apple tv setting is on as well. Is there anything else you can help me with?

Maybe you are looking for

  • Setting up desktop printer

    Does anyone know if I can set up a printer and make a desktop printer icon for it if I don't actually have the printer connected to my computer? Please give any tips if you know of them

  • Enhancement spot for PA Infotypes

    Hi, I am working in a object where i have to apply checks in infotype PA 759. Can anyone tell me the Enhancement spot for this.  I know there is a BADI - HRPAD00INFTY.  But as per project guideline, Enhancement spot should be a priority.  While savin

  • "request to server ical failed"

    I get back an error message whenever I click on the red "i" symbol that just showed up on my calendars. I've never had the problem before, and I just re-subscribed to .mac.

  • Very Urgent .Xml Schema throwing error

    XML Schema Following function is throwing Message : [ORACLE ERROR : [ORA-31085: schema "XDh1jUheYAR5PgNAgAILJCxg==" already registered error ROCEDURE validateXmlSchema(inp_xmlMsg IN VARCHAR2, out_isValidDoc IN OUT NUMBER, inp_xmlSchema IN OUT VARCHAR

  • Move photos and catalog without loosing folders

    Hi , I need to move my PSE 7 catalog from my current hard disk ( old HD)  to an other HD (new HD). My needs are: 1) that of moving the fotos to the new HD so that they maintain the folder structure they are in the old hard disk. 2) I also need the ca