eviL<3 wrote:Yes
Code: Select all
No valid ftp class found
I have the same problem.rickyschuijff wrote:I get this error
Code: Select all
No valid ftp class found
Code: Select all
function ftp_type($value, $key)
{
global $phpbb_root_path, $phpEx;
include("{$phpbb_root_path}includes/functions_transfer.$phpEx");
$methods = array();
// Following igor transfer::methods() works in php4.
// You can blame him if it doesnt work :).
foreach (transfer::methods() as $key => $value)
{
$methods[$key] = 'FTP_ATTACHMENT_' . strtoupper($value);
}
return h_radio('config[' . $key . ']', $methods, $value, $key);
}