This topic is locked

"500 - Internal server error"

2/28/2016 10:48:21 PM
PHPRunner General questions
A
anubarak65 author

PHPRunner v8.1
Im using XAMPP (v3.2.2) Apache and MySQL to run my application. It consist of 8 tables and all im doing is insert and show data.
I used the Upload via FTP function to upload my files into server after build. and used the DB script to create my database at the server.

But when i go to my website i get the "500 - Internal server error". Everything works fine in my localhost testings.

M
mhollibush 2/29/2016



PHPRunner v8.1
Im using XAMPP (v3.2.2) Apache and MySQL to run my application. It consist of 8 tables and all im doing is insert and show data.
I used the Upload via FTP function to upload my files into server after build. and used the DB script to create my database at the server.

But when i go to my website i get the "500 - Internal server error". Everything works fine in my localhost testings.


Check you DB connection

located in the connetions/ConnectionManager.php

Make sure your credentials are correct
$data["connInfo"][0] = "Server";

$data["connInfo"][1] = "username";

$data["connInfo"][2] = "password";

$data["connInfo"][3] = ""; <- only needed if your server uses a different port other than 3306

$data["connInfo"][4] = "database";

$data["connInfo"][5] = ""; //currently unused

$data["connInfo"][6] = "1"; //currently unused

$data["ODBCString"] = "DRIVER={MySQL ODBC 3.51 Driver};Server=localhost;Uid=root;Pwd=;Database=results;OPTION=3";

$connectionsData["results_at_localhost"] = $data;

$this->_connectionsData = $connectionsData;
I had the same issue when I first started using PHPRunner - it may not be your issue, but that is where I would start

Admin 2/29/2016

Ash,
you need to make sure that detailed error messages are enabled in both IIS settings and web browser settings (if you use IE). This way you can see detailed error messages and post it here.