PHPRunner Frequently Asked Questions
This FAQ answers PHPRunner questions. If you don't have latest version of PHPRunner, please download it here.
If you have question that isn't listed here, feel free to ask your question in PHPRunner forum or contact technical support at http://support.xlinesoft.com.
- Error 1: Warning: session_start....
- Error 2: I enter correct login and password but receive Invalid Login error. I use SQL Server.
- Error 3: Client does not support authentication protocol requested by server; consider upgrading MySQL client.
- Error 4: Call to undefined function mysql_connect() in c:\Inetpub\wwwroot\runner\include\dbconnection.php on line 9.
1. Question:
I receive the following error message:
Answer:
- open with any text editor file c:\windows\php.ini
- find the string started with session.save_path=
- make sure this directory exists
- make sure Internet Information Server or Apache account has read/write permissions on this directory
- Make sure that in php.ini file "session.save_handler" is set to "files"
; Handler used to store/retrieve data.
session.save_handler = files
3. Question:
I receive the following error message:
Answer:
MySQL 4.1 and later is not fully compatible with older clients. The complete description of this issue can be found at http://dev.mysql.com/doc/mysql/en/old-client.html
Following the instructions in this article is the only way to solve this problem if you use PHP 4 or older.
If you use PHP 5, then you can just upgrade MySQL client library used by PHP. To do that replace libmysql.dll file in your PHP installation folder and in C:\Windows\System32 folder with the same file found in your MySQL installation. Usually it resides in C:\MySQL\bin
4. Question:
I receive the following error message:
Answer:
PHP needs to be set up to use it with MySQL.
To do that please open php.ini file in your C:\Windows directory with a text editor,
find the string
Then find the string beginning with
And at last copy libmysql.dll from your MySQL installation into the C:\Windows\System32 directory.