This topic is locked
[SOLVED]

 PHPRunner maintenance release

11/22/2006 4:03:21 PM
PHPRunner General questions
Sergey Kornilov admin

PHPRunner maitenance release (build 169)
http://www.asprunner.com/files/phprunner311.exe
Bugs fixed:

Custom View settings not saved

Chinese encoding support fixed

Edit as "Time" can be applied on Datetime fields

Fixed some synchronization issues
New features:
Full support for joined and calculated fileds. No need to modify generated files if you need to search or sort on calculated or joined fields
Demo Account

Demo Account is a free service provided by Xlinesoft.com to PHPRunner customers. Demo Account allows you quickly put PHP application generated by PHPRunner to our demo web server (http://demo.asprunner.net) for testing purposes.
You may find this feature useful if:

  • you don't have a web server on your local box to test PHP pages
  • you don't have a webhosting account yet
  • you need to show generated application to your boss, friends or to support staff

To open and use Demo Account proceed to the Finished tab in ASPRunner and click Demo Account button. To create an account enter your email and password. You will need this info to manage your account online. After account is created use Upload button to transfer PHP application to the web server. After successfull upload this application will open in browser.

U
Uwe Loyal 11/25/2006

I have installed Build 170.

In this Version in the last line of the form following error-message is shown:
Warning: fopen(include/errors.xml) [function.fopen]: failed to open stream: No such file or directory in D:\My Documents\U093811\apachefriends\xampp\htdocs\phprunner\project001\include\commonfunctions.php on line 1425

Cannot open XML data file: include/errors.xml
Where is the error?
RGDS

Uwe Loyal

Uwe@Familie-Loyal.de

Sergey Kornilov admin 11/27/2006

Uwe,
looks like something is wrong with permissions.
Make sure file D:\My Documents\U093811\apachefriends\xampp\htdocs\phprunner\project001\include\errors.xml exists and web server user has readonly access to this file.

U
Uwe Loyal 11/29/2006

Hello!
The file is inside the path.

I have also all rights on it.

Any other ideas?
PHP Version 5.0.4

MySQL 4.1.13
Rgds

Uwe

Uwe,

looks like something is wrong with permissions.
Make sure file D:\My Documents\U093811\apachefriends\xampp\htdocs\phprunner\project001\include\errors.xml exists and web server user has readonly access to this file.

Sergey Kornilov admin 11/29/2006

Uwe,
you need to make sure web server user (not you) has access to this file.
Also you can send me your files and database for investigation.

U
Uwe Loyal 12/2/2006

I tryed something.
function parse($xml_file)

{

$xml_file="http://localhost/phprunner/".$xml_file;

if (!($fp = fopen($xml_file, 'r')))

{

die('Cannot open XML data file: '.$xml_file);

return false;

}
After changing the line, following message is shown:
PHP ... Fehler ist aufgetreten
Technische Information

Fehlertyp 2

Fehlerbeschreibung Unknown: 1 result set(s) not freed. Use mysql_free_result to free result sets which were requested using mysql_query()

URL localhost/phprunner/mrs_offload_list.php?goto=11

Fehlerdatei Unknown

Fehlerzeile 0

SQL Abfrage select `id`, `station`, `reason`, `datum`, `airline`, `flugnummer`, `dest`, `dest_area`, `prefix`, `awb`, `x`, `produktcode`, `org`, `org_area`, `pcs`, `wgt`, `anz_awb`, `fehlerursache`, `fehlerverursacher`, `massnahmen`, `erledigt`, `nostat`, `last_update`, `datum_in`, `airline_in`, `flugnummer_in`, `rcf_produktcode`, `spl` From `mrs_offload`

  1. Why does the script don't find the path?
  2. This error I remember, but I don't know where, but also in conjunction with phprunner.
    Uwe,

    you need to make sure web server user (not you) has access to this file.
    Also you can send me your files and database for investigation.

Sergey Kornilov admin 12/4/2006

Uwe,
your changes don't make any sense. You cannot point this function to HTTP address. It needs to be opened as a file.
There is a problem with permissions. Make sure web server user has readonly access to this file.
Also you can try to publish your files to Demo Account to see if it works.

U
Uwe Loyal 12/7/2006

Sorry, but you supposition was wrong.
One entry in PHP.INI was the activator of the Error.
mysql.trace_mode=On makes the trouble!

If you switch to Off, all works fine!
Please tell me why?
Rgds

Uwe Loyal

Uwe,

your changes don't make any sense. You cannot point this function to HTTP address. It needs to be opened as a file.
There is a problem with permissions. Make sure web server user has readonly access to this file.
Also you can try to publish your files to Demo Account to see if it works.

Sergey Kornilov admin 12/7/2006

Uwe
here is what my php.ini file says:

; Trace mode. When trace_mode is active (=On), warnings for table/index scans and

; SQL-Errors will be displayed.

mysql.trace_mode = Off


I guess default value is Off and you don't have to change it.