acydmods-checkins Mailing List for Attachment Mod
Brought to you by:
acydburn
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(256) |
Dec
(133) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(299) |
Feb
(133) |
Mar
(33) |
Apr
|
May
|
Jun
(49) |
Jul
|
Aug
(36) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(13) |
Dec
(21) |
| 2005 |
Jan
|
Feb
(17) |
Mar
|
Apr
(13) |
May
(20) |
Jun
|
Jul
(14) |
Aug
(3) |
Sep
|
Oct
|
Nov
(77) |
Dec
(8) |
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(17) |
May
|
Jun
(5) |
Jul
(5) |
Aug
|
Sep
(16) |
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: ООО «Транс-К» <pav...@gm...> - 2015-03-05 07:05:59
|
Продам колодку чугунную вагонную тип Ф для электричек. 4200 шт.
Отгрузка- Москва. Стоимость и фотоматериалы по запросу.
Email: pav...@gm...
Тел: +7-983-250-24-61, Алексей.
__________________________________________________________________
Транс-К | Кемерово, 3-й Топкинского лога участок,строение 7
Этот письмо было отправлено на электронный адрес acy...@li... потому что: Вы
подписались на нашу рассылку на сайте
http://transk42.ru/ | [1]Отписаться
Ссылки в данном письме:
1. http://pechkinnewbie.ru/unsub.php?e=ec5f846d366ac4a3b612bba4b8f315b7&u=101305 |
|
From: Meik S. <acy...@us...> - 2006-09-06 14:26:35
|
Update of /cvsroot/acydmods/amod_24x/attach_mod In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv29807/attach_mod Modified Files: displaying.php posting_attachments.php Log Message: some late changes Index: displaying.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/displaying.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** displaying.php 6 Nov 2005 16:28:14 -0000 1.4 --- displaying.php 6 Sep 2006 14:26:29 -0000 1.5 *************** *** 28,32 **** function display_compile_cache_clear($filename, $template_var) { ! global $template; if (isset($template->cachedir)) --- 28,32 ---- function display_compile_cache_clear($filename, $template_var) { ! global $template, $phpEx; if (isset($template->cachedir)) *************** *** 38,44 **** } ! if (file_exists($template->cachedir . $filename . '.php')) { ! @unlink($template->cachedir . $filename . '.php'); } } --- 38,44 ---- } ! if (file_exists($template->cachedir . $filename . '.' . $phpEx)) { ! @unlink($template->cachedir . $filename . '.' . $phpEx); } } Index: posting_attachments.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/posting_attachments.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** posting_attachments.php 5 Sep 2006 08:48:34 -0000 1.11 --- posting_attachments.php 6 Sep 2006 14:26:29 -0000 1.12 *************** *** 329,333 **** if (!in_array($actual_id_list[$i], $allowed_attach_ids)) { ! message_die(GENERAL_ERROR, 'You tried to change an attachment you do not have access to', ''); } } --- 329,333 ---- if (!in_array($actual_id_list[$i], $allowed_attach_ids)) { ! message_die(CRITICAL_ERROR, 'You tried to change an attachment you do not have access to', ''); } } *************** *** 337,341 **** if (physical_filename_already_stored($actual_list[$i])) { ! message_die(GENERAL_ERROR, 'You tried to change an attachment you do not have access to', ''); } } --- 337,341 ---- if (physical_filename_already_stored($actual_list[$i])) { ! message_die(CRITICAL_ERROR, 'You tried to change an attachment you do not have access to', ''); } } *************** *** 1294,1298 **** // Check image type ! if ($cat_id == IMAGE_CAT || strpos($this->type, 'image/') !== false) { $img_info = @getimagesize($upload_dir . '/' . $this->attach_filename); --- 1294,1298 ---- // Check image type ! if ($cat_id == IMAGE_CAT || strpos($this->type, 'image/') === 0) { $img_info = @getimagesize($upload_dir . '/' . $this->attach_filename); *************** *** 1306,1310 **** $error_msg .= '<br />'; } ! $error_msg .= "Fatal error in getting image size and type."; } else --- 1306,1310 ---- $error_msg .= '<br />'; } ! $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename); } else *************** *** 1330,1334 **** ); ! if (!in_array($this->extension, $types[$img_info[2]])) { $error = TRUE; --- 1330,1334 ---- ); ! if (!isset($types[$img_info[2]])) { $error = TRUE; *************** *** 1337,1341 **** $error_msg .= '<br />'; } ! $error_msg .= "Filetype mismatch: expected {$types[$img_info[2]][0]} but {$this->extension} given."; } } --- 1337,1351 ---- $error_msg .= '<br />'; } ! $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename); ! } ! else if (!in_array($this->extension, $types[$img_info[2]])) ! { ! $error = TRUE; ! if(!empty($error_msg)) ! { ! $error_msg .= '<br />'; ! } ! $error_msg .= sprintf($lang['General_upload_error'], './' . $upload_dir . '/' . $this->attach_filename); ! $error_msg .= "<br />Filetype mismatch: expected {$types[$img_info[2]][0]} but {$this->extension} given."; } } |
|
From: Meik S. <acy...@us...> - 2006-09-06 14:26:35
|
Update of /cvsroot/acydmods/amod_24x In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv29807 Modified Files: uacp.php Log Message: some late changes Index: uacp.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/uacp.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** uacp.php 6 Nov 2005 18:35:43 -0000 1.3 --- uacp.php 6 Sep 2006 14:26:29 -0000 1.4 *************** *** 216,220 **** $username = $profiledata['username']; ! $s_hidden = '<input type="hidden" name="' . POST_USERS_URL . '" value="' . intval($profiledata['user_id']) . '">'; $s_hidden .= '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />'; --- 216,220 ---- $username = $profiledata['username']; ! $s_hidden = '<input type="hidden" name="' . POST_USERS_URL . '" value="' . intval($profiledata['user_id']) . '" />'; $s_hidden .= '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />'; *************** *** 405,409 **** if ($delete_id_list[$j] == $attachments[$i]['attach_id']) { ! $delete_box = '<input type="checkbox" name="delete_id_list[]" value="' . (int) $attachments[$i]['attach_id'] . '" checked />'; break; } --- 405,409 ---- if ($delete_id_list[$j] == $attachments[$i]['attach_id']) { ! $delete_box = '<input type="checkbox" name="delete_id_list[]" value="' . (int) $attachments[$i]['attach_id'] . '" checked="checked" />'; break; } *************** *** 412,416 **** $post_titles = implode('<br />', $post_titles); ! $hidden_field = '<input type="hidden" name="attach_id_list[]" value="' . (int) $attachments[$i]['attach_id'] . '">'; $hidden_field .= '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />'; --- 412,416 ---- $post_titles = implode('<br />', $post_titles); ! $hidden_field = '<input type="hidden" name="attach_id_list[]" value="' . (int) $attachments[$i]['attach_id'] . '" />'; $hidden_field .= '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />'; |
|
From: Meik S. <acy...@us...> - 2006-09-06 14:26:34
|
Update of /cvsroot/acydmods/amod_24x/docs In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv29807/docs Modified Files: changelog.txt install.txt Log Message: some late changes Index: changelog.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/changelog.txt,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** changelog.txt 5 Sep 2006 15:04:02 -0000 1.13 --- changelog.txt 6 Sep 2006 14:26:29 -0000 1.14 *************** *** 1,6 **** Changelog: ! 2006-09-05 - Version 2.4.5 - fixed another XSS vulnerability only occurring for users using the internet explorer - Kellanved 2006-09-04 - Version 2.4.4 --- 1,9 ---- Changelog: ! 2006-09-06 - Version 2.4.5 - fixed another XSS vulnerability only occurring for users using the internet explorer - Kellanved + - added COPY statement for easymod + - some very tiny template fixes + - thanks to alcaeus for verifying that the XSS issues got fixed by the implemented code 2006-09-04 - Version 2.4.4 Index: install.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/install.txt,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** install.txt 5 Sep 2006 15:04:02 -0000 1.17 --- install.txt 6 Sep 2006 14:26:29 -0000 1.18 *************** *** 89,94 **** ## MOD History: ## ! ## 2006-09-05 - Version 2.4.5 ## - fixed another XSS vulnerability only occurring for users using the internet explorer - Kellanved ## ## 2006-09-04 - Version 2.4.4 --- 89,97 ---- ## MOD History: ## ! ## 2006-09-06 - Version 2.4.5 ## - fixed another XSS vulnerability only occurring for users using the internet explorer - Kellanved + ## - added COPY statement for easymod + ## - some very tiny template fixes + ## - thanks to alcaeus for verifying that the XSS issues got fixed by the implemented code ## ## 2006-09-04 - Version 2.4.4 *************** *** 151,207 **** # Alternatively just decompress/upload the contents within the attachment_mod folder directly to your phpBB folder. # ! # attachment_mod/download.php -> download.php ! # attachment_mod/uacp.php -> uacp.php ! # attachment_mod/attach_rules.php -> attach_rules.php ! # attachment_mod/admin/admin_attach_cp.php -> admin/admin_attach_cp.php ! # attachment_mod/admin/admin_attachments.php -> admin/admin_attachments.php ! # attachment_mod/admin/admin_extensions.php -> admin/admin_extensions.php ! # attachment_mod/attach_mod/attachment_mod.php -> attach_mod/attachment_mod.php ! # attachment_mod/attach_mod/displaying.php -> attach_mod/displaying.php ! # attachment_mod/attach_mod/index.htm -> attach_mod/index.htm ! # attachment_mod/attach_mod/pm_attachments.php -> attach_mod/pm_attachments.php ! # attachment_mod/attach_mod/posting_attachments.php -> attach_mod/posting_attachments.php ! # attachment_mod/attach_mod/includes/constants.php -> attach_mod/includes/constants.php ! # attachment_mod/attach_mod/includes/functions_admin.php -> attach_mod/includes/functions_admin.php ! # attachment_mod/attach_mod/includes/functions_attach.php -> attach_mod/includes/functions_attach.php ! # attachment_mod/attach_mod/includes/functions_delete.php -> attach_mod/includes/functions_delete.php ! # attachment_mod/attach_mod/includes/functions_filetypes.php -> attach_mod/includes/functions_filetypes.php ! # attachment_mod/attach_mod/includes/functions_includes.php -> attach_mod/includes/functions_includes.php ! # attachment_mod/attach_mod/includes/functions_selects.php -> attach_mod/includes/functions_selects.php ! # attachment_mod/attach_mod/includes/functions_thumbs.php -> attach_mod/includes/functions_thumbs.php ! # attachment_mod/attach_mod/includes/index.htm -> attach_mod/includes/index.htm ! # attachment_mod/files/index.php -> files/index.php ! # attachment_mod/images/icon_clip.gif -> images/icon_clip.gif ! # attachment_mod/images/icon_disk.gif -> images/icon_disk.gif ! # attachment_mod/images/icon_disk_gray.gif -> images/icon_disk_gray.gif ! # attachment_mod/templates/subSilver/add_attachment_body.tpl -> templates/subSilver/add_attachment_body.tpl ! # attachment_mod/templates/subSilver/posted_attachments_body.tpl -> templates/subSilver/posted_attachments_body.tpl ! # attachment_mod/templates/subSilver/posting_attach_body.tpl -> templates/subSilver/posting_attach_body.tpl ! # attachment_mod/templates/subSilver/posting_attach_rules.tpl -> templates/subSilver/posting_attach_rules.tpl ! # attachment_mod/templates/subSilver/uacp_body.tpl -> templates/subSilver/uacp_body.tpl ! # attachment_mod/templates/subSilver/viewtopic_attach_body.tpl -> templates/subSilver/viewtopic_attach_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cat_body.tpl -> templates/subSilver/admin/attach_cat_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_attachments.tpl -> templates/subSilver/admin/attach_cp_attachments.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_body.tpl -> templates/subSilver/admin/attach_cp_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_search.tpl -> templates/subSilver/admin/attach_cp_search.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_user.tpl -> templates/subSilver/admin/attach_cp_user.tpl ! # attachment_mod/templates/subSilver/admin/attach_extension_groups.tpl -> templates/subSilver/admin/attach_extension_groups.tpl ! # attachment_mod/templates/subSilver/admin/attach_extensions.tpl -> templates/subSilver/admin/attach_extensions.tpl ! # attachment_mod/templates/subSilver/admin/attach_forbidden_extensions.tpl -> templates/subSilver/admin/attach_forbidden_extensions.tpl ! # attachment_mod/templates/subSilver/admin/attach_manage_body.tpl -> templates/subSilver/admin/attach_manage_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_quota_body.tpl -> templates/subSilver/admin/attach_quota_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_shadow.tpl -> templates/subSilver/admin/attach_shadow.tpl ! # attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl ! # attachment_mod/language/lang_english/lang_admin_attach.php -> language/lang_english/lang_admin_attach.php ! # attachment_mod/language/lang_english/lang_faq_attach.php -> language/lang_english/lang_faq_attach.php ! # attachment_mod/language/lang_english/lang_main_attach.php -> language/lang_english/lang_main_attach.php ! # attachment_mod/install/install.php -> install/install.php ! # attachment_mod/install/schemas/attach_mysql_basic.sql -> install/schemas/attach_mysql_basic.sql ! # attachment_mod/install/schemas/attach_mysql_schema.sql -> install/schemas/attach_mysql_schema.sql ! # attachment_mod/install/schemas/attach_mssql_basic.sql -> install/schemas/attach_mssql_basic.sql ! # attachment_mod/install/schemas/attach_mssql_schema.sql -> install/schemas/attach_mssql_schema.sql ! # attachment_mod/install/schemas/attach_postgres_basic.sql -> install/schemas/attach_postgres_basic.sql ! # attachment_mod/install/schemas/attach_postgres_schema.sql -> install/schemas/attach_postgres_schema.sql # # --- 154,213 ---- # Alternatively just decompress/upload the contents within the attachment_mod folder directly to your phpBB folder. # ! ! # ! #-----[ COPY ]------------------------------------------ # + copy attachment_mod/download.php to download.php + copy attachment_mod/uacp.php to uacp.php + copy attachment_mod/attach_rules.php to attach_rules.php + copy attachment_mod/admin/admin_attach_cp.php to admin/admin_attach_cp.php + copy attachment_mod/admin/admin_attachments.php to admin/admin_attachments.php + copy attachment_mod/admin/admin_extensions.php to admin/admin_extensions.php + copy attachment_mod/attach_mod/attachment_mod.php to attach_mod/attachment_mod.php + copy attachment_mod/attach_mod/displaying.php to attach_mod/displaying.php + copy attachment_mod/attach_mod/index.htm to attach_mod/index.htm + copy attachment_mod/attach_mod/pm_attachments.php to attach_mod/pm_attachments.php + copy attachment_mod/attach_mod/posting_attachments.php to attach_mod/posting_attachments.php + copy attachment_mod/attach_mod/includes/constants.php to attach_mod/includes/constants.php + copy attachment_mod/attach_mod/includes/functions_admin.php to attach_mod/includes/functions_admin.php + copy attachment_mod/attach_mod/includes/functions_attach.php to attach_mod/includes/functions_attach.php + copy attachment_mod/attach_mod/includes/functions_delete.php to attach_mod/includes/functions_delete.php + copy attachment_mod/attach_mod/includes/functions_filetypes.php to attach_mod/includes/functions_filetypes.php + copy attachment_mod/attach_mod/includes/functions_includes.php to attach_mod/includes/functions_includes.php + copy attachment_mod/attach_mod/includes/functions_selects.php to attach_mod/includes/functions_selects.php + copy attachment_mod/attach_mod/includes/functions_thumbs.php to attach_mod/includes/functions_thumbs.php + copy attachment_mod/attach_mod/includes/index.htm to attach_mod/includes/index.htm + copy attachment_mod/files/index.php to files/index.php + copy attachment_mod/images/icon_clip.gif to images/icon_clip.gif + copy attachment_mod/images/icon_disk.gif to images/icon_disk.gif + copy attachment_mod/images/icon_disk_gray.gif to images/icon_disk_gray.gif + copy attachment_mod/templates/subSilver/add_attachment_body.tpl to templates/subSilver/add_attachment_body.tpl + copy attachment_mod/templates/subSilver/posted_attachments_body.tpl to templates/subSilver/posted_attachments_body.tpl + copy attachment_mod/templates/subSilver/posting_attach_body.tpl to templates/subSilver/posting_attach_body.tpl + copy attachment_mod/templates/subSilver/posting_attach_rules.tpl to templates/subSilver/posting_attach_rules.tpl + copy attachment_mod/templates/subSilver/uacp_body.tpl to templates/subSilver/uacp_body.tpl + copy attachment_mod/templates/subSilver/viewtopic_attach_body.tpl to templates/subSilver/viewtopic_attach_body.tpl + copy attachment_mod/templates/subSilver/admin/attach_cat_body.tpl to templates/subSilver/admin/attach_cat_body.tpl + copy attachment_mod/templates/subSilver/admin/attach_cp_attachments.tpl to templates/subSilver/admin/attach_cp_attachments.tpl + copy attachment_mod/templates/subSilver/admin/attach_cp_body.tpl to templates/subSilver/admin/attach_cp_body.tpl + copy attachment_mod/templates/subSilver/admin/attach_cp_search.tpl to templates/subSilver/admin/attach_cp_search.tpl + copy attachment_mod/templates/subSilver/admin/attach_cp_user.tpl to templates/subSilver/admin/attach_cp_user.tpl + copy attachment_mod/templates/subSilver/admin/attach_extension_groups.tpl to templates/subSilver/admin/attach_extension_groups.tpl + copy attachment_mod/templates/subSilver/admin/attach_extensions.tpl to templates/subSilver/admin/attach_extensions.tpl + copy attachment_mod/templates/subSilver/admin/attach_forbidden_extensions.tpl to templates/subSilver/admin/attach_forbidden_extensions.tpl + copy attachment_mod/templates/subSilver/admin/attach_manage_body.tpl to templates/subSilver/admin/attach_manage_body.tpl + copy attachment_mod/templates/subSilver/admin/attach_quota_body.tpl to templates/subSilver/admin/attach_quota_body.tpl + copy attachment_mod/templates/subSilver/admin/attach_shadow.tpl to templates/subSilver/admin/attach_shadow.tpl + copy attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl to templates/subSilver/admin/extension_groups_permissions.tpl + copy attachment_mod/language/lang_english/lang_admin_attach.php to language/lang_english/lang_admin_attach.php + copy attachment_mod/language/lang_english/lang_faq_attach.php to language/lang_english/lang_faq_attach.php + copy attachment_mod/language/lang_english/lang_main_attach.php to language/lang_english/lang_main_attach.php + copy attachment_mod/install/install.php to install/install.php + copy attachment_mod/install/schemas/attach_mysql_basic.sql to install/schemas/attach_mysql_basic.sql + copy attachment_mod/install/schemas/attach_mysql_schema.sql to install/schemas/attach_mysql_schema.sql + copy attachment_mod/install/schemas/attach_mssql_basic.sql to install/schemas/attach_mssql_basic.sql + copy attachment_mod/install/schemas/attach_mssql_schema.sql to install/schemas/attach_mssql_schema.sql + copy attachment_mod/install/schemas/attach_postgres_basic.sql to install/schemas/attach_postgres_basic.sql + copy attachment_mod/install/schemas/attach_postgres_schema.sql to install/schemas/attach_postgres_schema.sql # |
|
From: Meik S. <acy...@us...> - 2006-09-05 15:04:23
|
Update of /cvsroot/acydmods/amod_24x/docs In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv31610/docs Modified Files: changelog.txt install.txt update.txt Log Message: more changes? Index: changelog.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/changelog.txt,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** changelog.txt 4 Sep 2006 17:00:57 -0000 1.12 --- changelog.txt 5 Sep 2006 15:04:02 -0000 1.13 *************** *** 1,4 **** --- 1,7 ---- Changelog: + 2006-09-05 - Version 2.4.5 + - fixed another XSS vulnerability only occurring for users using the internet explorer - Kellanved + 2006-09-04 - Version 2.4.4 - fixed typo in functions_filetypes.php Index: install.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/install.txt,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** install.txt 4 Sep 2006 16:46:35 -0000 1.16 --- install.txt 5 Sep 2006 15:04:02 -0000 1.17 *************** *** 4,10 **** ## MOD Description: ## This Mod adds the ability to attach files in phpBB2. ! ## This Version has been tested and works with phpBB 2.0.20. ## This Version will NOT work with phpBB2 Modules designed for *Nuke Portals or phpBB2 Ports. ! ## MOD Version: 2.4.4 ## ## Installation Level: Intermediate --- 4,10 ---- ## MOD Description: ## This Mod adds the ability to attach files in phpBB2. ! ## This Version has been tested and works with phpBB 2.0.21. ## This Version will NOT work with phpBB2 Modules designed for *Nuke Portals or phpBB2 Ports. ! ## MOD Version: 2.4.5 ## ## Installation Level: Intermediate *************** *** 89,92 **** --- 89,95 ---- ## MOD History: ## + ## 2006-09-05 - Version 2.4.5 + ## - fixed another XSS vulnerability only occurring for users using the internet explorer - Kellanved + ## ## 2006-09-04 - Version 2.4.4 ## - fixed typo in functions_filetypes.php Index: update.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/update.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** update.txt 1 Jun 2006 18:50:44 -0000 1.5 --- update.txt 5 Sep 2006 15:04:02 -0000 1.6 *************** *** 1,339 **** ! - The following documentation is an equivalent of the phpBB Upgrade Instructions. ! ! Upgrade from 2.3.x versions: ! ! Since version 2.3.10 the attachment mod comes in three packages for easier upgrading. ! The Full package includes the attachment mod in general. ! The Changed files only package includes those files changed from one release to another release. ! The Patch files package includes changes from one release to another release in patch file format. ! ! The Full package: ! ! This package contains the original attachment mod files. ! ! ! Changed files only: ! ! This package contains a number of archives, each contains the files changed from a given release to the latest release. ! You should select the appropriate archive for your current version, e.g. if you currently have 2.3.14 you should select the ! 2.3.14_to_2.4.4.zip/tar.gz file. ! ! The directory structure has been preserved enabling you (if you wish) to simply upload the contents of the archive to the appropriate ! location on your server, i.e. simply overwrite the existing files with the new versions. ! Do not forget that if you have installed any modifications to the attachment mod these files will overwrite the originals ! possibly destroying them in the process. You will need to re-add Mods to any affected file before uploading. ! ! As for the other upgrade procedures you should run "install/update_to_latest.php" after you have finished updating the files. ! This will update your database schema and data (if appropriate) and increment the version number. ! ! ! Patch file: ! ! The patch file is probably the best solution for those with many Mods or other changes who do not want to re-add them back to all the changed files. ! To use this you will need command line access to a standard UNIX type patch application. ! ! A number of patch files are provided to allow you to upgrade from previous releases. ! Select the correct patch, e.g. if your current version is 2.3.14 you need the attach_mod-2.3.14_to_2.4.4.patch. Place the correct patch ! in the parent directory containing the phpBB 2 core files (i.e. index.php, viewforum.php, etc.). ! With this done you should run the following command: ! ! patch -cl -d [PHPBB DIRECTORY] -p1 < [PATCH NAME] ! ! (where PHPBB DIRECTORY is the directory name your phpBB Installation resides in, for example phpBB2, and where PATCH NAME is the relevant ! filename of the selected patch file). This should complete quickly, hopefully without any HUNK FAILED comments. ! ! >If you do get failures you should look at using the Changed files only package to replace the files which failed to patch, ! please note that you will need to manually re-add any Mods to these particular files. ! Alternatively if you know how you can examine the .rej files to determine what failed where and make manual adjustments to the relevant source. ! ! You should of course delete the patch file (or files) after use. As for the other upgrade procedures you should run ! install/update_to_latest.php after you have finished updating the files. This will update your database schema and data (if appropriate) ! and increment the version number. ! ! ! Please be careful to not overwrite your existing images or uploaded files. ! ! --- STEP NUMBER 1: ! ! Upload the Updater: ! ! attachment_mod/install/update_to_latest.php -> install/update_to_latest.php ! ! Maybe you have to create the install folder, since the update_to_latest.php file have to be placed ! within the install folder under your phpBB2 Directory. ! ! --- STEP NUMBER 2: ! ! Now run the update script: http://www.yourdomain.com/phpBB2/install/update_to_latest.php ! If you have problems or questions on this, please read the Attachment Mod User Guide first. ! ! --- STEP NUMBER 3: ! ! Upload all files to their respective Location (the directory structure is in the folder root). ! For a list of changed files, please use the changed files only release (downloadable at http://www.sourceforge.net/projects/acydmods). ! ! attachment_mod/download.php -> download.php ! attachment_mod/uacp.php -> uacp.php ! attachment_mod/attach_rules.php -> attach_rules.php ! attachment_mod/admin/admin_attach_cp.php -> admin/admin_attach_cp.php ! attachment_mod/admin/admin_attachments.php -> admin/admin_attachments.php ! attachment_mod/admin/admin_extensions.php -> admin/admin_extensions.php ! attachment_mod/attach_mod/attachment_mod.php -> attach_mod/attachment_mod.php ! attachment_mod/attach_mod/displaying.php -> attach_mod/displaying.php ! attachment_mod/attach_mod/pm_attachments.php -> attach_mod/pm_attachments.php ! attachment_mod/attach_mod/posting_attachments.php -> attach_mod/posting_attachments.php ! attachment_mod/attach_mod/includes/constants.php -> attach_mod/includes/constants.php ! attachment_mod/attach_mod/includes/functions_admin.php -> attach_mod/includes/functions_admin.php ! attachment_mod/attach_mod/includes/functions_attach.php -> attach_mod/includes/functions_attach.php ! attachment_mod/attach_mod/includes/functions_delete.php -> attach_mod/includes/functions_delete.php ! attachment_mod/attach_mod/includes/functions_filetypes.php -> attach_mod/includes/functions_filetypes.php ! attachment_mod/attach_mod/includes/functions_includes.php -> attach_mod/includes/functions_includes.php ! attachment_mod/attach_mod/includes/functions_selects.php -> attach_mod/includes/functions_selects.php ! attachment_mod/attach_mod/includes/functions_thumbs.php -> attach_mod/includes/functions_thumbs.php ! attachment_mod/templates/subSilver/add_attachment_body.tpl -> templates/subSilver/add_attachment_body.tpl ! attachment_mod/templates/subSilver/posted_attachments_body.tpl -> templates/subSilver/posted_attachments_body.tpl ! attachment_mod/templates/subSilver/posting_attach_body.tpl -> templates/subSilver/posting_attach_body.tpl ! attachment_mod/templates/subSilver/posting_attach_rules.tpl -> templates/subSilver/posting_attach_rules.tpl ! attachment_mod/templates/subSilver/uacp_body.tpl -> templates/subSilver/uacp_body.tpl ! attachment_mod/templates/subSilver/viewtopic_attach_body.tpl -> templates/subSilver/viewtopic_attach_body.tpl ! attachment_mod/templates/subSilver/admin/attach_cat_body.tpl -> templates/subSilver/admin/attach_cat_body.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_attachments.tpl -> templates/subSilver/admin/attach_cp_attachments.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_body.tpl -> templates/subSilver/admin/attach_cp_body.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_search.tpl -> templates/subSilver/admin/attach_cp_search.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_user.tpl -> templates/subSilver/admin/attach_cp_user.tpl ! attachment_mod/templates/subSilver/admin/attach_extension_groups.tpl -> templates/subSilver/admin/attach_extension_groups.tpl ! attachment_mod/templates/subSilver/admin/attach_extensions.tpl -> templates/subSilver/admin/attach_extensions.tpl ! attachment_mod/templates/subSilver/admin/attach_forbidden_extensions.tpl -> templates/subSilver/admin/attach_forbidden_extensions.tpl ! attachment_mod/templates/subSilver/admin/attach_manage_body.tpl -> templates/subSilver/admin/attach_manage_body.tpl ! attachment_mod/templates/subSilver/admin/attach_quota_body.tpl -> templates/subSilver/admin/attach_quota_body.tpl ! attachment_mod/templates/subSilver/admin/attach_shadow.tpl -> templates/subSilver/admin/attach_shadow.tpl ! attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl ! ! --- STEP NUMBER 4: ! ! Upload the Language Files (English (German is optional)) provided with the Attachment Mod, located in attach_mod/root/language) ! to your language Directory. ! ! ! --- You do not need to do the following Step if you use the pre-modified files ! ! If you are upgrading from version 2.3.5 and above, you do not have to edit any phpBB2 files, you are done now, close this file. :) ! ! ################################################# ! # UPGRADE FROM 2.3.4 # ! ################################################# ! ! Changed Files: includes/usercp_viewprofile.php, admin/admin_forums.php, admin/admin_groups.php, admin/admin_users.php, ! privmsgs_body.tpl, profile_view_body.tpl, viewtopic_body.tpl, admin/group_edit_body.tpl, admin/user_edit_body.tpl ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! includes/usercp_viewprofile.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 175 ! include($phpbb_root_path . 'includes/page_header.'.$phpEx); ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! display_upload_attach_box_limits($profiledata['user_id']); ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! admin/admin_forums.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 52 ! // ! // Mode setting ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! $forum_auth_ary['auth_attachments'] = AUTH_REG; ! $forum_auth_ary['auth_download'] = AUTH_REG; ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! admin/admin_groups.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 59 ! if ( isset($HTTP_POST_VARS['edit']) || isset($HTTP_POST_VARS['new']) ) ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! attachment_quota_settings('group', $HTTP_POST_VARS['group_update'], $mode); ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! admin/admin_users.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 62 ! // ! // Ok, the profile has been modified and submitted, let's update ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! attachment_quota_settings('user', $HTTP_POST_VARS['submit'], $mode); ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/privmsgs_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 15 ! <table border="0" cellspacing="0" cellpadding="0" align="center" width="100%"> ! <tr> ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! <td align="right"> ! <!-- BEGIN switch_box_size_notice --> ! <table width="175" cellspacing="1" cellpadding="2" border="0" class="bodyline"> ! <tr> ! <td colspan="3" width="175" class="row1" nowrap="nowrap"><span class="gensmall">{ATTACH_BOX_SIZE_STATUS}</span></td> ! </tr> ! <tr> ! <td colspan="3" width="175" class="row2"> ! <table cellspacing="0" cellpadding="1" border="0"> ! <tr> ! <td bgcolor="{T_TD_COLOR2}"><img src="templates/subSilver/images/spacer.gif" width="{ATTACHBOX_LIMIT_IMG_WIDTH}" height="8" alt="{ATTACH_LIMIT_PERCENT}" /></td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td width="33%" class="row1"><span class="gensmall">0%</span></td> ! <td width="34%" align="center" class="row1"><span class="gensmall">50%</span></td> ! <td width="33%" align="right" class="row1"><span class="gensmall">100%</span></td> ! </tr> ! </table> ! <!-- END switch_box_size_notice --> ! </td> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/profile_view_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 41 ! <td> <b><span class="gen">{INTERESTS}</span></b></td> ! </tr> ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! <!-- BEGIN switch_upload_limits --> ! <tr> ! <td valign="top" align="right" nowrap="nowrap"><span class="gen">{L_UPLOAD_QUOTA}:</span></td> ! <td> ! <table width="175" cellspacing="1" cellpadding="2" border="0" class="bodyline"> ! <tr> ! <td colspan="3" width="100%" class="row2"> ! <table cellspacing="0" cellpadding="1" border="0"> ! <tr> ! <td bgcolor="{T_TD_COLOR2}"><img src="templates/subSilver/images/spacer.gif" width="{UPLOAD_LIMIT_IMG_WIDTH}" height="8" alt="{UPLOAD_LIMIT_PERCENT}" /></td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td width="33%" class="row1"><span class="gensmall">0%</span></td> ! <td width="34%" align="center" class="row1"><span class="gensmall">50%</span></td> ! <td width="33%" align="right" class="row1"><span class="gensmall">100%</span></td> ! </tr> ! </table> ! <b><span class="genmed">[{UPLOADED} / {QUOTA} / {PERCENT_FULL}]</span> </b><br /> ! <span class="genmed"><a href="{U_UACP}" class="genmed">{L_UACP}</a></span></td> ! </td> ! </tr> ! <!-- END switch_upload_limits --> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/viewtopic_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 39 ! <td colspan="2"><span class="postbody">{postrow.MESSAGE}{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td> ! ! # ! #-----[ IN-LINE FIND ]--------------------------------------------- ! # around line 39 (directly in that line) ! {postrow.SIGNATURE} ! ! # ! #-----[ IN-LINE BEFORE, ADD ]--------------------------------------- ! # ! </span>{postrow.ATTACHMENTS}<span class="postbody"> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/admin/group_edit_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 48 ! <!-- END group_edit --> ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! <tr> ! <td class="row1"><span class="gen">{L_UPLOAD_QUOTA}</span></td> ! <td class="row2">{S_SELECT_UPLOAD_QUOTA}</td> ! </tr> ! <tr> ! <td class="row1"><span class="gen">{L_PM_QUOTA}</span></td> ! <td class="row2">{S_SELECT_PM_QUOTA}</td> ! </tr> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/admin/user_edit_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 267 ! <td class="row1" colspan="2"><span class="gensmall">{L_SPECIAL_EXPLAIN}</span></td> ! </tr> ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! <tr> ! <td class="row1"><span class="gen">{L_UPLOAD_QUOTA}</span></td> ! <td class="row2">{S_SELECT_UPLOAD_QUOTA}</td> ! </tr> ! <tr> ! <td class="row1"><span class="gen">{L_PM_QUOTA}</span></td> ! <td class="row2">{S_SELECT_PM_QUOTA}</td> ! </tr> ! ! # ! #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ ! # ! ! Upload all modified Files and have a look at the Administration Panel, you will see some new Functions/Features. --- 1,339 ---- ! - The following documentation is an equivalent of the phpBB Upgrade Instructions. ! ! Upgrade from 2.3.x/2.4.x versions: ! ! Since version 2.3.10 the attachment mod comes in three packages for easier upgrading. ! The Full package includes the attachment mod in general. ! The Changed files only package includes those files changed from one release to another release. ! The Patch files package includes changes from one release to another release in patch file format. ! ! The Full package: ! ! This package contains the original attachment mod files. ! ! ! Changed files only: ! ! This package contains a number of archives, each contains the files changed from a given release to the latest release. ! You should select the appropriate archive for your current version, e.g. if you currently have 2.4.3 you should select the ! 2.4.3_to_2.4.5.zip/tar.gz file. ! ! The directory structure has been preserved enabling you (if you wish) to simply upload the contents of the archive to the appropriate ! location on your server, i.e. simply overwrite the existing files with the new versions. ! Do not forget that if you have installed any modifications to the attachment mod these files will overwrite the originals ! possibly destroying them in the process. You will need to re-add Mods to any affected file before uploading. ! ! As for the other upgrade procedures you should run "install/update_to_latest.php" after you have finished updating the files. ! This will update your database schema and data (if appropriate) and increment the version number. ! ! ! Patch file: ! ! The patch file is probably the best solution for those with many Mods or other changes who do not want to re-add them back to all the changed files. ! To use this you will need command line access to a standard UNIX type patch application. ! ! A number of patch files are provided to allow you to upgrade from previous releases. ! Select the correct patch, e.g. if your current version is 2.4.3 you need the attach_mod-2.4.3_to_2.4.5.patch. Place the correct patch ! in the parent directory containing the phpBB 2 core files (i.e. index.php, viewforum.php, etc.). ! With this done you should run the following command: ! ! patch -cl -d [PHPBB DIRECTORY] -p1 < [PATCH NAME] ! ! (where PHPBB DIRECTORY is the directory name your phpBB Installation resides in, for example phpBB2, and where PATCH NAME is the relevant ! filename of the selected patch file). This should complete quickly, hopefully without any HUNK FAILED comments. ! ! >If you do get failures you should look at using the Changed files only package to replace the files which failed to patch, ! please note that you will need to manually re-add any Mods to these particular files. ! Alternatively if you know how you can examine the .rej files to determine what failed where and make manual adjustments to the relevant source. ! ! You should of course delete the patch file (or files) after use. As for the other upgrade procedures you should run ! install/update_to_latest.php after you have finished updating the files. This will update your database schema and data (if appropriate) ! and increment the version number. ! ! ! Please be careful to not overwrite your existing images or uploaded files. ! ! --- STEP NUMBER 1: ! ! Upload the Updater: ! ! attachment_mod/install/update_to_latest.php -> install/update_to_latest.php ! ! Maybe you have to create the install folder, since the update_to_latest.php file have to be placed ! within the install folder under your phpBB2 Directory. ! ! --- STEP NUMBER 2: ! ! Now run the update script: http://www.yourdomain.com/phpBB2/install/update_to_latest.php ! If you have problems or questions on this, please read the Attachment Mod User Guide first. ! ! --- STEP NUMBER 3: ! ! Upload all files to their respective Location (the directory structure is in the folder root). ! For a list of changed files, please use the changed files only release (downloadable at http://www.sourceforge.net/projects/acydmods). ! ! attachment_mod/download.php -> download.php ! attachment_mod/uacp.php -> uacp.php ! attachment_mod/attach_rules.php -> attach_rules.php ! attachment_mod/admin/admin_attach_cp.php -> admin/admin_attach_cp.php ! attachment_mod/admin/admin_attachments.php -> admin/admin_attachments.php ! attachment_mod/admin/admin_extensions.php -> admin/admin_extensions.php ! attachment_mod/attach_mod/attachment_mod.php -> attach_mod/attachment_mod.php ! attachment_mod/attach_mod/displaying.php -> attach_mod/displaying.php ! attachment_mod/attach_mod/pm_attachments.php -> attach_mod/pm_attachments.php ! attachment_mod/attach_mod/posting_attachments.php -> attach_mod/posting_attachments.php ! attachment_mod/attach_mod/includes/constants.php -> attach_mod/includes/constants.php ! attachment_mod/attach_mod/includes/functions_admin.php -> attach_mod/includes/functions_admin.php ! attachment_mod/attach_mod/includes/functions_attach.php -> attach_mod/includes/functions_attach.php ! attachment_mod/attach_mod/includes/functions_delete.php -> attach_mod/includes/functions_delete.php ! attachment_mod/attach_mod/includes/functions_filetypes.php -> attach_mod/includes/functions_filetypes.php ! attachment_mod/attach_mod/includes/functions_includes.php -> attach_mod/includes/functions_includes.php ! attachment_mod/attach_mod/includes/functions_selects.php -> attach_mod/includes/functions_selects.php ! attachment_mod/attach_mod/includes/functions_thumbs.php -> attach_mod/includes/functions_thumbs.php ! attachment_mod/templates/subSilver/add_attachment_body.tpl -> templates/subSilver/add_attachment_body.tpl ! attachment_mod/templates/subSilver/posted_attachments_body.tpl -> templates/subSilver/posted_attachments_body.tpl ! attachment_mod/templates/subSilver/posting_attach_body.tpl -> templates/subSilver/posting_attach_body.tpl ! attachment_mod/templates/subSilver/posting_attach_rules.tpl -> templates/subSilver/posting_attach_rules.tpl ! attachment_mod/templates/subSilver/uacp_body.tpl -> templates/subSilver/uacp_body.tpl ! attachment_mod/templates/subSilver/viewtopic_attach_body.tpl -> templates/subSilver/viewtopic_attach_body.tpl ! attachment_mod/templates/subSilver/admin/attach_cat_body.tpl -> templates/subSilver/admin/attach_cat_body.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_attachments.tpl -> templates/subSilver/admin/attach_cp_attachments.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_body.tpl -> templates/subSilver/admin/attach_cp_body.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_search.tpl -> templates/subSilver/admin/attach_cp_search.tpl ! attachment_mod/templates/subSilver/admin/attach_cp_user.tpl -> templates/subSilver/admin/attach_cp_user.tpl ! attachment_mod/templates/subSilver/admin/attach_extension_groups.tpl -> templates/subSilver/admin/attach_extension_groups.tpl ! attachment_mod/templates/subSilver/admin/attach_extensions.tpl -> templates/subSilver/admin/attach_extensions.tpl ! attachment_mod/templates/subSilver/admin/attach_forbidden_extensions.tpl -> templates/subSilver/admin/attach_forbidden_extensions.tpl ! attachment_mod/templates/subSilver/admin/attach_manage_body.tpl -> templates/subSilver/admin/attach_manage_body.tpl ! attachment_mod/templates/subSilver/admin/attach_quota_body.tpl -> templates/subSilver/admin/attach_quota_body.tpl ! attachment_mod/templates/subSilver/admin/attach_shadow.tpl -> templates/subSilver/admin/attach_shadow.tpl ! attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl ! ! --- STEP NUMBER 4: ! ! Upload the Language Files (English (German is optional)) provided with the Attachment Mod, located in attach_mod/root/language) ! to your language Directory. ! ! ! --- You do not need to do the following Step if you use the pre-modified files ! ! If you are upgrading from version 2.3.5 and above, you do not have to edit any phpBB2 files, you are done now, close this file. :) ! ! ################################################# ! # UPGRADE FROM 2.3.4 # ! ################################################# ! ! Changed Files: includes/usercp_viewprofile.php, admin/admin_forums.php, admin/admin_groups.php, admin/admin_users.php, ! privmsgs_body.tpl, profile_view_body.tpl, viewtopic_body.tpl, admin/group_edit_body.tpl, admin/user_edit_body.tpl ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! includes/usercp_viewprofile.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 175 ! include($phpbb_root_path . 'includes/page_header.'.$phpEx); ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! display_upload_attach_box_limits($profiledata['user_id']); ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! admin/admin_forums.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 52 ! // ! // Mode setting ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! $forum_auth_ary['auth_attachments'] = AUTH_REG; ! $forum_auth_ary['auth_download'] = AUTH_REG; ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! admin/admin_groups.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 59 ! if ( isset($HTTP_POST_VARS['edit']) || isset($HTTP_POST_VARS['new']) ) ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! attachment_quota_settings('group', $HTTP_POST_VARS['group_update'], $mode); ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! admin/admin_users.php ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 62 ! // ! // Ok, the profile has been modified and submitted, let's update ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! attachment_quota_settings('user', $HTTP_POST_VARS['submit'], $mode); ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/privmsgs_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 15 ! <table border="0" cellspacing="0" cellpadding="0" align="center" width="100%"> ! <tr> ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! <td align="right"> ! <!-- BEGIN switch_box_size_notice --> ! <table width="175" cellspacing="1" cellpadding="2" border="0" class="bodyline"> ! <tr> ! <td colspan="3" width="175" class="row1" nowrap="nowrap"><span class="gensmall">{ATTACH_BOX_SIZE_STATUS}</span></td> ! </tr> ! <tr> ! <td colspan="3" width="175" class="row2"> ! <table cellspacing="0" cellpadding="1" border="0"> ! <tr> ! <td bgcolor="{T_TD_COLOR2}"><img src="templates/subSilver/images/spacer.gif" width="{ATTACHBOX_LIMIT_IMG_WIDTH}" height="8" alt="{ATTACH_LIMIT_PERCENT}" /></td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td width="33%" class="row1"><span class="gensmall">0%</span></td> ! <td width="34%" align="center" class="row1"><span class="gensmall">50%</span></td> ! <td width="33%" align="right" class="row1"><span class="gensmall">100%</span></td> ! </tr> ! </table> ! <!-- END switch_box_size_notice --> ! </td> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/profile_view_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 41 ! <td> <b><span class="gen">{INTERESTS}</span></b></td> ! </tr> ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! <!-- BEGIN switch_upload_limits --> ! <tr> ! <td valign="top" align="right" nowrap="nowrap"><span class="gen">{L_UPLOAD_QUOTA}:</span></td> ! <td> ! <table width="175" cellspacing="1" cellpadding="2" border="0" class="bodyline"> ! <tr> ! <td colspan="3" width="100%" class="row2"> ! <table cellspacing="0" cellpadding="1" border="0"> ! <tr> ! <td bgcolor="{T_TD_COLOR2}"><img src="templates/subSilver/images/spacer.gif" width="{UPLOAD_LIMIT_IMG_WIDTH}" height="8" alt="{UPLOAD_LIMIT_PERCENT}" /></td> ! </tr> ! </table> ! </td> ! </tr> ! <tr> ! <td width="33%" class="row1"><span class="gensmall">0%</span></td> ! <td width="34%" align="center" class="row1"><span class="gensmall">50%</span></td> ! <td width="33%" align="right" class="row1"><span class="gensmall">100%</span></td> ! </tr> ! </table> ! <b><span class="genmed">[{UPLOADED} / {QUOTA} / {PERCENT_FULL}]</span> </b><br /> ! <span class="genmed"><a href="{U_UACP}" class="genmed">{L_UACP}</a></span></td> ! </td> ! </tr> ! <!-- END switch_upload_limits --> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/viewtopic_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 39 ! <td colspan="2"><span class="postbody">{postrow.MESSAGE}{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></td> ! ! # ! #-----[ IN-LINE FIND ]--------------------------------------------- ! # around line 39 (directly in that line) ! {postrow.SIGNATURE} ! ! # ! #-----[ IN-LINE BEFORE, ADD ]--------------------------------------- ! # ! </span>{postrow.ATTACHMENTS}<span class="postbody"> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/admin/group_edit_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 48 ! <!-- END group_edit --> ! ! # ! #-----[ BEFORE, ADD ]--------------------------------------- ! # ! <tr> ! <td class="row1"><span class="gen">{L_UPLOAD_QUOTA}</span></td> ! <td class="row2">{S_SELECT_UPLOAD_QUOTA}</td> ! </tr> ! <tr> ! <td class="row1"><span class="gen">{L_PM_QUOTA}</span></td> ! <td class="row2">{S_SELECT_PM_QUOTA}</td> ! </tr> ! ! # ! #-----[ OPEN ]--------------------------------------------- ! # ! templates/subSilver/admin/user_edit_body.tpl ! ! # ! #-----[ FIND ]--------------------------------------------- ! # around line 267 ! <td class="row1" colspan="2"><span class="gensmall">{L_SPECIAL_EXPLAIN}</span></td> ! </tr> ! ! # ! #-----[ AFTER, ADD ]--------------------------------------- ! # ! <tr> ! <td class="row1"><span class="gen">{L_UPLOAD_QUOTA}</span></td> ! <td class="row2">{S_SELECT_UPLOAD_QUOTA}</td> ! </tr> ! <tr> ! <td class="row1"><span class="gen">{L_PM_QUOTA}</span></td> ! <td class="row2">{S_SELECT_PM_QUOTA}</td> ! </tr> ! ! # ! #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ ! # ! ! Upload all modified Files and have a look at the Administration Panel, you will see some new Functions/Features. |
|
From: Meik S. <acy...@us...> - 2006-09-05 15:04:11
|
Update of /cvsroot/acydmods/amod_24x/install In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv31610/install Modified Files: install.php update_to_latest.php Log Message: more changes? Index: update_to_latest.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/update_to_latest.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** update_to_latest.php 1 Jun 2006 18:50:44 -0000 1.7 --- update_to_latest.php 5 Sep 2006 15:04:03 -0000 1.8 *************** *** 461,465 **** insert_into_config('img_imagick', ''); insert_into_config('show_apcp', '0'); ! insert_into_config('attach_version', '2.4.4'); insert_into_config('default_upload_quota', '0'); insert_into_config('default_pm_quota', '0'); --- 461,465 ---- insert_into_config('img_imagick', ''); insert_into_config('show_apcp', '0'); ! insert_into_config('attach_version', '2.4.5'); insert_into_config('default_upload_quota', '0'); insert_into_config('default_pm_quota', '0'); *************** *** 467,471 **** insert_into_config('use_gd2', '0'); ! $sql = "UPDATE phpbb_attachments_config SET config_value = '2.4.4' WHERE config_name = 'attach_version';"; $result = evaluate_statement($sql, true, true); --- 467,471 ---- insert_into_config('use_gd2', '0'); ! $sql = "UPDATE phpbb_attachments_config SET config_value = '2.4.5' WHERE config_name = 'attach_version';"; $result = evaluate_statement($sql, true, true); Index: install.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/install.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** install.php 15 Nov 2005 21:19:30 -0000 1.3 --- install.php 5 Sep 2006 15:04:02 -0000 1.4 *************** *** 53,57 **** echo " -> <b><span class=\"ok\">COMPLETED</span></b><br /><br />\n\n"; } - $db->sql_freeresult($result); } --- 53,56 ---- |
|
From: Meik S. <acy...@us...> - 2006-09-05 15:04:10
|
Update of /cvsroot/acydmods/amod_24x/install/schemas In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv31610/install/schemas Modified Files: attach_mssql_basic.sql attach_mysql_basic.sql attach_postgres_basic.sql Log Message: more changes? Index: attach_mssql_basic.sql =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/schemas/attach_mssql_basic.sql,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** attach_mssql_basic.sql 4 Sep 2006 12:56:07 -0000 1.6 --- attach_mssql_basic.sql 5 Sep 2006 15:04:03 -0000 1.7 *************** *** 26,30 **** INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('allow_ftp_upload','0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('show_apcp','0'); ! INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('attach_version','2.4.4'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_upload_quota', '0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_pm_quota', '0'); --- 26,30 ---- INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('allow_ftp_upload','0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('show_apcp','0'); ! INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('attach_version','2.4.5'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_upload_quota', '0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_pm_quota', '0'); Index: attach_postgres_basic.sql =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/schemas/attach_postgres_basic.sql,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** attach_postgres_basic.sql 4 Sep 2006 12:56:07 -0000 1.6 --- attach_postgres_basic.sql 5 Sep 2006 15:04:03 -0000 1.7 *************** *** 24,28 **** INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('allow_ftp_upload','0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('show_apcp','0'); ! INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('attach_version','2.4.4'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_upload_quota', '0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_pm_quota', '0'); --- 24,28 ---- INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('allow_ftp_upload','0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('show_apcp','0'); ! INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('attach_version','2.4.5'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_upload_quota', '0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_pm_quota', '0'); Index: attach_mysql_basic.sql =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/schemas/attach_mysql_basic.sql,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** attach_mysql_basic.sql 4 Sep 2006 12:56:07 -0000 1.6 --- attach_mysql_basic.sql 5 Sep 2006 15:04:03 -0000 1.7 *************** *** 23,27 **** INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('allow_ftp_upload','0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('show_apcp','0'); ! INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('attach_version','2.4.4'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_upload_quota', '0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_pm_quota', '0'); --- 23,27 ---- INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('allow_ftp_upload','0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('show_apcp','0'); ! INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('attach_version','2.4.5'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_upload_quota', '0'); INSERT INTO phpbb_attachments_config (config_name, config_value) VALUES ('default_pm_quota', '0'); |
|
From: Meik S. <acy...@us...> - 2006-09-05 15:04:05
|
Update of /cvsroot/acydmods/amod_24x/attach_mod/includes In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv31610/attach_mod/includes Modified Files: constants.php Log Message: more changes? Index: constants.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/includes/constants.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** constants.php 1 Jun 2006 18:50:42 -0000 1.6 --- constants.php 5 Sep 2006 15:04:01 -0000 1.7 *************** *** 63,67 **** define('QUOTA_PM_LIMIT', 2); ! define('ATTACH_VERSION', '2.4.4'); --- 63,67 ---- define('QUOTA_PM_LIMIT', 2); ! define('ATTACH_VERSION', '2.4.5'); |
|
From: Meik S. <acy...@us...> - 2006-09-05 08:48:37
|
Update of /cvsroot/acydmods/amod_24x/attach_mod In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv17547/attach_mod Modified Files: posting_attachments.php Log Message: check filetype from correct image Index: posting_attachments.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/posting_attachments.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** posting_attachments.php 5 Sep 2006 08:47:54 -0000 1.10 --- posting_attachments.php 5 Sep 2006 08:48:34 -0000 1.11 *************** *** 1296,1300 **** if ($cat_id == IMAGE_CAT || strpos($this->type, 'image/') !== false) { ! $img_info = @getimagesize($upload_dir . '/' . $this->attach_filename . 'blabla'); // Do not display as image if we are not able to retrieve the info --- 1296,1300 ---- if ($cat_id == IMAGE_CAT || strpos($this->type, 'image/') !== false) { ! $img_info = @getimagesize($upload_dir . '/' . $this->attach_filename); // Do not display as image if we are not able to retrieve the info |
|
From: Meik S. <acy...@us...> - 2006-09-05 08:48:01
|
Update of /cvsroot/acydmods/amod_24x/attach_mod In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv17167/attach_mod Modified Files: posting_attachments.php Log Message: check file type Index: posting_attachments.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/posting_attachments.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** posting_attachments.php 22 Apr 2006 16:21:09 -0000 1.9 --- posting_attachments.php 5 Sep 2006 08:47:54 -0000 1.10 *************** *** 1293,1296 **** --- 1293,1345 ---- } + // Check image type + if ($cat_id == IMAGE_CAT || strpos($this->type, 'image/') !== false) + { + $img_info = @getimagesize($upload_dir . '/' . $this->attach_filename . 'blabla'); + + // Do not display as image if we are not able to retrieve the info + if ($img_info === false) + { + $error = TRUE; + if(!empty($error_msg)) + { + $error_msg .= '<br />'; + } + $error_msg .= "Fatal error in getting image size and type."; + } + else + { + // check file type + $types = array( + 1 => array('gif'), + 2 => array('jpg', 'jpeg'), + 3 => array('png'), + 4 => array('swf'), + 5 => array('psd'), + 6 => array('bmp'), + 7 => array('tif', 'tiff'), + 8 => array('tif', 'tiff'), + 9 => array('jpg', 'jpeg'), + 10 => array('jpg', 'jpeg'), + 11 => array('jpg', 'jpeg'), + 12 => array('jpg', 'jpeg'), + 13 => array('swc'), + 14 => array('iff'), + 15 => array('wbmp'), + 16 => array('xbm'), + ); + + if (!in_array($this->extension, $types[$img_info[2]])) + { + $error = TRUE; + if(!empty($error_msg)) + { + $error_msg .= '<br />'; + } + $error_msg .= "Filetype mismatch: expected {$types[$img_info[2]][0]} but {$this->extension} given."; + } + } + } + // Check Image Size, if it's an image if (!$error && $userdata['user_level'] != ADMIN && $cat_id == IMAGE_CAT) |
|
From: Meik S. <acy...@us...> - 2006-09-04 17:01:00
|
Update of /cvsroot/acydmods/amod_24x/docs In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv18097/docs Modified Files: changelog.txt Log Message: changelog Index: changelog.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/changelog.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** changelog.txt 23 Apr 2006 14:13:02 -0000 1.11 --- changelog.txt 4 Sep 2006 17:00:57 -0000 1.12 *************** *** 1,499 **** ! Changelog: ! ! 2006-04-23 - Version 2.4.3 ! - fixed wrong id in posting_attachments.php ! - fixed some wrong db calls in functions_admin.php (not changing functionality) ! ! 2006-04-18 - Version 2.4.2 ! - fixed XSS on uploading while displaying an error - Ptirhiik ! - take user_pending status into account while checking the quota limits - Ptirhiik ! - check the edited attachment ids if they belong to the post/pm - Ptirhiik [...976 lines suppressed...] ! - Admin Module finished ! - Database changes can be undone (mod_table_uninst.php) ! - added check of upload ability and safe mode at table installation ! - put language changes for installation in extra files ! - kicked 'array_'-functions, because they are not supported in php3 ! - some cleanups and bugfixes ! - some changes to the download counter (especially security related things) ! ! 2002-01-20 - Version 2.0.1 ! - Download Counter ! ! 2002-01-19 ! - French translation (Lional F. Lebeau, thank you very much) ! ! 2002-01-14 ! - changed the install.txt a little bit ! - default auth for attachments in forums now ADMIN ! ! 2002-01-12 - Version 2.0.0 ! - Initial Release only for testing, little admin-module (group and shadow not finished yet) |
|
From: Meik S. <acy...@us...> - 2006-09-04 16:46:39
|
Update of /cvsroot/acydmods/amod_24x/docs In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv12090/docs Modified Files: install.txt Log Message: version 2.4.4 Index: install.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/install.txt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** install.txt 1 Jun 2006 18:50:43 -0000 1.15 --- install.txt 4 Sep 2006 16:46:35 -0000 1.16 *************** *** 1,1030 **** ! ################################################################# ! ## MOD Title: File Attachment Mod v2 ! ## MOD Author: Acyd Burn < N/A > (Meik Sievertsen) http://www.opentools.de/ ! ## MOD Description: ! ## This Mod adds the ability to attach files in phpBB2. ! ## This Version has been tested and works with phpBB 2.0.20. ! ## This Version will NOT work with phpBB2 Modules designed for *Nuke Portals or phpBB2 Ports. ! ## MOD Version: 2.4.4 ! ## ! ## Installation Level: Intermediate [...2033 lines suppressed...] ! # (or change the owner to you httpd-servers owner) to upload files if you do not use the ftp upload feature. ! # if you only have plain ftp-access change the 'Attribute' of your files-directory to rwxrwxrwx. ! # ! # If you are using the ftp-upload feature, enter the relevant information in Attachments->Management. ! # The password is stored in plaintext within the database. You don't have to chmod the directory (ftp-path). ! # ! # it would be wise if you put the provided index.php to this directory to prevent directory indexing if this ! # has been enabled at your server. ! # ! # Before you make anything, i suggest you go to your Administration Panel->Attachments->Management and prove ! # that uploading is working with the Test Upload button. ;) ! # ! # CONFIG CACHING ! # ! # If you want the Attachment Mod config table to be cached (reduce of one query on all phpBB2 Pages), you ! # have to create a directory 'cache' within your phpBB2 root folder. ! # This directory have to be chmodded to 777 (see above instructions on how to do this). ! # ! ! # EoM |
|
From: Meik S. <acy...@us...> - 2006-09-04 12:56:14
|
Update of /cvsroot/acydmods/amod_24x/docs In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6479/docs Modified Files: features.txt install_using_premod_files.txt Log Message: some tiny changes. Index: install_using_premod_files.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/install_using_premod_files.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** install_using_premod_files.txt 16 Nov 2005 19:06:12 -0000 1.1 --- install_using_premod_files.txt 4 Sep 2006 12:56:06 -0000 1.2 *************** *** 1,166 **** ! # Installation using the pre-modified files: ! ! # ! # STEP NUMBER I: Uploading all new Files ! # ! # Copy/Upload all files to their respective Location ! # The left side shows the location of the file you should have after decompressing the package, ! # the right side shows the location the file must be copied to, it is always the phpBB Root path (where the config.php file is stored at). ! # Alternatively just decompress/upload the contents within the attachment_mod folder directly to your phpBB folder. ! # ! # attachment_mod/download.php -> download.php ! # attachment_mod/uacp.php -> uacp.php ! # attachment_mod/attach_rules.php -> attach_rules.php ! # attachment_mod/admin/admin_attach_cp.php -> admin/admin_attach_cp.php ! # attachment_mod/admin/admin_attachments.php -> admin/admin_attachments.php ! # attachment_mod/admin/admin_extensions.php -> admin/admin_extensions.php ! # attachment_mod/attach_mod/attachment_mod.php -> attach_mod/attachment_mod.php ! # attachment_mod/attach_mod/displaying.php -> attach_mod/displaying.php ! # attachment_mod/attach_mod/index.htm -> attach_mod/index.htm ! # attachment_mod/attach_mod/pm_attachments.php -> attach_mod/pm_attachments.php ! # attachment_mod/attach_mod/posting_attachments.php -> attach_mod/posting_attachments.php ! # attachment_mod/attach_mod/includes/constants.php -> attach_mod/includes/constants.php ! # attachment_mod/attach_mod/includes/functions_admin.php -> attach_mod/includes/functions_admin.php ! # attachment_mod/attach_mod/includes/functions_attach.php -> attach_mod/includes/functions_attach.php ! # attachment_mod/attach_mod/includes/functions_delete.php -> attach_mod/includes/functions_delete.php ! # attachment_mod/attach_mod/includes/functions_filetypes.php -> attach_mod/includes/functions_filetypes.php ! # attachment_mod/attach_mod/includes/functions_includes.php -> attach_mod/includes/functions_includes.php ! # attachment_mod/attach_mod/includes/functions_selects.php -> attach_mod/includes/functions_selects.php ! # attachment_mod/attach_mod/includes/functions_thumbs.php -> attach_mod/includes/functions_thumbs.php ! # attachment_mod/attach_mod/includes/index.htm -> attach_mod/includes/index.htm ! # attachment_mod/files/index.php -> files/index.php ! # attachment_mod/images/icon_clip.gif -> images/icon_clip.gif ! # attachment_mod/images/icon_disk.gif -> images/icon_disk.gif ! # attachment_mod/images/icon_disk_gray.gif -> images/icon_disk_gray.gif ! # attachment_mod/templates/subSilver/add_attachment_body.tpl -> templates/subSilver/add_attachment_body.tpl ! # attachment_mod/templates/subSilver/posted_attachments_body.tpl -> templates/subSilver/posted_attachments_body.tpl ! # attachment_mod/templates/subSilver/posting_attach_body.tpl -> templates/subSilver/posting_attach_body.tpl ! # attachment_mod/templates/subSilver/posting_attach_rules.tpl -> templates/subSilver/posting_attach_rules.tpl ! # attachment_mod/templates/subSilver/uacp_body.tpl -> templates/subSilver/uacp_body.tpl ! # attachment_mod/templates/subSilver/viewtopic_attach_body.tpl -> templates/subSilver/viewtopic_attach_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cat_body.tpl -> templates/subSilver/admin/attach_cat_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_attachments.tpl -> templates/subSilver/admin/attach_cp_attachments.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_body.tpl -> templates/subSilver/admin/attach_cp_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_search.tpl -> templates/subSilver/admin/attach_cp_search.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_user.tpl -> templates/subSilver/admin/attach_cp_user.tpl ! # attachment_mod/templates/subSilver/admin/attach_extension_groups.tpl -> templates/subSilver/admin/attach_extension_groups.tpl ! # attachment_mod/templates/subSilver/admin/attach_extensions.tpl -> templates/subSilver/admin/attach_extensions.tpl ! # attachment_mod/templates/subSilver/admin/attach_forbidden_extensions.tpl -> templates/subSilver/admin/attach_forbidden_extensions.tpl ! # attachment_mod/templates/subSilver/admin/attach_manage_body.tpl -> templates/subSilver/admin/attach_manage_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_quota_body.tpl -> templates/subSilver/admin/attach_quota_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_shadow.tpl -> templates/subSilver/admin/attach_shadow.tpl ! # attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl ! # attachment_mod/language/lang_english/lang_admin_attach.php -> language/lang_english/lang_admin_attach.php ! # attachment_mod/language/lang_english/lang_faq_attach.php -> language/lang_english/lang_faq_attach.php ! # attachment_mod/language/lang_english/lang_main_attach.php -> language/lang_english/lang_main_attach.php ! # attachment_mod/install/install.php -> install/install.php ! # attachment_mod/install/schemas/attach_mysql_basic.sql -> install/schemas/attach_mysql_basic.sql ! # attachment_mod/install/schemas/attach_mysql_schema.sql -> install/schemas/attach_mysql_schema.sql ! # attachment_mod/install/schemas/attach_mssql_basic.sql -> install/schemas/attach_mssql_basic.sql ! # attachment_mod/install/schemas/attach_mssql_schema.sql -> install/schemas/attach_mssql_schema.sql ! # attachment_mod/install/schemas/attach_postgres_basic.sql -> install/schemas/attach_postgres_basic.sql ! # attachment_mod/install/schemas/attach_postgres_schema.sql -> install/schemas/attach_postgres_schema.sql ! # ! ! # ! # If you want/have another language, please visit http://www.opentools.de/ and download your ! # Language if it is available. If you have a multi-lingual board you may want to upload all language files. ! # Please make sure you download the Language Pack for at least Version 2.3.9 of the Attachment Mod. ! # ! ! # ! # STEP NUMBER II: Installing the Attachment Mod (Database) ! # ! # You should have uploaded the install folder (above), which is only needed for running the database installer. ! # Make sure you uploaded the schema Files (those files ending in .sql) in ASCII Mode (This is the Layout and Data for your Database): ! # ! # ! # ! # Now we want to create the tables, therefore we run the install.php file (http://www.yoursite.com/phpBB2/install/install.php) ! # Please be sure to enter the correct URL (replacing www.yoursite.com with your sites URL), ! # the install.php file has to be placed within the install folder. If it is not within the install folder, you WILL get errors. ! # ! # After the install.php file hass been executed successfully, you should remove the complete install folder. ! # ! # ! # ! ! ! # ! # STEP NUMBER III: Applying the pre-modified files ! # ! # What you need to do within this step is overwriting already existing phpBB files. Be absolutely sure you have an ! # un-modded, not modified board installation. Else you might lose your code modifications. ! # ! # First of all, you have to download the pre-modified files. They are not within this package, they are seperatly available ! # at: ! # http://sourceforge.net/project/showfiles.php?group_id=66311 ! # (they are available at http://www.opentools.de/ too) ! # ! # Now select the most appropiate pre-modified files (the package reflecting your currently installed phpBB version) and ! # download the file. ! # ! # You need to decompress the file and overwrite the existing files. Now a list of all files which needs to be replaced: ! # ! # common.php ! # faq.php ! # modcp.php ! # posting.php ! # privmsg.php ! # viewforum.php ! # viewtopic.php ! # admin/admin_forumauth.php ! # admin/admin_ug_auth.php ! # admin/admin_forums.php ! # admin/admin_groups.php ! # admin/admin_users.php ! # includes/auth.php ! # includes/functions.php ! # includes/functions_admin.php ! # includes/prune.php ! # includes/topic_review.php ! # includes/usercp_viewprofile.php ! # templates/subSilver/modcp_body.tpl ! # templates/subSilver/posting_body.tpl ! # templates/subSilver/posting_preview.tpl ! # templates/subSilver/posting_topic_review.tpl ! # templates/subSilver/privmsgs_body.tpl ! # templates/subSilver/privmsgs_preview.tpl ! # templates/subSilver/privmsgs_read_body.tpl ! # templates/subSilver/profile_view_body.tpl ! # templates/subSilver/viewforum_body.tpl ! # templates/subSilver/viewtopic_body.tpl ! # templates/subSilver/admin/group_edit_body.tpl ! # templates/subSilver/admin/user_edit_body.tpl ! # ! # You only need to replace your original phpBB Files with the pre-modified files. ! # If you have mods installed, changing one of the pre-modified files, you have to re-apply the mods to them. ! # ! ! # ! # STEP NUMBER IV: Additional Instructions ! # ! # The standard path for your files is 'files' and the standard upload image is images/icon_clip.gif. ! # If you want to change it, go to your Administration Panel and change it under Attachments->Management. ! # ! # If the installer told you to make the upload path writeable, you have to chmod it to 777 ! # (or change the owner to you httpd-servers owner) to upload files if you do not use the ftp upload feature. ! # if you only have plain ftp-access change the 'Attribute' of your files-directory to rwxrwxrwx. ! # ! # If you are using the ftp-upload feature, enter the relevant information in Attachments->Management. ! # The password is stored in plaintext within the database. You don't have to chmod the directory (ftp-path). ! # ! # it would be wise if you put the provided index.php to this directory to prevent directory indexing if this ! # has been enabled at your server. ! # ! # Before you make anything, i suggest you go to your Administration Panel->Attachments->Management and prove ! # that uploading is working with the Test Upload button. ;) ! # ! # CONFIG CACHING ! # ! # If you want the Attachment Mod config table to be cached (reduce of one query on all phpBB2 Pages), you ! # have to create a directory 'cache' within your phpBB2 root folder. ! # This directory have to be chmodded to 777 (see above instructions on how to do this). ! # ! ! # EoM --- 1,166 ---- ! # Installation using the pre-modified files: ! ! # ! # STEP NUMBER I: Uploading all new Files ! # ! # Copy/Upload all files to their respective Location ! # The left side shows the location of the file you should have after decompressing the package, ! # the right side shows the location the file must be copied to, it is always the phpBB Root path (where the config.php file is stored at). ! # Alternatively just decompress/upload the contents within the attachment_mod folder directly to your phpBB folder. ! # ! # attachment_mod/download.php -> download.php ! # attachment_mod/uacp.php -> uacp.php ! # attachment_mod/attach_rules.php -> attach_rules.php ! # attachment_mod/admin/admin_attach_cp.php -> admin/admin_attach_cp.php ! # attachment_mod/admin/admin_attachments.php -> admin/admin_attachments.php ! # attachment_mod/admin/admin_extensions.php -> admin/admin_extensions.php ! # attachment_mod/attach_mod/attachment_mod.php -> attach_mod/attachment_mod.php ! # attachment_mod/attach_mod/displaying.php -> attach_mod/displaying.php ! # attachment_mod/attach_mod/index.htm -> attach_mod/index.htm ! # attachment_mod/attach_mod/pm_attachments.php -> attach_mod/pm_attachments.php ! # attachment_mod/attach_mod/posting_attachments.php -> attach_mod/posting_attachments.php ! # attachment_mod/attach_mod/includes/constants.php -> attach_mod/includes/constants.php ! # attachment_mod/attach_mod/includes/functions_admin.php -> attach_mod/includes/functions_admin.php ! # attachment_mod/attach_mod/includes/functions_attach.php -> attach_mod/includes/functions_attach.php ! # attachment_mod/attach_mod/includes/functions_delete.php -> attach_mod/includes/functions_delete.php ! # attachment_mod/attach_mod/includes/functions_filetypes.php -> attach_mod/includes/functions_filetypes.php ! # attachment_mod/attach_mod/includes/functions_includes.php -> attach_mod/includes/functions_includes.php ! # attachment_mod/attach_mod/includes/functions_selects.php -> attach_mod/includes/functions_selects.php ! # attachment_mod/attach_mod/includes/functions_thumbs.php -> attach_mod/includes/functions_thumbs.php ! # attachment_mod/attach_mod/includes/index.htm -> attach_mod/includes/index.htm ! # attachment_mod/files/index.php -> files/index.php ! # attachment_mod/images/icon_clip.gif -> images/icon_clip.gif ! # attachment_mod/images/icon_disk.gif -> images/icon_disk.gif ! # attachment_mod/images/icon_disk_gray.gif -> images/icon_disk_gray.gif ! # attachment_mod/templates/subSilver/add_attachment_body.tpl -> templates/subSilver/add_attachment_body.tpl ! # attachment_mod/templates/subSilver/posted_attachments_body.tpl -> templates/subSilver/posted_attachments_body.tpl ! # attachment_mod/templates/subSilver/posting_attach_body.tpl -> templates/subSilver/posting_attach_body.tpl ! # attachment_mod/templates/subSilver/posting_attach_rules.tpl -> templates/subSilver/posting_attach_rules.tpl ! # attachment_mod/templates/subSilver/uacp_body.tpl -> templates/subSilver/uacp_body.tpl ! # attachment_mod/templates/subSilver/viewtopic_attach_body.tpl -> templates/subSilver/viewtopic_attach_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cat_body.tpl -> templates/subSilver/admin/attach_cat_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_attachments.tpl -> templates/subSilver/admin/attach_cp_attachments.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_body.tpl -> templates/subSilver/admin/attach_cp_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_search.tpl -> templates/subSilver/admin/attach_cp_search.tpl ! # attachment_mod/templates/subSilver/admin/attach_cp_user.tpl -> templates/subSilver/admin/attach_cp_user.tpl ! # attachment_mod/templates/subSilver/admin/attach_extension_groups.tpl -> templates/subSilver/admin/attach_extension_groups.tpl ! # attachment_mod/templates/subSilver/admin/attach_extensions.tpl -> templates/subSilver/admin/attach_extensions.tpl ! # attachment_mod/templates/subSilver/admin/attach_forbidden_extensions.tpl -> templates/subSilver/admin/attach_forbidden_extensions.tpl ! # attachment_mod/templates/subSilver/admin/attach_manage_body.tpl -> templates/subSilver/admin/attach_manage_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_quota_body.tpl -> templates/subSilver/admin/attach_quota_body.tpl ! # attachment_mod/templates/subSilver/admin/attach_shadow.tpl -> templates/subSilver/admin/attach_shadow.tpl ! # attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl ! # attachment_mod/language/lang_english/lang_admin_attach.php -> language/lang_english/lang_admin_attach.php ! # attachment_mod/language/lang_english/lang_faq_attach.php -> language/lang_english/lang_faq_attach.php ! # attachment_mod/language/lang_english/lang_main_attach.php -> language/lang_english/lang_main_attach.php ! # attachment_mod/install/install.php -> install/install.php ! # attachment_mod/install/schemas/attach_mysql_basic.sql -> install/schemas/attach_mysql_basic.sql ! # attachment_mod/install/schemas/attach_mysql_schema.sql -> install/schemas/attach_mysql_schema.sql ! # attachment_mod/install/schemas/attach_mssql_basic.sql -> install/schemas/attach_mssql_basic.sql ! # attachment_mod/install/schemas/attach_mssql_schema.sql -> install/schemas/attach_mssql_schema.sql ! # attachment_mod/install/schemas/attach_postgres_basic.sql -> install/schemas/attach_postgres_basic.sql ! # attachment_mod/install/schemas/attach_postgres_schema.sql -> install/schemas/attach_postgres_schema.sql ! # ! ! # ! # If you want/have another language, please visit http://www.opentools.de/ and download your ! # Language if it is available. If you have a multi-lingual board you may want to upload all language files. ! # Please make sure you download the Language Pack for at least Version 2.3.9 of the Attachment Mod. ! # ! ! # ! # STEP NUMBER II: Installing the Attachment Mod (Database) ! # ! # You should have uploaded the install folder (above), which is only needed for running the database installer. ! # Make sure you uploaded the schema Files (those files ending in .sql) in ASCII Mode (This is the Layout and Data for your Database): ! # ! # ! # ! # Now we want to create the tables, therefore we run the install.php file (http://www.yoursite.com/phpBB2/install/install.php) ! # Please be sure to enter the correct URL (replacing www.yoursite.com with your sites URL), ! # the install.php file has to be placed within the install folder. If it is not within the install folder, you WILL get errors. ! # ! # After the install.php file hass been executed successfully, you should remove the complete install folder. ! # ! # ! # ! ! ! # ! # STEP NUMBER III: Applying the pre-modified files ! # ! # What you need to do within this step is overwriting already existing phpBB files. Be absolutely sure you have an ! # un-modded, not modified board installation. Else you might lose your code modifications. ! # ! # First of all, you have to download the pre-modified files. They are not within this package, they are seperatly available ! # at: ! # http://sourceforge.net/project/showfiles.php?group_id=66311 ! # (they are available at http://www.opentools.de/ too) ! # ! # Now select the most appropiate pre-modified files (the package reflecting your currently installed phpBB version) and ! # download the file. ! # ! # You need to decompress the file and overwrite the existing files. Now a list of all files which needs to be replaced: ! # ! # common.php ! # faq.php ! # modcp.php ! # posting.php ! # privmsg.php ! # viewforum.php ! # viewtopic.php ! # admin/admin_forumauth.php ! # admin/admin_ug_auth.php ! # admin/admin_forums.php ! # admin/admin_groups.php ! # admin/admin_users.php ! # includes/auth.php ! # includes/functions.php ! # includes/functions_admin.php ! # includes/prune.php ! # includes/topic_review.php ! # includes/usercp_viewprofile.php ! # templates/subSilver/modcp_body.tpl ! # templates/subSilver/posting_body.tpl ! # templates/subSilver/posting_preview.tpl ! # templates/subSilver/posting_topic_review.tpl ! # templates/subSilver/privmsgs_body.tpl ! # templates/subSilver/privmsgs_preview.tpl ! # templates/subSilver/privmsgs_read_body.tpl ! # templates/subSilver/profile_view_body.tpl ! # templates/subSilver/viewforum_body.tpl ! # templates/subSilver/viewtopic_body.tpl ! # templates/subSilver/admin/group_edit_body.tpl ! # templates/subSilver/admin/user_edit_body.tpl ! # ! # You only need to replace your original phpBB Files with the pre-modified files. ! # If you have mods installed, changing one of the pre-modified files, you have to re-apply the mods to them. ! # ! ! # ! # STEP NUMBER IV: Additional Instructions ! # ! # The standard path for your files is 'files' and the standard upload image is images/icon_clip.gif. ! # If you want to change it, go to your Administration Panel and change it under Attachments->Management. ! # ! # If the installer told you to make the upload path writeable, you have to chmod it to 777 ! # (or change the owner to you httpd-servers owner) to upload files if you do not use the ftp upload feature. ! # if you only have plain ftp-access change the 'Attribute' of your files-directory to rwxrwxrwx. ! # ! # If you are using the ftp-upload feature, enter the relevant information in Attachments->Management. ! # The password is stored in plaintext within the database. You don't have to chmod the directory (ftp-path). ! # ! # it would be wise if you put the provided index.php to this directory to prevent directory indexing if this ! # has been enabled at your server. ! # ! # Before you make anything, i suggest you go to your Administration Panel->Attachments->Management and prove ! # that uploading is working with the Test Upload button. ;) ! # ! # CONFIG CACHING ! # ! # If you want the Attachment Mod config table to be cached (reduce of one query on all phpBB2 Pages), you ! # have to create a directory 'cache' within your phpBB2 root folder. ! # This directory have to be chmodded to 777 (see above instructions on how to do this). ! # ! ! # EoM Index: features.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/features.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** features.txt 15 Nov 2005 21:19:30 -0000 1.1 --- features.txt 4 Sep 2006 12:56:06 -0000 1.2 *************** *** 1,57 **** ! - Full Permissions System ! You are able to set Download Permissions, Upload Permissions and Extension Groups per Forum Permissions. ! - Able to add comments to Attachments ! - Automatic Deletion of Attachments if Posts got deleted (manual Delete, pruning, within the Moderator Control Panel or the User Attachment Control Panel) ! - Editing of existing Attachments. ! Able to Delete/Add/Change Comment and Update Attachments while editing Posts. ! - even if the local path for Attachments is changed in admin, all previous posted attachments will be displayed correctly ! - category support - special behaviour instead of just presenting a link ! - Special Behaviour on Images: ! Thumbnail Support ! Image Link Presentation depending on Dimensions ! Inline Images ! - Stream Files directly within Posts. Supported Types: ! aif, aifc, aiff, asf, asx, au, avi, ivf, m3u, mid, midi, mlv, mp2, mp3, mp2v, mpa, mpe, mpeg, mpg, mpv2, rmi, snd, wav, wax, wm, wma, wmx, wmv, wvx ! - Play Flash Files within Posts. Support for compressed Flash MX Files. ! - little image definable for displaying in front of Attachments and Threads containing Attachments. ! Able to define an Image for Forum View and for every Extension Group. ! - Maximum Upload Size definable. ! Maximum Upload Size per Extension Group definable. ! - Multiple attachments in one post ! maximum number of attachments per post definable ! - multiple attachments in one PM ! maximum number of attachments per PM definable ! - Attachment Quotas: ! - Overall Attachment Quota ! - User Attachment Quotas ! - Group Attachment Quotas ! - Quotas are definable for PM Boxes and Upload ! - download counter ! - Download Method selectable for every Extension Group ! This is very useful for Datatypes needing a 'real' link, for example real media files ! - three Upload Methods: ! - Normal Upload ! - FTP Upload ! - FTP Remote Upload ! - Able to display Attachments in Preview Window ! - Able to display Attachments in Review Window ! - User Attachment Control Panel ! - Attachment Limit Box within Private Message Box ! - Attachment Upload Stats in Users Profile ! ! - Special Admin Modules: ! - Manage Forbidden Extensions ! - Manage allowed Extensions (Delete, Add, Assign new group) ! - Manage Extension Groups ! - Manage Special Categories ! - Synchronize Attachments ! - Delete Shadow Attachments (those Attachments not deleted with posts, for what reason ever) ! - a complete Attachment Control Panel (with an integrated search feature) ! - much more. To sum it up, a fully customizable Attachment Feature for your Board. ! ! - Language Packs: ! for up-to-date Language Packs and Informations please visit http://www.opentools.de/ ! or the Language Pack Forum at http://www.opentools.de/board ! (if someone is willing to translate the Attachment Mod to other Languages, please contact me at Opentools.de) ! ! - database-support: mysql, mysql4, mssql, mssql-odbc, postgresql --- 1,57 ---- ! - Full Permissions System ! You are able to set Download Permissions, Upload Permissions and Extension Groups per Forum Permissions. ! - Able to add comments to Attachments ! - Automatic Deletion of Attachments if Posts got deleted (manual Delete, pruning, within the Moderator Control Panel or the User Attachment Control Panel) ! - Editing of existing Attachments. ! Able to Delete/Add/Change Comment and Update Attachments while editing Posts. ! - even if the local path for Attachments is changed in admin, all previous posted attachments will be displayed correctly ! - category support - special behaviour instead of just presenting a link ! - Special Behaviour on Images: ! Thumbnail Support ! Image Link Presentation depending on Dimensions ! Inline Images ! - Stream Files directly within Posts. Supported Types: ! aif, aifc, aiff, asf, asx, au, avi, ivf, m3u, mid, midi, mlv, mp2, mp3, mp2v, mpa, mpe, mpeg, mpg, mpv2, rmi, snd, wav, wax, wm, wma, wmx, wmv, wvx ! - Play Flash Files within Posts. Support for compressed Flash MX Files. ! - little image definable for displaying in front of Attachments and Threads containing Attachments. ! Able to define an Image for Forum View and for every Extension Group. ! - Maximum Upload Size definable. ! Maximum Upload Size per Extension Group definable. ! - Multiple attachments in one post ! maximum number of attachments per post definable ! - multiple attachments in one PM ! maximum number of attachments per PM definable ! - Attachment Quotas: ! - Overall Attachment Quota ! - User Attachment Quotas ! - Group Attachment Quotas ! - Quotas are definable for PM Boxes and Upload ! - download counter ! - Download Method selectable for every Extension Group ! This is very useful for Datatypes needing a 'real' link, for example real media files ! - three Upload Methods: ! - Normal Upload ! - FTP Upload ! - FTP Remote Upload ! - Able to display Attachments in Preview Window ! - Able to display Attachments in Review Window ! - User Attachment Control Panel ! - Attachment Limit Box within Private Message Box ! - Attachment Upload Stats in Users Profile ! ! - Special Admin Modules: ! - Manage Forbidden Extensions ! - Manage allowed Extensions (Delete, Add, Assign new group) ! - Manage Extension Groups ! - Manage Special Categories ! - Synchronize Attachments ! - Delete Shadow Attachments (those Attachments not deleted with posts, for what reason ever) ! - a complete Attachment Control Panel (with an integrated search feature) ! - much more. To sum it up, a fully customizable Attachment Feature for your Board. ! ! - Language Packs: ! for up-to-date Language Packs and Informations please visit http://www.opentools.de/ ! or the Language Pack Forum at http://www.opentools.de/board ! (if someone is willing to translate the Attachment Mod to other Languages, please contact me at Opentools.de) ! ! - database-support: mysql, mysql4, mssql, mssql-odbc, postgresql |
|
From: Meik S. <acy...@us...> - 2006-09-04 12:56:13
|
Update of /cvsroot/acydmods/amod_24x In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6479 Modified Files: download.php Log Message: some tiny changes. Index: download.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/download.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** download.php 13 Apr 2006 14:48:50 -0000 1.5 --- download.php 4 Sep 2006 12:56:06 -0000 1.6 *************** *** 181,185 **** // Send out the Headers header('Content-Type: ' . $attachment['mimetype'] . '; name="' . $real_filename . '"'); ! header('Content-Disposition: inline; filename="' . $real_filename . '"'); unset($real_filename); --- 181,185 ---- // Send out the Headers header('Content-Type: ' . $attachment['mimetype'] . '; name="' . $real_filename . '"'); ! header('Content-Disposition: attachment; filename="' . $real_filename . '"'); unset($real_filename); |
|
From: Meik S. <acy...@us...> - 2006-09-04 12:56:13
|
Update of /cvsroot/acydmods/amod_24x/contrib In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6479/contrib Modified Files: readme.txt Log Message: some tiny changes. Index: readme.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/contrib/readme.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** readme.txt 17 Nov 2005 08:51:16 -0000 1.1 --- readme.txt 4 Sep 2006 12:56:06 -0000 1.2 *************** *** 1,10 **** ! The provided Files/Directories are: ! ! - app_icons ! Here you will find several icons for several file types. ! Just upload them to your images directory. Please read the User Guide if ! you do not know how to use icons for presenting attachment data or how to ! setup images for Extension Groups. ! ! Thanks goes to stitch626 for providing this images. :) ! --- 1,10 ---- ! The provided Files/Directories are: ! ! - app_icons ! Here you will find several icons for several file types. ! Just upload them to your images directory. Please read the User Guide if ! you do not know how to use icons for presenting attachment data or how to ! setup images for Extension Groups. ! ! Thanks goes to stitch626 for providing this images. :) ! |
|
From: Meik S. <acy...@us...> - 2006-09-04 12:56:13
|
Update of /cvsroot/acydmods/amod_24x/install/schemas In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6479/install/schemas Modified Files: attach_mssql_basic.sql attach_mysql_basic.sql attach_postgres_basic.sql Log Message: some tiny changes. Index: attach_mssql_basic.sql =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/schemas/attach_mssql_basic.sql,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** attach_mssql_basic.sql 1 Jun 2006 18:50:44 -0000 1.5 --- attach_mssql_basic.sql 4 Sep 2006 12:56:07 -0000 1.6 *************** *** 61,64 **** --- 61,66 ---- INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (6,'asp'); INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (7,'cgi'); + INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (8,'php5'); + INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (9,'php6'); SET IDENTITY_INSERT phpbb_forbidden_extensions OFF; Index: attach_postgres_basic.sql =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/schemas/attach_postgres_basic.sql,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** attach_postgres_basic.sql 1 Jun 2006 18:50:44 -0000 1.5 --- attach_postgres_basic.sql 4 Sep 2006 12:56:07 -0000 1.6 *************** *** 57,60 **** --- 57,62 ---- INSERT INTO phpbb_forbidden_extensions (extension) VALUES ('asp'); INSERT INTO phpbb_forbidden_extensions (extension) VALUES ('cgi'); + INSERT INTO phpbb_forbidden_extensions (extension) VALUES ('php5'); + INSERT INTO phpbb_forbidden_extensions (extension) VALUES ('php6'); /* -- extension_groups */ Index: attach_mysql_basic.sql =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/schemas/attach_mysql_basic.sql,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** attach_mysql_basic.sql 1 Jun 2006 18:50:44 -0000 1.5 --- attach_mysql_basic.sql 4 Sep 2006 12:56:07 -0000 1.6 *************** *** 56,59 **** --- 56,61 ---- INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (6,'asp'); INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (7,'cgi'); + INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (8,'php5'); + INSERT INTO phpbb_forbidden_extensions (ext_id, extension) VALUES (9,'php6'); # -- extension_groups |
|
From: Meik S. <acy...@us...> - 2006-09-04 12:35:48
|
Update of /cvsroot/acydmods/amod_24x/attach_mod/includes In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv32482/attach_mod/includes Modified Files: functions_includes.php Log Message: fix a bug submitted by alcaeus Index: functions_includes.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/includes/functions_includes.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** functions_includes.php 6 Nov 2005 16:32:19 -0000 1.3 --- functions_includes.php 4 Sep 2006 12:35:43 -0000 1.4 *************** *** 534,538 **** 'L_UACP' => $lang['UACP'], 'L_UPLOAD_QUOTA' => $lang['Upload_quota'], ! 'U_UACP' => $phpbb_root_path . 'uacp.' . $phpEx . '?u=' . $user_id . '&sid=' . $userdata['session_id'], 'UPLOADED' => sprintf($lang['User_uploaded_profile'], $user_uploaded), 'QUOTA' => sprintf($lang['User_quota_profile'], $user_quota), --- 534,538 ---- 'L_UACP' => $lang['UACP'], 'L_UPLOAD_QUOTA' => $lang['Upload_quota'], ! 'U_UACP' => $phpbb_root_path . 'uacp.' . $phpEx . '?' . POST_USERS_URL . '=' . $user_id . '&sid=' . $userdata['session_id'], 'UPLOADED' => sprintf($lang['User_uploaded_profile'], $user_uploaded), 'QUOTA' => sprintf($lang['User_quota_profile'], $user_quota), |
|
From: Meik S. <acy...@us...> - 2006-07-08 15:57:07
|
Update of /cvsroot/acydmods/amod_24x/testrename In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv24508/testrename Added Files: testrename.php Log Message: --- NEW FILE: testrename.php --- |
|
From: Meik S. <acy...@us...> - 2006-07-08 14:34:35
|
Update of /cvsroot/acydmods/amod_24x/testrename In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv17729/testrename Removed Files: testrename.php Log Message: --- testrename.php DELETED --- |
|
From: Meik S. <acy...@us...> - 2006-07-08 14:15:39
|
Update of /cvsroot/acydmods/amod_24x/testrename In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv7196/test_rename Modified Files: testrename.php Log Message: test Index: testrename.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/testrename/testrename.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** testrename.php 8 Jul 2006 14:14:48 -0000 1.1 --- testrename.php 8 Jul 2006 14:15:37 -0000 1.2 *************** *** 1 **** ! test \ No newline at end of file --- 1 ---- ! 2test \ No newline at end of file |
|
From: Meik S. <acy...@us...> - 2006-07-08 14:14:51
|
Update of /cvsroot/acydmods/amod_24x/testrename In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6753/testrename Added Files: testrename.php Log Message: create folder for testing new rename functionality of cvsnt 2.5.x --- NEW FILE: testrename.php --- test |
|
From: Meik S. <acy...@us...> - 2006-07-08 14:13:52
|
Update of /cvsroot/acydmods/amod_24x/testrename In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv6369/testrename Log Message: Directory /cvsroot/acydmods/amod_24x/testrename added to the repository |
|
From: Meik S. <acy...@us...> - 2006-06-01 18:50:54
|
Update of /cvsroot/acydmods/amod_24x/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9798/docs Modified Files: install.txt update.txt Log Message: some tiny bugfixes Index: install.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/install.txt,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** install.txt 23 Apr 2006 14:13:02 -0000 1.14 --- install.txt 1 Jun 2006 18:50:43 -0000 1.15 *************** *** 6,10 **** ## This Version has been tested and works with phpBB 2.0.20. ## This Version will NOT work with phpBB2 Modules designed for *Nuke Portals or phpBB2 Ports. ! ## MOD Version: 2.4.3 ## ## Installation Level: Intermediate --- 6,10 ---- ## This Version has been tested and works with phpBB 2.0.20. ## This Version will NOT work with phpBB2 Modules designed for *Nuke Portals or phpBB2 Ports. ! ## MOD Version: 2.4.4 ## ## Installation Level: Intermediate *************** *** 16,20 **** ## posting_preview.tpl, posting_topic_review.tpl, privmsgs_body.tpl, privmsgs_preview.tpl, privmsgs_read_body.tpl, ## profile_view_body.tpl, viewforum_body.tpl, viewtopic_body.tpl, admin/group_edit_body.tpl, admin/user_edit_body.tpl - ## Lines(!) To Add: 115 ## Included Files: many many files ## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 --- 16,19 ---- *************** *** 90,93 **** --- 89,97 ---- ## MOD History: ## + ## 2006-06-01 - Version 2.4.4 + ## - fixed typo in functions_filetypes.php + ## - adjusted install.txt to follow the phpBB MOD guidelines + ## - adjusted attachment viewtopic template for calling the loop param correctly + ## ## 2006-04-23 - Version 2.4.3 ## - fixed wrong id in posting_attachments.php Index: update.txt =================================================================== RCS file: /cvsroot/acydmods/amod_24x/docs/update.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** update.txt 22 Apr 2006 16:21:09 -0000 1.4 --- update.txt 1 Jun 2006 18:50:44 -0000 1.5 *************** *** 17,21 **** This package contains a number of archives, each contains the files changed from a given release to the latest release. You should select the appropriate archive for your current version, e.g. if you currently have 2.3.14 you should select the ! 2.3.14_to_2.4.3.zip/tar.gz file. The directory structure has been preserved enabling you (if you wish) to simply upload the contents of the archive to the appropriate --- 17,21 ---- This package contains a number of archives, each contains the files changed from a given release to the latest release. You should select the appropriate archive for your current version, e.g. if you currently have 2.3.14 you should select the ! 2.3.14_to_2.4.4.zip/tar.gz file. The directory structure has been preserved enabling you (if you wish) to simply upload the contents of the archive to the appropriate *************** *** 34,38 **** A number of patch files are provided to allow you to upgrade from previous releases. ! Select the correct patch, e.g. if your current version is 2.3.14 you need the attach_mod-2.3.14_to_2.4.3.patch. Place the correct patch in the parent directory containing the phpBB 2 core files (i.e. index.php, viewforum.php, etc.). With this done you should run the following command: --- 34,38 ---- A number of patch files are provided to allow you to upgrade from previous releases. ! Select the correct patch, e.g. if your current version is 2.3.14 you need the attach_mod-2.3.14_to_2.4.4.patch. Place the correct patch in the parent directory containing the phpBB 2 core files (i.e. index.php, viewforum.php, etc.). With this done you should run the following command: *************** *** 54,58 **** Please be careful to not overwrite your existing images or uploaded files. ! --- Upload the Updater: --- 54,58 ---- Please be careful to not overwrite your existing images or uploaded files. ! --- STEP NUMBER 1: Upload the Updater: *************** *** 63,72 **** within the install folder under your phpBB2 Directory. ! --- Now run the update script: http://www.yourdomain.com/phpBB2/install/update_to_latest.php If you have problems or questions on this, please read the Attachment Mod User Guide first. ! --- Upload all files to their respective Location (the directory structure is in the folder root). --- 63,72 ---- within the install folder under your phpBB2 Directory. ! --- STEP NUMBER 2: Now run the update script: http://www.yourdomain.com/phpBB2/install/update_to_latest.php If you have problems or questions on this, please read the Attachment Mod User Guide first. ! --- STEP NUMBER 3: Upload all files to their respective Location (the directory structure is in the folder root). *************** *** 110,114 **** attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl ! --- Upload the Language Files (English (German is optional)) provided with the Attachment Mod, located in attach_mod/root/language) --- 110,114 ---- attachment_mod/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl ! --- STEP NUMBER 4: Upload the Language Files (English (German is optional)) provided with the Attachment Mod, located in attach_mod/root/language) |
|
From: Meik S. <acy...@us...> - 2006-06-01 18:50:54
|
Update of /cvsroot/acydmods/amod_24x/attach_mod/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9798/attach_mod/includes Modified Files: constants.php functions_filetypes.php Log Message: some tiny bugfixes Index: constants.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/includes/constants.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** constants.php 22 Apr 2006 16:21:09 -0000 1.5 --- constants.php 1 Jun 2006 18:50:42 -0000 1.6 *************** *** 63,67 **** define('QUOTA_PM_LIMIT', 2); ! define('ATTACH_VERSION', '2.4.3'); --- 63,67 ---- define('QUOTA_PM_LIMIT', 2); ! define('ATTACH_VERSION', '2.4.4'); Index: functions_filetypes.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/attach_mod/includes/functions_filetypes.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** functions_filetypes.php 5 Nov 2005 12:30:57 -0000 1.1 --- functions_filetypes.php 1 Jun 2006 18:50:42 -0000 1.2 *************** *** 72,76 **** } ! $error = faöse; // BMP - IMAGE --- 72,76 ---- } ! $error = false; // BMP - IMAGE |
|
From: Meik S. <acy...@us...> - 2006-06-01 18:50:50
|
Update of /cvsroot/acydmods/amod_24x/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9798/install Modified Files: update_to_latest.php Log Message: some tiny bugfixes Index: update_to_latest.php =================================================================== RCS file: /cvsroot/acydmods/amod_24x/install/update_to_latest.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** update_to_latest.php 22 Apr 2006 16:21:10 -0000 1.6 --- update_to_latest.php 1 Jun 2006 18:50:44 -0000 1.7 *************** *** 461,465 **** insert_into_config('img_imagick', ''); insert_into_config('show_apcp', '0'); ! insert_into_config('attach_version', '2.4.3'); insert_into_config('default_upload_quota', '0'); insert_into_config('default_pm_quota', '0'); --- 461,465 ---- insert_into_config('img_imagick', ''); insert_into_config('show_apcp', '0'); ! insert_into_config('attach_version', '2.4.4'); insert_into_config('default_upload_quota', '0'); insert_into_config('default_pm_quota', '0'); *************** *** 467,471 **** insert_into_config('use_gd2', '0'); ! $sql = "UPDATE phpbb_attachments_config SET config_value = '2.4.3' WHERE config_name = 'attach_version';"; $result = evaluate_statement($sql, true, true); --- 467,471 ---- insert_into_config('use_gd2', '0'); ! $sql = "UPDATE phpbb_attachments_config SET config_value = '2.4.4' WHERE config_name = 'attach_version';"; $result = evaluate_statement($sql, true, true); |