User Profile
Collapse
-
The reason for this is because this thread is old and majority of the posts are from pre 2020.... -
This thread is old. Only the recent ones show the latest OSes.Leave a comment:
-
Can you check to see if you have CURL enabled in your local PHP installment?
Are you using XAMP or anything similar for local development? What OS?
Niheel
BytesLeave a comment:
-
Check the variable $urlback by echoing it before the header statement.
If that checks out.
Then try this.
header("Locatio n: $urlback");Leave a comment:
-
Peter,
Seems like you missed some context in the question.
@ADezii asked if anyone asks how to upload a file to a sharepoint folder using PHP.Leave a comment:
-
Seth,
Wouldn't the first option create a bit of a problem if there are multiple "Deleted User" employees and the audit records get jumbled.
The second option is seems like a better approach, but that would probably require code/query modifications to not show employees with that flag?
I like the flag approach.Leave a comment:
-
You will need to make sure you have the IIS rewrite module installed and then you have edit your Web.config file
https://www.iis.net/downloads/microsoft/url-rewrite
In the rewrite section you will have to add something like this
Code:<rewrite> <rules> <rule name="redirect" stopProcessing="true">
Leave a comment:
-
The best free IDE for go might VS Code and using the "GO" plugin for viscose.
https://code.visualstudio.com
https://marketplace.visualstudio.com...Name=golang.go
If you have a little bit of resources to spend try GoLand from JetBrains.
https://www.jetbrains.com/go/
It's $89/ with a discounted renewal. It's a full fledge IDE with error detection, suggestions, refactoring, code completion...Leave a comment:
-
If you're connected to the internet and the server can be accessed without git, you should be able to fetch the contents.
git init
setups a new repository for new code
when you dogit clone https://github.com/example-repo/example-lib
it should pull and setup a local respository of the code for you, which you can start manipulating and pushing to that
Code:# get public repo git clone https://server/repo-location
Last edited by Niheel; Dec 27 '21, 07:05 AM.Leave a comment:
-
Have you tried rebooting Safe Mode?
https://support.microsoft.com/en-us/...ion=Windows_10
https://www.dell.com/support/kbdoc/e...-in-windows-10
How was your storage space prior to the update?...Leave a comment:
-
Most languages use similar constructs.
Learn one language well and you can pick up other languages a lot easier.
There is no real answer to "what programming language should i learn first?".
You could start by thinking about what you want to build.
Use the language(s) that are known for that.
For example,
Building a web app, you would probably want to use...Last edited by Niheel; Oct 25 '21, 05:26 PM.Leave a comment:
-
The short answer is set a cookie (bits of data stored on the client by the browser).
Store the session id information in a cookie and this will allow you to let the session persist.
How to set a cookie in PHP:
Code:$cookie_name = 'sessionid'; $value = uniqid(time()); $expire = time() + 60*60*24*3; // 3 days from now $path = '/blog'; $domain = 'www.mysite.com';
Leave a comment:
-
Swiss,
At first, I thought you were trolling the OP with the recommendation.
Thanks for providing more context for the approach you presented. It's appreciated.
On the other side of spectrum, the clubhouse service is built for mass communication as a platform.
I would imagine clubhouse stack is a cloud back-end. Most likely AWS/GCP with the iOS front end ( which was probably...Last edited by Niheel; Mar 28 '21, 05:07 PM.Leave a comment:
-
Swiss,
This caught my attention
Why would one not use Unix or Linux? Also Windows 7 EOL was January 2020?...Last edited by Niheel; Mar 26 '21, 08:20 PM.Leave a comment:
-
Thank you for posting! This is pretty neat.
Is that the video of this AI function in action?Leave a comment:
-
I don't know if it's possible to get two lines from the same ISP with one being a dedicated IP. It might be possible if you are at a commercial location.
Cisco's handle dual wan relatively easily.
Here is the primary and secondary wan configuration links directly from the Cisco docs for this model.
Primary Wan
https://www.cisco.com/c/en/us/td/doc...onfiguration/x...Leave a comment:
-
Are you trying to build commercial/consumer software or a scientific/engineering UI?
Unless you payup for a software package like QT which has modules that you can use like QtSQL a full suite might be hard to get.
Have you thought about trying something open source like KIVY ( kivy.org )? They have some built in APIs for storage and even specifically redis.
https://kivy.org/doc/stable/api-kivy.stor...Last edited by Niheel; Mar 14 '21, 04:00 AM.Leave a comment:
-
I don't know about the best game engine, but there are some popular ones:
GameMaker
Game Salad
Amazon's LumberyardLeave a comment:
-
Congratulations to the soon to be parents!
Just ran the program. It works.
The only other thing you can do is add validation of the input and display errors. Maybe use a function to check input?
Possibly by using something like this:
Code:def check_user_input(input): try: # Convert it into integer val = int(input) print("Day is ", val) except
Leave a comment:
No activity results to display
Show More
Leave a comment: