Radicore Forum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » RADICORE development » Bug Reports » Bug with 'require_once' file path
Bug with 'require_once' file path [message #5415] Wed, 09 March 2016 21:34 Go to previous message
kong is currently offline  kong
Messages: 90
Registered: December 2011
Member
Replication:
1. Using Radicore v1.93, create 2 subsystems
  • Subsystem A has 1 table
  • Subsystem B has 2 tables that are related to each other with parent/child relationship
2. In subsystem A, create a component script in which subsystem B's child object is invoked using the singleton function and call getData() function using that object.
3. When this component script is executed the web application will hang with a white browser screen.

Problem trace:
The problem has been traced back to the file std.table.class.inc, function _sqlProcessJoin(), specifically the following lines:
if (array_key_exists('subsys_dir', $reldata)) {
    ...
} else {
    $dir = NULL;
} // if
if (!class_exists($parent_table)) {
    require_once $dir ."classes/$parent_table.class.inc";
} // if
The web app hangs at the execution of the require_once statement. It appears that all this code has been called as part of subsystem B child object's process to obtain its parent record information. Since both child and parent objects are in the same subsystem, the variable $dir will be NULL, which makes the 'require_once' file path invalid because the component file was executed under the directory of subsystem A.

Solution:
In the code shown above, change this line:
    $dir = NULL;
into this:
    $dir = dirname($this->dirname) .DIRECTORY_SEPARATOR;

[Updated on: Thu, 10 March 2016 01:26]

Report message to a moderator

 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: subsystem export does not cover user roles
Next Topic: CAN'T CREATE MULTI3 TRANSACTION
Goto Forum:
  


Current Time: Sat Apr 27 14:34:44 EDT 2024

Total time taken to generate the page: 0.00867 seconds