No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Buttons and functions are not working after deployment on Ubuntu server

    Framework
    2
    4
    192
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A
      aaronsmith last edited by

      Hello there,

      I’m new to quasar. On my local host, everything works just fine when i check but when I deploy my website functions and buttons are not working while the designs and every other thing seems perfect. Initially, I built this website with vuejs but then to get benefit of SSR, I opted for quasar. I have also deployed my vuejs website but everything works fine there. Now, my question is,

      1. Is there anything else or alternative in Quasar for buttons, functions, v-ifs and that’s why they are not working?

      2. Is there a different nginx configuaration ? This is my nginx configuration,
        server {
        listen 80;
        listen 443 ssl;

        server_name mywebsite.com www.mywebsite.com;

        location / {
        proxy_pass http://127.0.0.1:3000/;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection ‘upgrade’;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
        }

      3. Or Anything that you want to suggest?

      1 Reply Last reply Reply Quote 0
      • A
        aaronsmith last edited by

        Hey guys,

        I searched online but there is very less information about quasar. Can you help me by sharing a tutorial or something like that? To make you understand the issue deeply, here original vue website: https://binarytotext.net/, and here is quasar build: http://138.68.61.240/

        1 Reply Last reply Reply Quote 0
        • A
          aaronsmith last edited by

          Found the reason, this is happening because I have used v-show. v-show will always be rendered and remain in the DOM. v-show only toggles the display CSS property of the element For now i have avoided using v-show.

          1 Reply Last reply Reply Quote 0
          • C
            chinachin last edited by chinachin

            This is a great idea

            https://wordcounter.tools

            1 Reply Last reply Reply Quote 0
            • First post
              Last post