Search found 573 matches

by KyleMassacre
Thu Dec 29, 2022 11:41 pm
Forum: Announcements and Site Discussion
Topic: Were back!!!
Replies: 5
Views: 22808

Re: Were back!!!

It’s great to be back.
by KyleMassacre
Tue Dec 17, 2019 3:47 am
Forum: General
Topic: Am I the only one still using NWE?
Replies: -1
Views: 10763

Re: Am I the only one still using NWE?

Although this is necromancy, NWE runs on 7.2 but with a couple small modifications. It’s mainly where your parameters are requiring an “integer” and you pass in a string like “7” instead of 7. Basically you just have to typecast it to an int and it will work fine
by KyleMassacre
Fri Mar 08, 2019 11:20 pm
Forum: Project Showoff Tier I
Topic: Dennis MUD
Replies: -1
Views: 11348

Re: Dennis MUD

I wouldn’t know how to in python but if you wanted to handle it in the html file you could try something like: let consoleLine = []; let consoleLinesCounter = 0; let consileString = ''; function keyHandler(event) { // switch is better if(event.keyCode == 38) { //didn’t check bu I think that’s up con...
by KyleMassacre
Sat Jan 26, 2019 9:15 pm
Forum: Announcements and Site Discussion
Topic: Site Down
Replies: -1
Views: 6247

Re: Site Down

$90? Wow, just wow!
by KyleMassacre
Sat Jan 26, 2019 2:47 am
Forum: Announcements and Site Discussion
Topic: Site Down
Replies: -1
Views: 6247

Re: Site Down

I find it crazy to think that there is a host that only has month-to-month (last time we discussed it) and they suspend the server super quick
by KyleMassacre
Sun Jan 20, 2019 3:41 am
Forum: General
Topic: load order for elements in contentArea?
Replies: -1
Views: 10898

Re: load order for elements in contentArea?

I want to say it is one of a few things, I just don’t remember which one exactly Like Kal said, it’s loaded by order in the database which means in the order the module was installed Alphabetically In any case you can look to see where the hook is created like in lib.php and use something like u*sor...
by KyleMassacre
Sat Jul 14, 2018 3:34 pm
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 39496

Re: Encrypting a password the same in C# and PHP?

Don’t want to bug but did you get it figured out OldRod?
by KyleMassacre
Tue Jul 10, 2018 6:43 pm
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 39496

Re: Encrypting a password the same in C# and PHP?

An example use case would be something like this, Ican’t do the C# part of it but in the PHP side of things: // Return the JWT if the user successfully logs in $username = filter_input(INPUT_POST,'username',FILTER_SANITIZE_STRING); $pass = filter_input(INPUT_POST,'password',FILTER_SANTIZE_STRING); $...
by KyleMassacre
Mon Jul 09, 2018 10:41 pm
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 39496

Re: Encrypting a password the same in C# and PHP?

Send it over HTTPS and you should be fine. I wouldn’t send it as a GET request though
by KyleMassacre
Mon Jul 09, 2018 9:50 pm
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 39496

Re: Encrypting a password the same in C# and PHP?

You shouldn’t have to hash anything on the app side. You should just be able to send his username and password to the server and then you just verify the credentials there with like a 200 HTTP response code and the JWT if it’s good or a 401 error code and an error message if it’s bad. And the token ...

Go to advanced search