Home > Enterprise >  The ampersand (&) character is not allowed
The ampersand (&) character is not allowed

Time:10-16

I'm trying to add my environment variables for an app through the console and one of those is the database link. It contains an & in it and I don't know how to fix that.

I saw somewhere to try and add "", '' or (slash, I'm new to stack overflow don't mind it)"" but it didn't work. What can I do about it?

CodePudding user response:

If by "database link" you meant some sort of DB URL, for example mysql://... then it got to be urlencoded.

So replace & with &

  • Related