3,035
edits
Line 107: | Line 107: | ||
You can edit your database via phpmyadmin if you go to https://update-staging.mozilla.org/db/ using your sandbox username/password. You will be asked to enter your password twice as the first one is an htaccess password to protect the phpmyadmin tool behind it. | You can edit your database via phpmyadmin if you go to https://update-staging.mozilla.org/db/ using your sandbox username/password. You will be asked to enter your password twice as the first one is an htaccess password to protect the phpmyadmin tool behind it. | ||
No error messages will be displayed by default. You can change that via .htaccess or ini_set - you must change display_errors to 1 and set error_reporting. | No error messages will be displayed by default. You can change that via .htaccess or ini_set - you must change display_errors to 1 and set error_reporting. To do this, you can set the following in your config.php: | ||
ini_set('error_reporting', E_ALL); | |||
ini_set('display_errors', true); | |||
== Other Documents == | == Other Documents == |
edits