• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Can't upload from mobile after updated to 3.8.12

Status
Not open for further replies.

artonbej

Chevereto Member
I don't know what is the problem but i can't upload from mobile. the problem is that nothing happens when i click the "Start Uploading" or from the link "browse from your computer" also from "take a picture" only works from image urls. the problem is with browsing the image from the phone and can't open the camera... nothing happens when i click.

It works in desktop, when i resize the browser it works but in phone or tablet not.

i removed cache and cookies still don't work.
 
Demo works so is either your phone or the files are not updated properly.
 
Found it. the problem is with this java script
Code:
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
    document.getElementById("myDropdown").classList.toggle("show");
}

// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
  if (!event.target.matches('.dropbtn')) {

    var dropdowns = document.getElementsByClassName("dropdown-content");
    var i;
    for (i = 0; i < dropdowns.length; i++) {
      var openDropdown = dropdowns[i];
      if (openDropdown.classList.contains('show')) {
        openDropdown.classList.remove('show');
      }
    }
  }
}
</script>

i created a custom dropdown menu and when i add this code to header the buttons on mobile not works... removed it from header and placed only on image.php and now from home page the buttons works but not on image view!

the problem is with this code... so what can cause the problem to that ?
 
the problem is with this code... so what can cause the problem to that ?
Most likely a conflict in the event handler.

Can you upload the code to your website to check the browser error console?

By the way, I will need your website URL.
 
I didn't find any issues uploading either on mobile or desktop.
 
Yes, from image view. Zero issues on both mobile and desktop Chrome.
 
to me does not work. it works only when i remove the js code ! which browser do you use on mobile ?
 
To me dont work, im trying from samsung s6 and iOS but it's not working! don't know what is the problem
 
Since I can't debug it, it could be cache on your mobile device.
 
Still don't work... removed cache, different phones, different browsers and no luck. Only works when i remove the code.
 
Status
Not open for further replies.
Back
Top