What can i upload file( .txt,.doc,.zip) from iphone device ?

<Edited By Host>

Sorry, that doesn't work. First, there's no "Import" when I right click on the iPhone icon. The closest thing is "Get Pictures". When I click on that it brings up the Windows Scanner & Camera Wizard. When I click on Windows Scanner & Camera Wizard "next", it brings up the "choose pictures to copy", but all the frames are blank with big red crosses in them. If I click on "explore", it brings up all the IMG files showing under "type" that they're JPEG files. But when I click on any of the IMG files, it brings up the Windows Picture & Fax Viewer with no picture.
HELP!!

Similar Messages

  • Can't upload files to lighttp server

    Hi *
    I'm starting to have grey hairs abut this...
    My sys is Archlinux (64bit), lighttpd 1.4.29-2, curl 7.22.
    I'm trying to setup hhtp server with capability of upload files.
    After basic setup I use following command to test functionality: 
    curl -T "test_file" http://192.168.1.254/test/
    curl's output is following:
    [root@mythtv ~]# curl -T "test_file" http://192.168.1.254/test/
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>404 - Not Found</title>
    </head>
    <body>
    <h1>404 - Not Found</h1>
    </body>
    </html>
    Dir "test" exists & has 777.
    All dirs upper to "test" also have 777.
    lighttpd access log shows following:
    192.168.1.254 192.168.1.254 - [24/Nov/2011:11:57:14 +0100] "PUT /test/test_file HTTP/1.1" 404 345 "-" "curl/7.22.0 (x86_64-unknown-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.0e zlib/1.2.5 libssh2/1.3.0"
    My lighttpd.conf is following:
    server.modules = (
    "mod_rewrite",
    "mod_access",
    "mod_auth",
    "mod_setenv",
    "mod_fastcgi",
    "mod_cgi",
    "mod_webdav",
    "mod_accesslog" )
    server.document-root = "/var/http/"
    server.errorlog-use-syslog = "enable"
    index-file.names = ( "index.php", "index.html",
    "index.htm", "default.htm" , "mythweb.php" )
    mimetype.assign = (
    ".pdf" => "application/pdf",
    ".sig" => "application/pgp-signature",
    ".spl" => "application/futuresplash",
    ".class" => "application/octet-stream",
    ".ps" => "application/postscript",
    ".torrent" => "application/x-bittorrent",
    ".dvi" => "application/x-dvi",
    ".gz" => "application/x-gzip",
    ".pac" => "application/x-ns-proxy-autoconfig",
    ".swf" => "application/x-shockwave-flash",
    ".tar.gz" => "application/x-tgz",
    ".tgz" => "application/x-tgz",
    ".tar" => "application/x-tar",
    ".zip" => "application/zip",
    ".mp3" => "audio/mpeg",
    ".m3u" => "audio/x-mpegurl",
    ".wma" => "audio/x-ms-wma",
    ".wax" => "audio/x-ms-wax",
    ".ogg" => "application/ogg",
    ".wav" => "audio/x-wav",
    ".gif" => "image/gif",
    ".jar" => "application/x-java-archive",
    ".jpg" => "image/jpeg",
    ".jpeg" => "image/jpeg",
    ".png" => "image/png",
    ".xbm" => "image/x-xbitmap",
    ".xpm" => "image/x-xpixmap",
    ".xwd" => "image/x-xwindowdump",
    ".css" => "text/css",
    ".html" => "text/html",
    ".htm" => "text/html",
    ".js" => "text/javascript",
    ".asc" => "text/plain",
    ".c" => "text/plain",
    ".cpp" => "text/plain",
    ".log" => "text/plain",
    ".conf" => "text/plain",
    ".text" => "text/plain",
    ".txt" => "text/plain",
    ".dtd" => "text/xml",
    ".xml" => "text/xml",
    ".mpeg" => "video/mpeg",
    ".mpg" => "video/mpeg",
    ".mov" => "video/quicktime",
    ".qt" => "video/quicktime",
    ".avi" => "video/x-msvideo",
    ".asf" => "video/x-ms-asf",
    ".asx" => "video/x-ms-asf",
    ".wmv" => "video/x-ms-wmv",
    ".bz2" => "application/x-bzip",
    ".tbz" => "application/x-bzip-compressed-tar",
    ".tar.bz2" => "application/x-bzip-compressed-tar", # default mime type
    "" => "application/octet-stream",
    debug.log-request-handling = "enable"
    accesslog.filename = "/var/log/web-access.log"
    url.access-deny = ( "~", ".inc" )
    $HTTP["url"] =~ "\.pdf$" {
    server.range-requests = "disable"
    static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
    server.pid-file = "/var/run/lighttpd.pid"
    server.reject-expect-100-with-417 = "disable"
    fastcgi.server = (
    ".php" => ((
    "bin-path" => "/usr/bin/php-cgi",
    "socket" => "/var/run/mythtv-php-fcgi.socket",
    "broken-scriptfilename" => "enable",
    "bin-environment" => (
    "db_server" => "localhost",
    "db_name" => "mythconverg",
    "db_login" => "mythtv",
    "db_password" => "mythtv"
    setenv.add-environment = (
    "db_server" => "localhost",
    "db_name" => "mythconverg",
    "db_login" => "mythtv",
    "db_password" => "mythtv"
    cgi.assign = ( ".pl" => "/usr/bin/perl",
    ".cgi" => "/usr/bin/perl" )
    url.rewrite-once = (
    "^/{1,2}mythweb/(css|data|images|js|themes|skins|[a-z_]+\.(php|pl)).*" => "$0",
    "^/{1,2}mythweb/(pl(/.*)?)$" => "/mythweb/mythweb.pl/$1",
    "^/{1,2}mythweb/(.+)$" => "/mythweb/mythweb.php/$1",
    "^/{1,2}mythweb/(.*)$" => "/mythweb/mythweb.php"
    include "/etc/lighttpd/auth-inc.conf"
    Can somebody hint me where issue might be ?
    Thx n advance !

    @milomir,
    Thx for replay.
    While Your proposal is nice solution - this little now what I want to achieve.
    In my application curl usage is automated (curl is called by user script).
    My script has following entry:
    /usr/local/bin/curl -s -f -T "<file>" "<server>/<path>/<file>"
    Strange enough that I have setup which worked OK sometime ago.
    Since that time I do few system upgrades - and recently I discover that posting files via curl isn't working.
    Last days I was trying many combination including clean install of 64bit arch in VM and try to play with default settings.
    No matter what I'm doing - all the time I'm getting 404.
    I still think I miss something in configuration as i don't believe vanilla Arch/Lighttpd/Curl can't be used as http upload service with standard curt usage (like way it is used in my script).
    So maybe my original Q should be following: why I can't upload files with standard curl/wget usage ?
    -br

  • How can i upload files in servlets and also using jsp

    means that uploading files(.doc) or any files by using servlets and jsps

    yawmark wrote:
    saichand wrote:
    means that uploading files(.doc) or any files by using servlets and jsps
    [http://www.google.com/search?q=How+can+i+upload+files+in+servlets+and+also+using+jsp]
    ~Good topic titles are indeed brilliant search keywords. It's sad to see that it won't even come in the mind of the topicstarters to Google it before posting the topic.

  • How can i upload files from one ip address to another  ip address machine ?

    how can i upload files from one ip address to another ip address machine ?

    i need to copy files from one client m/c to server m/c like sftp
    please suggest solution on this

  • Can't upload file on my wiki

    Last month, I was able to upload files on my wiki with Server 4 and Yosemite. Now, something have change and the uploading just load forever without any error message. It happen even if I'm in the administrator account and on the computer of the server. I have change the permissions of the wiki folder (777), but I still can't upload files!
    How can I fix that?

    Hi Irina,
    Check this:
    /message/2977938#2977938 [original link is broken]
    Greetings,
    Praveen Gudapati
    p.s. Points are always welcome for helpful answers

  • In KE13N How can I Upload files

    In KE13N How can I Upload files ? , Other than file should be in which format?

    Hi
    You need to first save file description from the planning layout.
    You need to go to transaction KEPM open the planning method. It will open in excel format provided you layout is excel integrated . In the menu there will be a option to format setting do this, save the excel sheet in the desktop.
    Once you do format settings and there will be a menu appearing as save file description click on this. After this you can update the excel file downloaded to your desktop and upload through transaction KE13N.
    Anand

  • I like the idea of auto back-up for my new iMac, Ipad and PC Netbook, particularly if I can access all files and data stored on any device.  But I have a Conceptronic router.  Will Time Capsule work with this and how?

    I like the idea of auto back-up for my new iMac, Ipad and PC Netbook, particularly if I can access all files and data stored on any device.  But I have a Conceptronic router.
    1. Will Time Capsule work with this and how?
    2. Can my printer USB be plugged in and then shared between the devices?
    3. Can I create a network and how?
    4.  What happend when a visitor logs onto my existing wireless router?
    I'm new to Macs (well a returning user having started with Mac Plus!!) and not very technical.  Any help / advice will be much appreciated.
    Ray

    The key to what you seem to want to do is to be able to get Apple's Time Capsule router to "join" the network that your Conceptronic router.  I believe that works with some third-party routers, but I've never seen a list of those that work in such a configuration and I have no experience with Conceptronic equipment.
    You might be better off with a Network-Attached Storage (NAS) device instead of a Time Capsule.

  • Can you open files on a pc from time machine?

    Can you open files on a pc from time machine?

    You have to be more descriptive. Partition what?
    File sharing can be accomplished many ways,.
    Network
    Usb flash drive
    External hard drive
    NAS
    DVDs
    It is as simple as copying/saving from one computer/drive to another computer/drive.

  • How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant.  The files show up on the new MacBook but cannot be opened.  Thanks!

    How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant?  The files show up on the new MacBook but cannot be opened.  Thanks!

    Get info then check permissions then add your curent user name (it was probably different on old Mac) and give your username full read/write permissions.

  • TS4006 If I'm receiving a message "all devices are online, but cannot be located" what can I do to be able to locate the devices on a map?

    If I'm receiving a message "all devices are online, but cannot be located" what can I do to be able to locate the devices on a map?

    My understanding is that a device must have access to either WiFi, a cellular network, or (best) GPS in order to establish a location. Of course iPhones can access all three and iPads also if they incorporate cellular.  However, Mac computers don't have GPS or cellular.
    So if a Mac is connected to Internet via Ethernet to a LAN and not WIFi it will not be able to establish a location.  Anyway, that's my experience. 

  • I have an Iphone 4S, and I recently downloaded the IOS7, my Iphone now isn't an Iphone anymore it became an ugly Samsung!!!!! and is much slower!!!! What can I do to get my old better Iphone back???

    I have an Iphone 4S, and I recently downloaded the IOS7, my Iphone now isn't an Iphone anymore it became an ugly Samsung!!!!! and is much slower!!!! What can I do to get my old better Iphone back???

    Unfortunately you can't go back to ios6. Please write to apple - http://www.apple.com/feedback/
    I also think ios7 makes the iphone look like a samsung. Pure Ugly.

  • Can I transfer files to a machine from a machine w/a dead screen?

    Question:Can I transfer files to a machine from a machine w/a dead screen?

    If the MBP with the dead screen is otherwise functional, start it up in Target Disk Mode (Powering it up holding the T key/Firewire connecting the two MBPs).  If the other MBP sees the other MBP, you can click on the HDD icon and transfer files.
    Ciao.

  • What can i do if i buy a stolen iphone from ebay?

    what can i do if i buy a stolen iphone from ebay, can i change in apple with the ticket of ebay?

    You should report the seller to the local authorities and to eBay.  Of course, when you report it to the local authorities, they will probably also hold the stolen property as evidence...  You can provide the police report number to eBay in your filing with them.

  • What can I do against the Identity Check from Entourage

    What can I do against the Identity Check from Entourage???

    Looks like you may have stumped the members. Can you explain in more detail? I've used Entourage for as long as it's been out and don't remember encountering an "Identity check" issue.
    What version of Entourage? X, 2004, 2008, 2011?
    Also --please modify your equipment line to correct your OS version. "iOS" is not a Mac computer operating system. It only runs of iPods, iPads and iPhones, not real computers. Do About this Mac from your Apple menu; that will show your OS version.

  • When i plug my iphone 4s into the laptop itunes says itunes cannot conect this iphone because an error ocurred,(error 0xE80000222) what can i do also i havent activate my iphone so i cant do anything with the iphone either

    when i plug my iphone 4s into the laptop itunes says itunes cannot conect this iphone because an error ocurred,(error 0xE80000222) what can i do also i havent activate my iphone so i cant do anything with the iphone either
    HELPPPPPPPP ME PLEASE!!!!!

    iTunes runs on your computer, not your phone. Install the latest version of iTunes on your computer. If you're using a Mac, and running OS X 10.5, you will need to upgrade OS X first.

Maybe you are looking for

  • SomeJavaClass class can store in somejavaclass.java file? case sensitive?

    I have project in which class names don't coincide with file names absolutely. Difference is in case sensitivity, like Test1 class stores in test1.java file. Is it possible? Maybe it is possible in some OS? How to build the project?

  • Changing modifier keys on only  external keyboad

    There was a similar post that was labelled as solved, but in fact did not address the greater problem. I have the same problem as the original poster in this thread: http://discussions.apple.com/thread.jspa?threadID=778597&tstart=0 but the solution p

  • Cannot connect to the DTR

    I have made an install of JDI according to the installation guides After the implementation of the JDI a try to create an DTR client in Eclipse but in the DTR console in Eclipse a get following message: Ping on server http://localhost:50000/dtr/ retu

  • System.arraycopy (2 dim array) and growth of 2 dim array

    Hi everybody I am working on a program which contains a module that can perform Cartesian product on number of sets. The code I have developed so far is : import java.lang.reflect.Array; public class Cart5 { public static void main(String[] args) thr

  • Keyboard layout issue only with Windows 7, not Windows 8

    Hello, I have a strange behaviour with Remote Desktop on Windows 7. I have a RDS 2012R2 deployment, with TS Gateways, broker and remote desktop collection. I have published a RemoteApp. My issue is with the keyboard layout send by the client. My serv