Reputation: 35424
I'm trying to deploy Question2Answer (Q2A) by following this official install guide - where we need to set up
Though I failed to get Q2A run on Google's cloud - as browing the deployed web I get the error as below snapshot.
How would you guys get it deployed successfully?
p.s.
Steps I have made to Q2A's PHP source code
app.yaml
file so as Google App Engine SDK would deploy Q2A applicationThe Q2A source code folder I'm working with is as below.
Upvotes: 0
Views: 300
Reputation: 2880
You just need to remove the root password and leave it like this:
define('QA_MYSQL_PASSWORD', '');
You can find at the documentation that "when you connect from App Engine, you can use the root user and no password"
Hope it helps.
Upvotes: 3