It must have something to do with the change made in the rpc.php file. The change was made to solve the following error when typing in a user and getting an error message in the black bubble that says: "No configuration file found, and no installation code avaliable. Exiting...."
Initial Code on line 38:
| Code: |
define( 'JPATH_BASE', $_SERVER['DOCUMENT_ROOT'] );
|
Was replaced with the exact code:
| Code: |
define( 'JPATH_BASE', dirname(__FILE__).'/../../..' );
|
I'm not a wiz at php by far, that code was taken from baboons suggestion. His post and suggested fix can be found on page 19.