zslibra 发表于 2005-2-19 15:29:00

有关phpnuke网站上传文件的问题

最近用PHPNUKE 7.5建了一个网站,后来发现自带的论坛(phpBB 2.0.10 )中没有上传附件的功能,
请问如何能像贵站一样,在"发表新贴"底下有"附加档案发表"的功能呢?
能提供这个MOD吗?
还有就是如何可以为每个版块增加"本版精华"的功能?
谢谢!

涩兔子 发表于 2005-2-20 09:51:42

由于phpBB2没有提供COM+的概念,添加功能很是麻烦

添加这个Mod模块儿需要修改很多地方(在phpBB2官方Mod列表中属于高级模块儿修改)

如果自己有开发能力不妨自己写一个,先提示一下(我最近开发的Ourlinux杂志的附件上传的声明部分):


/***************************************************************************
*                              (com_main_editor_office)upload_attach.php
*                            -------------------
*   begin                : Friday, January 30, 2005
*   copyright            : (C) 2005 The ourlinux Group
*   email                : [email protected]
*
*   $Id: (com_main_editor_office)upload_attach.php,v 1.0.0 2005/2/19 22:23:34 sirtoozee Exp $
*
***************************************************************************/

/***************************************************************************
*
*   This program is free software; you can redistribute it and/or modify
*   it under the terms of the GNU General Public License as published by
*   the Free Software Foundation; either version 1 of the License, or
*   (at your option) any later version.
*
***************************************************************************/

if ( !defined('IN_OURLINUX') ) {
        die("Hacking attempt");
}

$upload_file = isset($_FILES['attach_magazine']['name']) ? $_FILES['attach_magazine']['name'] : '';

$upload_file_type = isset($_FILES['attach_magazine']['type']) ? $_FILES['attach_magazine']['type'] : '';

$upload_tmp_file = isset($_FILES['attach_magazine']['tmp_name']) ? $_FILES['attach_magazine']['tmp_name'] : '';


如果不想写就使用Mambo吧,具有COM+概念的PHP CMS

zslibra 发表于 2005-2-20 20:13:57

要我修改就可以,但是要我开发就技逊一筹了~~~ :wink:
请问有没有现成的MOD呀?
网上有PHPBB上传文件的MOD,但是不能用于PHPNUKE中的 :-(

jiangtao9999 发表于 2005-2-20 20:30:43

记得网上有,但忘了在那里见到的了…………

zslibra 发表于 2005-2-22 19:46:16

好的,终于给我找到了~~叫attach mod
还成功装上了!
呵呵.
但是还差个简体中文语言包!不知道在那里找 :wink:

涩兔子 发表于 2005-2-22 20:02:12

你可以自己翻译chinese_simpilifed.php :mrgreen:

zslibra 发表于 2005-2-25 15:53:29

嘻嘻,问题解决了!

谢谢!
页: [1]
查看完整版本: 有关phpnuke网站上传文件的问题