Installed 2.3. Checked was working. Then tried installing 2.4. Desktop directory is shown in (1) below.
2.4 seemed to be installing fine until Step 11, Run Update script. When tried to access
http://www.content4action.com/pm/updates/index.php
got error message (2)
Figured out it was to do with pm_inc from trying to load site. Edited pm_inc as shown in (3). Uploaded as ASCII. But now get pm_inc error message when trying to load site.
All help gratefullt rec’d. Phil
(1)
C:\Documents and Settings\Administrator\My Documents\pmachinepro\pMachinePro2.4
(2)
pMachine Update Tracker
The following file(s) could not be found:
../inc.sfx.inc
Please read the installation instructions and upload all components of this script.
(3 notepad edited )
<?php
// pMachine needs this file in order to communicate with your web pages.
// One copy of this file must remain in EVERY directory containing pMachine
// enabled pages.
// Name of your main script ("pm") directory:
$script_directory_name = "pm";
// Relative path to this directory:
// The path is from the perspective of the directory containing THIS file.
$script_directory_path = "{$pm_path}inc.sfx.inc";
// ----------------------------------------------------------
// DO NOT EDIT BEYOND THIS POINT
// ----------------------------------------------------------
$pm_path = $script_directory_path . $script_directory_name;
if (!eregi('/$',$pm_path))
$pm_path = "$pm_path"."/";
unset($sfx);
if (!include("{$pm_path}inc.sfx.inc"))
{
echo "The information is set incorrectly in the following file: \"pm_inc.php\"<br />";
echo "Please open \"pm_inc.php\" with a text editor and correct the path.<br />";
echo "You'll find instructions located inside that file";
exit;
}
include ("{$pm_path}inc.lib$sfx");
//END
?>
