Can't upload multiple images to Facebook album through Safari

I switched back to Safari on my Macbook Pro after downloading Yosemite. I heard it was the best browser for the new OS.  I am experiencing problems uploading multiple images to a Facebook album. I have to go back to the basic uploader and upload them one at a time. Is there a fix?

Thanks for a reply.
I've signed in already and it works with few images. But when i try to share large amount of images ,the menu "facebook" was disappeared.

Similar Messages

  • How do I upload multiple images to d-base through a single page?

    I can upload a single image with a form to my MySql database with no problem.  It sends the file name to the database then stores the image in an image file.
    But now I want to upload multiple images in the same way from the same PHP page.  Each multiple upload needs to be stored to a single record (designated user that's logged in).  I have a field for each image in the database.
    This may give you a better idea of what the database looks like:
    Username
    ID
    image1
    image2
    image3
      scmeeker
    5
    dotty.jpg
    hello.jpg
    kitty.jpg
    jdmeeker
    7
    So now I want to upload multiple images for each image field.  When it works correctly, it should send the name of the image file to the proper field and then send the image to the image folder.  I've tried it several ways with no luck at all.
    Any one have any ideas???
    Thanks!

    I think you would be better off having two tables in you database. One would be a users table that has all of the user data including a user id (the primary key for this table and the foreign key for the other table). The second would be an images table. You would use the images table to upload infinite (well, as many as the db can handle) images. The trick, is that each record in the images table would have a foreign key, which would be the user id for the user that uploaded the image.
    This way your users wouldn't be limited to three images but could upload as many as you want to allow them to. The association of the user id, which has to be unique to each record in the users table (there cannot be duplicates, it should be your primary key on the users table), to the user id in any number of records in the images table is what will allow this to work.
    EX:
    The users table
    user_id
    f_name
    l_name
    email
    other_info
    100001
    first
    last
    [email protected]
    100002
    f_name
    l_name
    [email protected]
    The images table
    image_id
    src
    user_id
    10000000001
    /db_imgs/img1.jpg
    100001
    10000000002
    /db_imgs/img2.jpg
    100001
    10000000003
    /db_imgs/img3.jpg
    100002
    10000000004
    /db_imgs/img4.jpg
    100001
    10000000005
    /db_imgs/img5.jpg
    100001

  • How can i upload multiple pictures on facebook using the ipad 2? Because i've tried uploading before but it should be one by one. Please help.

    Thankyou.

    How are you accessing facebook? I do it through Safari and can upload multiple pics. Are you doing that or through the app?

  • I just imported 70 photos successfully, edited them, and then attempted to upload them to a Facebook album.  It did not work and got hung up, so I force quit IPhoto and was going to try again.  The 70 photos have DISAPPEARED!!  Help !!!!

    I just imported 70 photos successfully, edited them, and then attempted to upload them to a Facebook album.  It did not work and got hung up, so I force quit IPhoto and was going to try again.  The 70 photos have DISAPPEARED!!  Help !!!!

    What version of iPhoto? Assuming 09 or later...
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    Regards
    TD 

  • I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    Logged the call with SAP who directed me to 'Define settings for attachments' in IMG and setting the 'Deactivate Java Applet' & 'Deactivate Attachment versioning' checkboxes - problem solved.

  • How can you upload an image to MYSQL using php?

    Ok this is a joint thread with one of my other ones because no one else  was posting on it, so I did not get what I needed, so, How can you  upload an image to mysql so when some one logs on to my site, they see  or can upload there own avatar, now there are loads of problems with  this, 1) many people don't know how, 2) It's not every day you try to  encode a image into mysql, 3) Letting people upload images into mysql  can cause traffic problem with people trying to log in. So that's it.

    Uploading images into MySQL is a bad idea, for more reasons than you mention. You should store the images in a directory on the server instead. But if you want to learn the hard way, here is the method:
    The mysql data type must be blob.
    The form enctype must be multipart, like this: enctype="multipart/form-data"
    The form input field myst be type file, like this: <input type="file" name="upload"/>
    Here is example code that prepares the variable $photodata to be inserted into the database.
      $uploadfile = $_FILES['upload']['tmp_name'];
      $photoname = $_FILES['upload']['name'];
      $uploadtype = $_FILES['upload']['type'];
      if ($uploadfile != "") {
    $tempfile = fopen($uploadfile, 'rb');
    $filesize=filesize($uploadfile);
    $width=getimagesize($uploadfile);
    $widthx=$width[0];
    $heightx=$width[1];
    if (($widthx > 102) or (heightx > 135)){
    $image_too_big = " but the image size was too large and was not submitted.";
    } else {
    $photodata = fread($tempfile, filesize($uploadfile));
    $photodata = addslashes($photodata);

  • How can i upload a image file to server by using jsp or servlet.

    Hi,
    I m gurumoorthy. how can i upload a image file to server by using jsp or servlet without using third party API. pls anyone send me atleast outline of the source code.
    Pls send me anyone.
    Regards,
    Gurumoorthy.

    I'm not an applet programmer so I can't give you much advice there.
    If you want to stream the file from the server before it's entirely uploaded, then I don't believe you can treat it like a normal file. If you're just wanting to throw it up there and then listen to it, then you can treat it like a normal file.
    But again, I'm not entirely certain. You might be able to stream the start of the file from the server while you're still uploading the end of it, but it probably depends on what method you're using to do the transfer.

  • Can't drag an image to an album?

    I am probably doing something boneheaded here (which I usually end up doing at least a few times per day)... but, I have a project, within that project are two albums. I have each album open (via option click). Is there a reason I can't drag an image from one album into the other by way of the browsers for each? IE, click on image A within the album's browser, I will call that album 1 and then drag the image to another browser, let's call it album 2. I could have sworn I have done this before, but now I can't? I can drag the image from the active browser to album 2 via the inspector pane, just not via the two albums browser windows? Kinda of a slow down to move from adjustments to projects back to adjustments when I should be able to drag and drop.
    TIA,
    Mike

    Hi Mike,
    So the issue is that you can't drag between two browser windows, but you could before?
    Can you set the HUD to adjustments, the sidebar to projects (and expand the project to show the "To" album) and drag and drop between those?
    Message was edited by: Ultrapix

  • How can I upload an image to this forum

    How can I upload an image to illustrate a problem? I have a tiff image of 41K, and I click on the camera icon to try to upload it, but an error message says
    "[The content type of this image is not allowed.]". What do I have to do?
    Thanks

    You need to use a jpeg image or a PNG image. Use GraphicConverter 7.3 to change the format.

  • Function for uploading  multiple images, say 5000 , of any type?

    Hi,
    I want to upload multiple images which are stored anywhere, be it a local system or a server, to the SAP database just by clicking a single button. The method should be able to pick all the images and check their file types and upload it.
    My concerns are that:
    1. How to specify the path where the images are stored?
    2. How to check the extension of the different files. it is possible that the folder may contain some other file types? So how to distinguish between them?
    3. How to deal when the folders may contain some subfolders?
    4. How to display the uploaded images back to the user?
    Regards
    Amit Kumar Singh

    I would guess its because all of the file fields all have the
    same name. Try naming them dynamically: micro1, micro2, micro3,
    etc.
    A few minor comments about the code
    - Afaik, setting the VALUE has no effect for input fields
    when type="file"
    - FILE is deprecated. Use CFFILE.ServerFile instead
    - You don't need # signs here <cfset numberoffields =
    #cookie.micro#>
    Not tested

  • Galaxy Nexus can't upload sent images?

    EDIT: This should be titled 'Galaxy Nexus can't upload received images?'
    I've been getting pictures sent to me, but I can't view them on my phone..?
    They're being sent to me, but when I get them they tell me: who it is from, message size, and the exp. date (5 days after I receive it) of the message.
    Next to that bit of info. it has the 'Download' option. When I select it it shows it attempts to download, but it isn't ever able to.
    I thought the images would come up straight away when I opened the message, but it's not all that big of a deal to have to select it to 'Download', but I can't even do that.
    Anyone know what's going on/how to fix it?

    Reply to: Anne154
    Hmm.
    Well, I had everything for the settings the same, other than the various things done to save battery life (haptic feedback and what not).
    After I got on and was looking around for an answer to this issue I saw that turning the WiFi on and switching over to CDMA can save some battery life, so I did that as well.
    I can try switching the settings around a little and see if I can figure something out.
    Could you give me some direction as to what exactly you were asking me to change/check?
    I can figure things out if you give me a minute to look around and give me some info. to go off of, but as far as talking about things I don't always know the terms and things people use..
    With that said I Think I'm answering your question with, I had service when the messages were sent, I'm not sure if I had the WiFi on at the time or not.

  • How can I upload multiple files or whole folder structures in one go to the Cloud?

    How can I upload multiple files or whole folder structures to the Cloud in one go? Uploading lots of files singularly does not help my workflow.
    All help is much appreciated.
    Paul.

    Hi,
    Uploading multiple files is browser specific.
    Internet explorer won't allow to select and upload multiple files on the cloud.
    If you want to upload multiple files then you have to login to Cretaive cloud using Firefox or Chrome web browser, then you can select multiple files in the Browse window to upload.
    You can't upload folders directly.
    Thanks,
    Baljeet

  • Can we attach multiple images to a pages document in one go rather than drag and drop in to a media placeholder?

    Can we attach multiple images to a pages document in one go rather than drag and drop in to a media placeholder?

    Danny Spry wrote:
    Can we attach multiple images to a pages document in one go rather than drag and drop in to a media placeholder?
    Danny,
    Sure you csn. Don't be afraid to try this kind of stuff for yourself. If things don't work out, just Command-Z your way back to the previous state. In this case it should work just great. Once your multiple selection appears in Pages, click off the selected new objects to de-select them, then select them one at a time for positioning.
    Jerry

  • How can I upload a (image) file through an applet ?

    How can I upload a (image) file through an applet ?

    have a look at http://www.haller-systemservice.net/jupload/
    i'm using Apache Jakarta HTTPClient to create a new HTTP connection to the webserver and sending a new POST request, which holds the image file. (So it's RFC1867 conform)
    there is also an open source implementation of such an applet on sourceforge. it's also called JUpload, but i think it's not maintained any more.

  • How can I upload a video from my PC through I tunes to camera roll on my iPhone? Is there an app or format of specific video supported? Sync from photos include video doesn't work for me.

    How can I upload a video from my PC through I tunes to camera roll on my iPhone? Is there an app or format of specific video supported? Sync from photos include video doesn't work for me.

    download the new you tube apps in i tunes, in os6 just pick a video in the photos apps and select share, the old you tube app icon will appear

Maybe you are looking for

  • Low resolution when burning slideshow?

    I have created a slideshow using iPhoto. It looks great when I hit the play button. But when I burn it to a CD and then play it (either on the same computer or a different computer) the quality of the photographs noticeably diminishes. I can't find a

  • LCD Monitor Resolutions

    Having a slight problem with a Viewsonic VX2235wm LCD Monitor installed approx 3 weeks ago. Installed on a Windows XP Home OEM computer with a MSI NVIDIA GEFORCE NX6600-TD 256MB PCIE TVO DVI   card installed I have been using same setup only as Digit

  • Re-configure the WRT54G2 to work with the EnGenius 5611P repeater?

    I looked around the messages, but could not find anything on this topic. I need assistance with the CISCO WRT54G2 V1. I have an EnGenius EOC5611P (500mW) Repeater set up in my RV and it connects directly to the PC inside my RV using, a CAT 5 connecti

  • PO Output message schema

    Hi All, I have an issue where the PO output message type is triggering even for the changes made in the PO. It is not defined in the Fine tuned PO for change. After lot of R & D found that the indicator set (N, P) during the assignment of Output sche

  • How do I locate Text Editor?

    How do I locate Text Editor?