Solved Error while cleaning cache
-
While I'm trying to celan cache I get an error:
Error thrown while running command "'c:c'". Message: "Malformed parameter "url"." ["exception" => Doctrine\DBAL\Exception^ { …},"command" => "'c:c'","message" => "Malformed parameter "url"."]
How to resolve?
I see I wanna change database password so how can I do if password is encoded in .env file?How can I change database password?
This is wrong:
https://forums.uvdesk.com/topic/1853/how-to-edit-database-info -
I see the issue, UVdesk never support special character so the database password should not be strong with special character... only letters and numbers.
-
If you are using special character in password then please made below changes.
Open doctrine.yaml file (under config/packages)
try to change this:
url: '%env(resolve:DATABASE_URL)%'to this:
url: '%env(DATABASE_URL)%'then make a try if it works !!
-
@Sanjeev thanks, for now I removed special character and resolved in this way.
-
ok fine but please try this way as well as it is the doctrine issue for special character in database password for project.