• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

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