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

Similar Messages

  • 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 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.

  • 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

  • Can't upload large docs to Wiki after 3.1.1 upgrade

    After updating to Server 3.1.1, I can no longer upload large files to the Wiki server. Anything greater than a few hundred KB stalls.
    Any ideas what could be wrong?

    Hi Jennifer,
    I tried this just now in an application on apex.oracle.com. I uploaded a CSS file (in Shared Components), edited it, saved it, edited it again, saved it - all changes reflected.
    Are you saying that when you edit it, make your changes, hit Apply Changes, and you go back, your changes are not found? Or is it that your changes are not being reflected at runtime?
    Joel

  • How can i Upload Files from my Flex 2.0 Application?

    How can i do a Upload File funtionality with Flex 2.0? Do i
    have to make the component? How is the code in Flex/ Action Script
    to make this possible?. I'm new in this Flex world and it seems to
    me very interesting to make RIA's Applications; in fact i'm making
    a little Employees Application for my company and i'm trying this
    technology and of course i need the functionality that i asking
    for.
    Regards.
    Andres.

    I haven't tried this, but I believe what you could do is
    append
    requestHeaders to the urlrequest object that you pass into
    the file.upload()
    method. The requestHeaders is an array of name/value pairs
    that would be
    included with your post. At least in theory, I believe that
    shoudl work.
    Good luck.
    Phil
    "tantalo" <[email protected]> wrote in
    message
    news:e3q3mt$138$[email protected]..
    > Hi. Phil, how i commented in the forum the examples
    works ok, with a
    > little
    > changes to make a file Upload. Now i have another doubt,
    i need to make a
    > submit of a form with another fields and the file
    selected.
    >
    > I made a HHTP Service for that purpose with the tags
    Requests like:
    >
    > <mx:HTTPService id="empleadoRequest"
    > url="
    http://andresbarrios:8080/directorio/empleados/insertarEmpleado.jsp"
    > useProxy="false" method="POST">
    > <mx:request xmlns="">
    >
    <empresa>{empresa.selectedItem.data}</empresa>
    >
    <ubicacion>{ubicacion.selectedItem.data}</ubicacion>
    >
    <departamento>{departamento.selectedItem.data}</departamento>
    > <cedula>{cedula.text}</cedula>
    > <nombre>{nombre.text}</nombre>
    > <apellido>{apellido.text}</apellido>
    > <!--Falta Fecha de Nacimiento -->
    > <sexo>{sexo.selectedItem.data}</sexo>
    >
    <estado_civil>{estado_civil.selectedItem.data}</estado_civil>
    >
    <telefono_celular>{telefono_celular.text}</telefono_celular>
    > <extension>{extension.text}</extension>
    >
    <correo_electronico>{correo_electronico.text}</correo_electronico>
    > </mx:request>
    > </mx:HTTPService>
    > I have the global variable called "file" that contains
    the file selected.
    > I
    > want to send this file variable in the HHTPservice call
    EmpleadoRequest,
    > can i
    > do that with a Request tag like another field? or the
    only way is trougth:
    > file.upload(upload.cfm) ?;
    >
    > I want only make a one call to the server to submit the
    fields of the form
    > and
    > to upload the file at th e same time can you help me How
    can i do that?
    >
    > Thanks.
    >
    > Regards.
    >
    > Andres.
    >
    >
    >

  • Can you upload files from the iPad to a Web Browers

    I recently received an iPad and I love it. I would also love to leave my laptop at home and only use the iPad while I'm away. One thing I think is missing for this to be possible is the lack of a native filesystem, as far as I know.
    I know there are many apps that allow you to store and sync documents but I can't find a way to upload files to a website. For example, if I'm on a job site that requires me to upload my resume, the browse button on the browser is not active. I can't upload the files using the documents I've stored in Pages or in readdledocs.
    Does anyone else think this is a major shortcoming?
    Is there a way to do that I'm not aware of?
    You assistance will be greatly appreciated.
    Thanks,
    joe

    I had the same complaint. I actually stopped using my laptop for the iPad. It was frustrating having to go to the laptop just to upload a resume to career builder. I just downloaded iCab browser in the app store. I sent my resume to an external email account and signed in. You need to open the email through the iCab browser and download the file there. ICab has its own download drop box. I was able to them go to career builder and upload a resume without a problem. It may be a pain to start emailing files to yourself just to import them into the app but it's worth it not having to either copy and paste or go back to your laptop. Hope that helps and you found a job.

  • Can't upload files--"Acrobat has encountered a problem"

    I'm experimenting with Acrobat. com as a way to collaborate with peers across the country. Seems like an ideal answer. I'm testing the "free," 2-person version at the moment, and can't seem to upload files to My Workspace. I'm trying to upload two files individually--the first a small MS Word file, the second a 1mb PowerPoint. Each attempt produces an "Acrobat has encountered a problem" error message. I can't even upload a photo of myself for my profile. At first, I thought it might be a firewall/proxy problem, but I ran all the Adobe diagnostics. Everything tested fine. I'm even able to establish video connection in the ConnectNow workspace. I'm working off a T3 pipeline, so I don't think its a volume problem. Help.

    Hi, can you tell exactly what requirements exist?
    I am having the same problem when I try to upload a file. My Admin has opened the site Acrobat.com for me and I can access Acrobat.com via browser, but not upload PDFs. I also cannot upload files for review from other Adobe products (RoboHelp or Acrobat).
    This whole issue seems rather strange to me - an online reviewing process should be designed for professional users and these user are typically behind a firewall. Therefore it would be most important to pinpoint exactly which access rights are required, rather then let the user try and stumble around themselves.

  • Can't upload files to builder on new glassfish install

    Hi,
    Running Application Express 4.1.0.00.32 on Oracle Glassfish Server 3.2.1. Our new install is up and we are getting our applications mostly up and running but encountering one weird thing. We can't upload any files to the Apex builder, e.g. an image export or an application export. After browsing to the file clicking "next" on the import wizard generates a message "File must be selected for upload" and the path just specified dissapears from the screen.
    Sorry to post on the listner forum, but this "feels" like some kind of a front end issue with the new install. Others are posting similar threads on the apex forum and saying its a glassfish bug how to upload files to apex
    That post refers to another off forum post where you can download a glassfish patch. But hey, I'm paying for an official Oracle glassfish, do I need to post an sr for this?
    Thanks,
    Steve

    Hi Steve,
    we discussed that issue here even before the thread you've referenced: {message:id=10205967}
    Of course, this fix is intended to be used for GF OSE, not the officially supported version.
    But hey, I'm paying for an official Oracle glassfish, do I need to post an sr for this?That's how you get support for this. Possibly "My Oracle Support" (formerly known as Metalink) already has a bug filed for this and an official patch to be downloaded. This forum is not intended to replace or duplicated contents that the official product support has published.
    By the way, your version number seems to be inaccurate: The most recent Oracle GlassFish Server available today is 3.1.2.2. If you are running on 3.1.2, you should download Patch 147904-06 (assuming you are on Linux; search the corresponding patch for your OS if different). This will update your GF to 3.1.2.2, which is what Oracle Support will usually ask you to do if you open a service request for a product running on an older patch level.
    -Udo

  • Can't upload files to internet

    I've been having trouble with my MacBook. It's running OS X 10.6.7 with a 2.4 GHz Core 2 Duo.
    Whenever I try to upload files to the internet via any protocol, be it through the browser, a bittorrent client or anything that I've tried, if the upload speed is anywhere above roughly 5 kb/s after a few seconds uploading, (anywhere from what seems to be immediately to around 30 seconds) I lose my internet connection entirely, and the only way to regain it is to restart AirPort. I don't even know where to start trying to fix it. It only happens with my MacBook, and it's making it impossible to upload videos to Facebook and YouTube, and I've managed to keep the connection long enough to upload relatively small sound files to Soundcloud, but I usually need to try at least 4 or 5 times before it will finish without dropping the connection. Can anyone help?

    I think I have a simlar issue, which I have been trying to sort out for a few weeks now. It seems that regardless what protocol is being used, uploading large files causes my office broadband connection to drop. I know it can't be a local MacBook issue because I cannot replicate the same problem on my home network.
    Also - I cannot replicate the issue with a PC connected to the same network. therefore I can only assume that it is something 'under the hood' with the router settings or an ISP issue that is sensitive to how Mac OSX transfers files. We are still trying to get to the root of the problem, but just wanted to add comments in the hope that someone may have seen a similar issue and managed to resolve it?
    Our router is a Netgear DG834N in case that might be relevant ...

  • Can't upload files in Firefox, using flash uploader. Already reinstalled flash, works ok in Chrome.

    I have a website where I can upload files to the site's server utilizing Flash - I have the latest Firefox and the latest Flash plugin (uninstalled and reinstalled). But the upload is failing - I only get an "Unknown I/O message. but only in Firefox - Works ok in Chrome. I have already run the Adobe uninstall/reinstall process, and I have also tried running Firefox in Safe Mode and the problem persists.

    Hi Bilinbaja,
    I am not sure if you are using FTP to upload the files, however this error can sometimes refer to a hardware issue. Please try to toggle the hardware acceleration by right clicking on a item using the flash plug in and selecting settings.
    Please let us know if this improves the performance as well as if this also happens on other computers, or if it still happens after you delete cache and cookies. Each browser has its own cache, Firefox's cache may also be longer. [[How to clear the Firefox cache]]
    Did this help? We look forward to your reply.

  • Can't upload files

    Issues:
    Can’t upload photos to the Internet (Any browser)Facebook, Imgur, etc.
    Can’t attach files to Email.Mail app, gmail, etc.
    Can’t open/save files in Photoshop CS5.Error saying, "Can't open/save because of a program error."
    Steps taken to resolve issue:
    Check for updates
    Run disk warrior from external HDD. Rebuild directory, repaired permissions.
    Downgrade/Upgrade FirefoxDeleted internet plugin “nsIQTScriptablePlugin.xpt” (Then replaced it)Forum said this was an issue with firefox.
    Cleared cache from browsers.
    Notes: I am running a 13" 2011 Macbook Pro with a 250GB Samsung 840 SSD and a 320GB HDD inside. I also have 8GB of Samsung DDR3 1600 RAM. I don't think this is causing any issues because I've been using them for quite some time without any issues.
    Thanks!

    There is benefit to deactivating the cache, as it eliminates the unnecessary cache function for those using high-speed internet access. The downside. as you discovered, is a loss of uploading in Safari. I've sent feedback to Apple requesting they make the Safari Cache a Preference file option in the next version (3.0) of Safari (OS X Leopard).
    In the meantime, my cache is deactivated, and I use Firefox for the uploads.
    You have the option of "awarding" up to two "helpful" designations (to the far right of a person's screen name) to those who have helped you with your question. In instances where your question was satisfactory answered, one "solved" designation is also available. Doing so adds to a person's Level Status, which in itself is helpful for others knowing a person's skill level and their ability to assist others with computer questions. Please consider doing so.
    Mahalo and Aloha from Big Island.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • I Can't upload files anymore

    Yesterday the Upload action was working OK. Last night
    however (till now)
    I'm not able to upload files anymore. When I click the Put
    command (Files
    Panel - Local view > right click a file's name > Put)
    DW seems to connect to
    remote server, but after 60sec it displays the message "No
    response from
    server. Reconnecting". If I don't cancel the process, after
    60 more secs
    another message... confirms the first, giving me the options
    to skip the
    file or close the message.
    What I already have checked:
    1. In Remote Info category of Site's definitions the Test
    button displays
    the message "Connection successful".
    2. In Files Panel, while I'm in Remote view I can
    delete/move/Get a file
    3. When I put the file with another FTP program the transfer
    is successful.
    4. The same with copy/paste the file from Windows Explorer to
    Internet
    Explorer.
    5. DW's Put command doesn't work with either the Firewall
    (ZoneAlarm)
    enabled or disabled.
    6. The same after Export/Remove/re-Import site's definitions
    (in order to
    clear cache)
    7. Windows performance has been checked with Ad-aware, Sbybot
    S&D, Norton
    AV. I've also tried to restore windows to about a week
    before, to no avail.
    8. Re-installation of DW 8.0.2 upgrade pack doesn't solve the
    problem to.
    I don't have a clue what else should I try. Do you?
    </gt>
    Please, remove hyphens to contact me

    Sometimes the sign-in process goes kablooey for whatever reason. It can usually be remedied by tapping the options icon (the cogwheel out in the project selection user interface; upper right) > My Account. Sign in that way and you should be able to get everything going again. I just did it on my Google Nexus 7 2013 with no problems.

  • How can we upload file into to OCS Content repository when we are in Apex

    We have installed the Oracle Application Express 2.2.1 into the OCS 10.1.2 database.
    The Apex authentication is set to operate with OCS SSO.
    We have made a form. There is a browse button on the form. We would like if the uploaded file appeared in the OCS content database repository as
    opposed to Apex document repository.
    To put it into another word, how can we upload the file into to OCS Content repository when we are in Apex.
    Generally speaking, how can we reach content from Apex?
    We have found many java based examples to use content sdk, but how can we use them with Apex? We believe that
    content hasn't got plsql interface.
    i would highly appreciate it if you sent me a full example program.

    Hi Ram,
    Thanks for the reply
    We have a requirement to device a solution to upload the policy documents related to iProcurement
    I am planning to create an OA page to upload the content and planning to use the AOL function security to restrict the users those who can access this page .
    Is there any better way to implement the security?
    Is this approach feasible or is there any better way to approach this requirement?
    Thanks

Maybe you are looking for

  • Need All Three Topics To Be Links

    Hi, I have a webpage where I'm displaying the top three topics dscussed on the site, the way i want this set up is like this, to have the topics displayed on the page as a link to the secetion on the site where all the information on that topic is lo

  • How do I migrate? There are no 6pin-6pin firewire cables...

    I just got my new iMac Intel yesterday. It wants me to hook up a firewire cable between it and my old G4 to transfer settings, etc. I would really like to do this because I have no idea how to set up internet access through Comcast. They sent a guy o

  • Standby destination control file enqueue unavailable

    Hi, more than two days ..totally i tried 3 times for creating standby database in oralce 10g ..everthing working fine but i didnt get archive log from primary database..please help me NOTE: both primary and standby database on same system *#standby d

  • Standard Resource files for CS4 SDK...

    Hi all,   I'm a little new to the SDK, but am making some good progress on some plug-in work. I'm on Mac OSX Snow Leopard and using XCode 3.2.2. I would like to use the standard tool button icons used in stock Adobe products (e.g. trash can, new item

  • I recieved a video...how do I view it?

    I received a video on my phone and my message said to go to vzwpix.com to view it and all I get is a run around! how do you view a video?