• Resolved helga8

    (@helga8)


    Hello Brajesh,

    I’m using Mediapress and it’s working well on Chrome and Firefox. Thank you for this plugin!
    But when i’m trying to upload photo to Gallery from iPhone or iPad(Safari) and from Edge browser on desktop, after click on SELECT FILES nothing happens.
    At the same time, when I upload a photo on a Post page (front-end) or upload a photo to Media library on Admin dashboard, after clicking on SELECT FILES a window opens for selecting file.
    So Buddypress uploader working good in Safari and Edge.
    Could you please check what is wrong with uploading to Mediapress Gallery in Safari and Edge.

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 32 total)
  • Plugin Author Brajesh Singh

    (@sbrajesh)

    Hi,
    Thank you for using MediaPress.

    Can you please provide me details of which version of MediaPress, BuddyPress, and WordPress are you using?

    We fixed this issue in 1.3.5 for the safari/ios. It’s strange if it is still appearing.

    Please let me know the details and I will assist.

    Regards
    Brajesh

    Thread Starter helga8

    (@helga8)

    Hi Brajesh,
    Thank you for your response.
    WP – 4.9.6.
    BP – 3.0.0.
    PHP – 7.1.16.
    MediaPress – 1.3.7.
    I customize some template files from \mediapress\default\gallery\manage\add-media.php … edit… delete…
    Today I renamed mediapress folder in my child theme and tested SELECT FILES with original MPP. SELECT Files doesn’t work in SAFARI, ios and EDGE.

    Also I’m using WOFFICE theme (2.5.8). May be it can cause this issue?
    Will test MPP with a standard WP theme today.

    Olga

    Thread Starter helga8

    (@helga8)

    I deactivated woffice-child theme – issue remains.
    i deactivated woffice (v. 2.5.8) theme and use WP 2015 theme – I CAN! UPLOAD files in ios and Edge.

    So, there is conflict between MPP and Woffice theme.
    Will try to update Woffice to latest v.2.7.0 and test.

    Plugin Author Brajesh Singh

    (@sbrajesh)

    Thank you for testing and confirming the conflict.

    The issue happens when the shim for uploader is not positioned correctly. Most probably the theme might be doing something with uploader that changes the position.

    Please let me know how it goes.

    Thread Starter helga8

    (@helga8)

    yes…
    I’ll let you know.

    I have another question – how we can limit number of photo uploading with Drag & Drop?
    (To limit number when we SELEST FILES, I used you suggestion I’ve read some months ago.
    Thank you! )

    Thread Starter helga8

    (@helga8)

    I need max limit =1

    Plugin Author Brajesh Singh

    (@sbrajesh)

    It should be simple. We have JavaScript API for uploader that should allow it easily. I will check and share the code a bit late today.

    Thank you
    Brajesh

    Thread Starter helga8

    (@helga8)

    Thank you in advance!

    Plugin Author Brajesh Singh

    (@sbrajesh)

    Hi,
    Sorry for the delay. I have re read your question and it seems that you are looking for a way to limit the no. of files that can be dragged and dropped.

    The file uploader(plupload) does not support it out of the box. It is possible to do it by keeping a flag and removing file from the upload queue on section/dragdrop. At the moment, the hooks that I am providing is not sufficient for this use case. It allows me to restrict but the flag is not cleared later and that makes it hard to upload again without reloading page.

    Here is the code I am using for activity upload limit.

        $(document).on('mpp:uploader:file.added', function (event, mpp_uploader, file) {
            // remove the queued file.
            if (mpp_uploader.uploader.files.length > 1) {
                mpp_uploader.uploader.removeFile(file.id);
                // remove the list
                $('li#' + file.id, $(mpp_uploader.feedback)).remove();
            }
        });
    
    

    Please do not use it. I will be adding a few more events in our next release(next week) and post back again.

    Thank you
    Brajesh

    Thread Starter helga8

    (@helga8)

    Thank you Brajesh!
    I’ll wait your next release.

    Thread Starter helga8

    (@helga8)

    I updated MediaPress. Will test Drag&Drop to upload ONE file at a time

    • This reply was modified 6 years, 8 months ago by helga8.
    Thread Starter helga8

    (@helga8)

    Hello Brajesh,

    Can I use your code for activity upload limit, you’ve posted about 4 weeks ago?

    Thread Starter helga8

    (@helga8)

    Hello Brajesh,

    1. I used your code for activity upload limit. it’s working well.

    2. As for my issue with uploading images on iPhone and iPad, theme developers have found bug in their WOFFICE theme. I hope it will be fixed within 1-2 days.

    Appreciate your help!

    Regards,
    Olga

    Plugin Author Brajesh Singh

    (@sbrajesh)

    Hi Olga,
    Thank you for the updates.

    I am sorry, I haven’t been able to help much recently.

    I had not tested the activity restriction in last update as all the focus was on adding external media.

    I am not sure if it is working for you correctly(seems it did?). Even if it did not, I will be making sure it works in our upcoming update.

    Thank you
    Brajesh

    Thread Starter helga8

    (@helga8)

    Hello Brajesh,
    I still have the problem with uploading photos on iPhone, iPad and in Edge browser.

    I’ve tested your plugin with default WP themes and it is working well.
    But with WOFFICE theme the issue remains.
    Woffice developer has written me:

    “… I re-checked, the theme doesn’t apply any specific style as far as I see. But if it’s still not working when you deactivate all Woffice Javascript calls, that means it must come from the CSS side.

    Can you ask the plugin author more detail about:

    1.

    The issue happens when the shim for uploader is not positioned correctly. Most probably the theme might be doing something with uploader that changes the position.
    Because I don’t see anything we could do that could have an impact. Mostly on two devices.

    2. Is there a theme requirement or a specific style needed?

    Because to me it seems like a missing piece of JS. That again, should not be related to the theme if you remove scripts.min.js and plugins.min.js + cleared your cache…”

    If you’ll have time could you please answer that questions?
    Thank you for advance!
    Olga

    • This reply was modified 6 years, 5 months ago by helga8.
Viewing 15 replies - 1 through 15 (of 32 total)
  • The topic ‘SELECT FILES button doesn’t work in Safari and Edge’ is closed to new replies.