


Shouldn't this be added to the installation instructions, in they DIY section?Dabroz wrote:You have to add phPKG module. Go to ACP“SYSTEM” tab
Module management
Administration Control Panel. Then add phPKG (ACP_PHPKG) to desired page (I think that it best fits into SYSTEM/AUTOMATION). Then you will have to enable it (by clicking “Enable”
). It's all.
Code: Select all
Status | Repository | { PACKAGES } | { LASTCHECK } | Actions
Code: Select all
{ MAIN_OPTIONS }
{ UPLOADING_METHOD }
{ FTP }
{ SERVER_COPY } (unsupported yet)
{ TARGZ } (unsupported yet)
{ DOWNLOADING_METHOD }
{ FGC }
{ WGET } (unsupported yet)
{ FSOCK } (unsupported yet)
{ UNPACKING_METHOD }
{ TARCOMMAND }
{ VIAPHP }
It should. My bad.Shouldn't this be added to the installation instructions, in they DIY section?
Code: Select all
[phpBB Debug] PHP Notice: in file /pkg/bb3phpkg.php on line 317: opendir(./../cache/phpkg/pkg/../dir/local_664a60dd406992767d45d365797e8306) [function.opendir]: failed to open dir: No error
[phpBB Debug] PHP Notice: in file /pkg/bb3phpkg.php on line 319: readdir(): supplied argument is not a valid Directory resource
[phpBB Debug] PHP Notice: in file /pkg/bb3phpkg.php on line 329: opendir(./../cache/phpkg/pkg/../dir/local_664a60dd406992767d45d365797e8306) [function.opendir]: failed to open dir: No error
[phpBB Debug] PHP Notice: in file /pkg/bb3phpkg.php on line 330: readdir(): supplied argument is not a valid Directory resource
{ pL_KernelPanic }
No valid XML was found!
* 12:14:01(3): [tar] Unpacking zipfile ./../cache/phpkg/pkg/local_664a60dd406992767d45d365797e8306.zip
* 12:14:01(3): [sys] SYSTEM CALL:
cd ./../cache/phpkg/pkg && mkdir ../dir/local_664a60dd406992767d45d365797e8306 && cd ../dir/local_664a60dd406992767d45d365797e8306 && cp ../../pkg/local_664a60dd406992767d45d365797e8306.zip . && unzip local_664a60dd406992767d45d365797e8306.zip
* 12:14:01(3): [sys] System reply:
* 12:14:01(3): [xml] Searching for a XML file in ./../cache/phpkg/pkg/../dir/local_664a60dd406992767d45d365797e8306
Code: Select all
$comm .= "tar -xf $file.tar";
}
Code: Select all
$comm = str_replace('/', "\\", $comm);
Code: Select all
$agent = getenv('HTTP_USER_AGENT');
$windows_env = (stripos($agent, 'win') >= 0 || stripos($agent, '16bit') >= 0) ? true : false;
$copy_cmd = $windows_env ? 'copy' : 'cp';
. . .
$comm = ($windows_env) ? str_replace('/', '\\', $comm) : $comm;