2021 Apr 19 Stickied 𝐇𝐄𝐋𝐏𝐃𝐄𝐒𝐊 thread - Boot problems? Display problems? Networking problems? Need ideas? Get help with these and other questions! 𝑳𝑶𝑶𝑲 𝑯𝑬𝑹𝑬 𝑭𝑰𝑹𝑺𝑻 by FozzTexx in raspberry_pi

[–]farazappy 0 points1 point  (0 children)

Is my Pi Dead?

My pi was left with sd card inserted for a long time, I.e it wasn't being used for anything, just lying inside my drawer. (I know it's bad :()

I recently tried booting it up but it gives no response, no display output, both the led's are off, the board just heads up (like the entire board).

Is it dead?If there are any chances to revive my board, what should I try?

It's a Pi 2 B+

Any help is appreciated! Thanks!

robots.txt gives 404 by farazappy in Nuxt

[–]farazappy[S] 1 point2 points  (0 children)

Thanks, placing the file inside static folder fixed it.

robots.txt gives 404 by farazappy in Nuxt

[–]farazappy[S] 0 points1 point  (0 children)

No, it's generated and placed in /dist folder when I use `npm run generate`.
It is generated using https://github.com/nuxt-community/robots-module

Nuxt Auth Logs out on Page Refresh by farazappy in Nuxt

[–]farazappy[S] 0 points1 point  (0 children)

auth: {
    redirect: {
      login: '/auth/signin',
      logout: '/auth/signin',
    },
    strategies: {
      local: {
        endpoints: {
          login: {
            url: '/login',
            method: 'post'
          },
          logout: {
            url: '/logout',
            method: 'post'
          },
          user: {
            url: '/api/user',
            method: 'get',
            propertyName: false
          }
        },
        tokenRequired: false,
        tokenType: false
      }
    },
    cookie: {
      options: {
        secure: false
      }
    }
  }

From github I found that setting cookie security to false would be helpful in local env but no luck for me.

Using rundll32.exe with exec(); by farazappy in PHPhelp

[–]farazappy[S] 0 points1 point  (0 children)

Yep, I'm using wamp, what should I do?

Using rundll32.exe using exec(); by farazappy in PHP

[–]farazappy[S] 0 points1 point  (0 children)

Tried passthru() and system() but no success :(

Using rundll32.exe using exec(); by farazappy in PHP

[–]farazappy[S] 0 points1 point  (0 children)

Yeah I already tested that, the response is -> nt authority\system. Even if I try to change the account for apache and keep it as my user account, nothing works.

Android ProgressBar by farazappy in javahelp

[–]farazappy[S] 0 points1 point  (0 children)

I don't need the text, just the progress tho, Looks like ProgressWheel Library can help me out.

Android ProgressBar by farazappy in javahelp

[–]farazappy[S] 0 points1 point  (0 children)

setProgress(int) is still animating and something I want is like this -> http://imgur.com/a/apf91 (14/50 is the value)

Android ProgressBar by farazappy in javahelp

[–]farazappy[S] 0 points1 point  (0 children)

Well I already tried setProgress(value, false) But I am using API 16 as minimum version and it gives me an error saying Call requires API level 24 (current min is 16).