Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. cbreemer

    JavaScript Model validation error when using Fetch or Axios despite returning a status 200 in the backend?

    Well, better late than never 😂 A resolution could be helpful to others having the same issue.
  2. cbreemer

    Gallery loop on back button function when only 2 images in gallery

    Would it not help to post the NextImage() and PreviousImage() functions ?
  3. cbreemer

    Kivy Example

    Ok, that makes the problem a little clearer at least. I now realize my mistake in blabbing about the debugger Network tab 🙄 I guess you'd better report it to kivy support then. I have a feeling there must be more detailed information than just "not found" which seems a peculiar thing to report...
  4. cbreemer

    Kivy Example

    What do you mean with "call the local image"? That it works when you code it like this ? VideoPlayer: thumbnail: 'c:/some_local_dir/my.png' If that is so, why would it not work when you use an URL ? Is it actually trying to download the png file ? Have you checked the Network tab ...
  5. cbreemer

    JavaScript Set breakpoint on loading time

    That seems to be exactly how a data breakpoint works !? Still not going to work on a document that is not fully loaded yet, I think.
  6. cbreemer

    Kivy Example

    Looks like it should have worked. Have you checked the debugger's Network tab to see if it's trying to download it ?
  7. cbreemer

    JavaScript Set breakpoint on loading time

    I could be wrong but I don't think you can do that. The DOM is not guaranteed to be complete until the page is fully loaded. It seems to make sense that DOM breakpoints will not work before that.
  8. cbreemer

    what is the difference between ferror and perror and clearerr in c ?

    LMGTFY ! The Tutorialspoint man pages for each of these three functions have a clear explanation as well as an easy to understand example of how to use it. If something is unclear after that, feel free to ask.
  9. cbreemer

    PHP How to encrypt AND decrypt passwords?

    I agree. Implementing "password recovery" by mailing back the original unencrypted password is a Seriously Bad Idea. Which is why nobody ever does that. Send back a link that the user can use to set a new password.
  10. cbreemer

    PHP How to encrypt AND decrypt passwords?

    These are just SSL utility functions that require no certificates. Not sure why you think the encryption bit size is related to the byte size of the data encrypted ? It isn't. And anyway, are you honestly thinking of using passwords of that size ?
  11. cbreemer

    Node.JS Can't get any output from the code

    Why ??? Are you scared of the browser ? Please provide some reasoning.
  12. cbreemer

    Node.JS Can't get any output from the code

    That code works fine. Node.js just sits there listening to port 8080, and if you direct your browser to localhost:8080 you get the "Hello World". Spaces in the code of course play no part in this.
  13. cbreemer

    PHP Vlucas doesn't work.

    I had already suggested the exact same thing, if you read the thread above. Apparently it did not help. Thinking about that, it could be that either the browser or the webserver is caching the PHP file so a change is not seen. Worth trying to clear temporary files and/or restart the web server.
  14. cbreemer

    PHP Vlucas doesn't work.

    You'll need to identify your webserver process. I can't do that for you.
  15. cbreemer

    PHP Vlucas doesn't work.

    You should be specifying the PID of the webserver process, not the root PID. Enter this command strace -f -p [pid-of-webserver] -o /tmp/strace.log (probably best done as root). Do your test that produces the error. Terminate strace with CTRL-C Then do grep Dotenv /tmp/strace.log and let's see...
  16. cbreemer

    PHP Vlucas doesn't work.

    Oh ok. Please be more careful when describing your issue. Giving wrong information is a waste of time. I'd try and solve the problem, rather than walk away from it. You wrote "Vlucas does not work" but you don't know that (wrong info again). The problem is that your PHP cannot find it. My guess...
  17. cbreemer

    HTML & CSS jQuery Generated Variable Not Passing to CSS Keyframe Animation on Safari

    I don't see what the problem is. Both animated frames move exactly the same on Windows/Chrome, Android/Chrome and iOS/Safari.
  18. cbreemer

    PHP Vlucas doesn't work.

    It says the error is on line 31, which is $dotenv = Dotenv\Dotenv::createImmutable("../"); So I guess this may need to be $dotenv = Dotenv::createImmutable("../"); I find it strange that you should get a 505 error page. 500 - HTTP Version Not Supported. Are you sure it's not 500 – Internal...
  19. cbreemer

    PHP Vlucas doesn't work.

    I don't know anything about Vlucas Dotenv, but what do environment variables have to do with a server status 505 ? I would look in the server logs for more information about the 505 error.
  20. cbreemer

    JavaScript Safari can't play videos with sound using IntersectionObserver

    Interesting. On what platform ? I'm on iOS 17.5.1 (which implies Safari 17.5.1) and it doesn't work. Neither play or sound.
Back
Top Bottom