Avatar Image
Usuario habitual
Usuario habitual

Pues si me baje el archivo ese de attach para poder adjuntar archivos a los foros phpbb, pero hay muchas cosas, la verdad nose como se hace, creo que hay que editar algunas cosas, pero solo lo he visto en inglish y nose nada de inglish,,,,,,, si alguine tiene algo en español o si saben como hacerlo, y los mas importante si me pueden decir como hacerlo....... os agraceria muchisiiiiiimo

Avatar Image
Machacateclados
Machacateclados

si has bajado el mod a tu pc abre el zip y ve dentro de el la carpeta docs y de ahi busca el archivo install o readme y sigue los pasos que ahi indica

Avatar Image
Usuario habitual
Usuario habitual

``pues es exactamente lo que no entiendo, hay muchos archivos y esta en inglesssss todo, hay vainas que las puse en el traductor de altavista y entendi menos lo que queria derir...... internet es muy grnade no creo que nadie tengo eso en español...... sino tirare flechas haber cual pego jejejejejeje

Avatar Image
Machacateclados
Machacateclados

sigue estas instrucciones:



#
#-----[ OPEN ]---------------------------------------------
#
common.php

#
#-----[ FIND ]---------------------------------------------
# around line 171
$board_config[$row['config_name']] = $row['config_value'];
}

#
#-----[ AFTER, ADD ]--------------------------------------
# After the closing brace
include($phpbb_root_path . 'attach_mod/attachment_mod.'.$phpEx);

#
#-----[ OPEN ]---------------------------------------------
#
faq.php

#
#-----[ FIND ]---------------------------------------------
# around line 59
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/' . $lang_file . '.' . $phpEx);

#
#-----[ AFTER, ADD ]---------------------------------------
#
attach_faq_include($lang_file);

#
#-----[ OPEN ]---------------------------------------------
#
modcp.php

#
#-----[ FIND ]---------------------------------------------
# around line 321
remove_search_post($post_id_sql);

#
#-----[ AFTER, ADD ]---------------------------------------
#
delete_attachment(explode(', ', $post_id_sql));

#
#-----[ FIND ]---------------------------------------------
# around line 1148
'TOPIC_ID' => $topic_id,

#
#-----[ AFTER, ADD ]---------------------------------------
#
'TOPIC_ATTACHMENT_IMG' => topic_attachment_image($row['topic_attachment']),

#
#-----[ OPEN ]---------------------------------------------
#
posting.php

#
#-----[ FIND ]---------------------------------------------
# around line 407
$attach_sig = ( $submit || $refresh ) ? ( ( !empty($HTTP_POST_VARS['attach_sig']) ) ? TRUE : 0 ) : ( ( $userdata['user_id'] == ANONYMOUS ) ? 0 : $userdata['user_attachsig'] );

#
#-----[ AFTER, ADD ]---------------------------------------
#
execute_posting_attachment_handling();

#
#-----[ FIND ]---------------------------------------------
# around line 568
user_notification($mode, $post_data, $post_info['topic_title'], $forum_id, $topic_id, $post_id, $notify_user);
}

#
#-----[ AFTER, ADD ]---------------------------------------
# the Line have to be added AFTER the closing brace
$attachment_mod['posting']->insert_attachment($post_id);

#
#-----[ FIND ]---------------------------------------------
# around line 697
'preview' => 'posting_preview.tpl')
);

#
#-----[ AFTER, ADD ]---------------------------------------
# the Line have to be added AFTER the ');'
$attachment_mod['posting']->preview_attachments();

#
#-----[ OPEN ]---------------------------------------------
#
privmsg.php

#
#-----[ FIND ]---------------------------------------------
# around line 139
// ----------
// Start main

#
#-----[ BEFORE, ADD ]--------------------------------------
#
execute_privmsgs_attachment_handling($mode);

#
#-----[ FIND ]---------------------------------------------
# around line 358
//
// Pick a folder, any folder, so long as it's one below ...

#
#-----[ BEFORE, ADD ]--------------------------------------
#
$attachment_mod['pm']->duplicate_attachment_pm($privmsg['privmsgs_attachment'], $privmsg['privmsgs_id'], $privmsg_sent_id);

#
#-----[ FIND ]---------------------------------------------
# around line 498
$user_id_to = $privmsg['user_id_2'];

#
#-----[ AFTER, ADD ]---------------------------------------
#
init_display_pm_attachments($privmsg['privmsgs_attachment']);

#
#-----[ FIND ]---------------------------------------------
# around line 750
unset($delete_type);
}

#
#-----[ AFTER, ADD ]---------------------------------------
# the Line have to be added AFTER the closing brace
$attachment_mod['pm']->delete_all_pm_attachments($mark_list);

#
#-----[ FIND ]---------------------------------------------
# around line 1292
if ( $mode != 'edit' )
{
//
// Add to the users new pm counter
//

#
#-----[ BEFORE, ADD ]---------------------------------------
# The Line have to be added BEFORE 'if ( $mode != 'edit' )'
$attachment_mod['pm']->insert_attachment_pm($privmsg_id);

#
#-----[ FIND ]---------------------------------------------
# around line 1593
"preview" => 'privmsgs_preview.tpl')
);

#
#-----[ AFTER, ADD ]---------------------------------------
# The Line have to be added AFTER the ');'
$attachment_mod['pm']->preview_attachments();

#
#-----[ FIND ]---------------------------------------------
# around line 2133
'DATE' => $msg_date,

#
#-----[ AFTER, ADD ]---------------------------------------
#
'PRIVMSG_ATTACHMENTS_IMG' => privmsgs_attachment_image($privmsg_id),

#
#-----[ OPEN ]---------------------------------------------
#
viewforum.php

#
#-----[ FIND ]---------------------------------------------
# around line 370
$s_auth_can .= ( ( $is_auth['auth_vote'] ) ? $lang['Rules_vote_can'] : $lang['Rules_vote_cannot'] ) . '<br />';

#
#-----[ AFTER, ADD ]---------------------------------------
#
attach_build_auth_levels($is_auth, $s_auth_can);

#
#-----[ FIND ]---------------------------------------------
# around line 648
'NEWEST_POST_IMG' => $newest_post_img,

#
#-----[ AFTER, ADD ]---------------------------------------
#
'TOPIC_ATTACHMENT_IMG' => topic_attachment_image($topic_rowset[$i]['topic_attachment']),

#
#-----[ OPEN ]---------------------------------------------
#
viewtopic.php

#
#-----[ FIND ]---------------------------------------------
# around line 146
AND f.forum_id = t.forum_id
$order_sql";

#
#-----[ AFTER, ADD ]---------------------------------------
#
attach_setup_viewtopic_auth($order_sql, $sql);

#
#-----[ FIND ]---------------------------------------------
# around line 580
$s_auth_can .= ( ( $is_auth['auth_vote'] ) ? $lang['Rules_vote_can'] : $lang['Rules_vote_cannot'] ) . '<br />';

#
#-----[ AFTER, ADD ]---------------------------------------
#
attach_build_auth_levels($is_auth, $s_auth_can);

#
#-----[ FIND ]---------------------------------------------
# around line 810
//
// Update the topic view counter

#
#-----[ BEFORE, ADD ]---------------------------------------
#
init_display_post_attachments($forum_topic_data['topic_attachment']);

#
#-----[ FIND ]---------------------------------------------
# around line 1205
'U_POST_ID' => $postrow[$i]['post_id'])
);

#
#-----[ AFTER, ADD ]---------------------------------------
# The Line have to be added AFTER the ');'
display_post_attachments($postrow[$i]['post_id'], $postrow[$i]['post_attachment']);

#
#-----[ OPEN ]---------------------------------------------
#
admin/admin_forumauth.php

#
#-----[ FIND ]---------------------------------------------
# around line 72
$forum_auth_const = array(AUTH_ALL, AUTH_REG, AUTH_ACL, AUTH_MOD, AUTH_ADMIN);

#
#-----[ AFTER, ADD ]---------------------------------------
#
attach_setup_forum_auth($simple_auth_ary, $forum_auth_fields, $field_names);

#
#-----[ 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 58
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_ug_auth.php

#
#-----[ FIND ]---------------------------------------------
# around line 89
// ---------------
// Start Functions

#
#-----[ BEFORE, ADD ]---------------------------------------
#
attach_setup_usergroup_auth($forum_auth_fields, $auth_field_match, $field_names);

#
#-----[ 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 ]---------------------------------------------
#
includes/auth.php

#
#-----[ FIND ]---------------------------------------------
# around line 105
case AUTH_ATTACH:
break;

default:
break;
}

#
#-----[ AFTER, ADD ]---------------------------------------
# the Line have to be added AFTER the closing brace
attach_setup_basic_auth($type, $auth_fields, $a_sql);

#
#-----[ OPEN ]---------------------------------------------
#
includes/functions.php

#
#-----[ FIND ]---------------------------------------------
# around line 254
//
// Set up style
//

#
#-----[ BEFORE, ADD ]---------------------------------------
#
include_attach_lang();

#
#-----[ OPEN ]---------------------------------------------
#
includes/functions_admin.php

#
#-----[ FIND ]---------------------------------------------
# around line 146
message_die(GENERAL_ERROR, 'Could not update topic', '', __LINE__, __FILE__, $sql);
}
}

#
#-----[ AFTER, ADD ]---------------------------------------
# After the last closing brace, before the break;
attachment_sync_topic($id);

#
#-----[ OPEN ]---------------------------------------------
#
includes/prune.php

#
#-----[ FIND ]---------------------------------------------
# around line 113
remove_search_post($sql_post);

#
#-----[ AFTER, ADD ]---------------------------------------
#
prune_attachments($sql_post);

#
#-----[ OPEN ]---------------------------------------------
#
includes/topic_review.php

#
#-----[ FIND ]---------------------------------------------
# around line 43
WHERE t.topic_id = $topic_id
AND f.forum_id = t.forum_id";

#
#-----[ AFTER, ADD ]---------------------------------------
#
$tmp = '';
attach_setup_viewtopic_auth($tmp, $sql);

#
#-----[ FIND ]---------------------------------------------
# around line 119
//
// Okay, let's do the loop, yeah come on baby let's do the loop
// and it goes like this ...

#
#-----[ BEFORE, ADD ]---------------------------------------
#
init_display_review_attachments($is_auth);

#
#-----[ FIND ]---------------------------------------------
# around line 202
'L_MINI_POST_ALT' => $mini_post_alt)
);

#
#-----[ AFTER, ADD ]---------------------------------------
# the Line have to be added AFTER the ');'
display_review_attachments($row['post_id'], $row['post_attachment'], $is_auth);

#
#-----[ OPEN ]---------------------------------------------
#
includes/usercp_viewprofile.php

#
#-----[ FIND ]---------------------------------------------
# around line 169
include($phpbb_root_path . 'includes/page_header.'.$phpEx);

#
#-----[ AFTER, ADD ]---------------------------------------
#
display_upload_attach_box_limits($profiledata['user_id']);

#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/modcp_body.tpl

#
#-----[ FIND ]---------------------------------------------
# around line 27
<td class="row1">&nbsp;<span class="topictitle">{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span></td>


#-----[ IN-LINE FIND ]---------------------------------------------
# around line 27 (directly in that line)
{topicrow.TOPIC_TYPE}

#
#-----[ IN-LINE BEFORE, ADD ]---------------------------------------
#
{topicrow.TOPIC_ATTACHMENT_IMG}

#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/posting_body.tpl

#
#-----[ FIND ]---------------------------------------------
# around line 258
<form action="{S_POST_ACTION}" method="post" name="post" onsubmit="return checkForm(this)">

#
#-----[ REPLACE WITH ]---------------------------------------
#
<form action="{S_POST_ACTION}" method="post" name="post" onsubmit="return checkForm(this)" {S_FORM_ENCTYPE}>

#
#-----[ FIND ]---------------------------------------------
# around line 462
{POLLBOX}

#
#-----[ BEFORE, ADD ]---------------------------------------
#
{ATTACHBOX}

#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/posting_preview.tpl

#
#-----[ FIND ]---------------------------------------------
# around line 13
<span class="postbody">{MESSAGE}</span>

#
#-----[ AFTER, ADD ]---------------------------------------
#
<!-- BEGIN postrow -->
{ATTACHMENTS}
<!-- END postrow -->

#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/posting_topic_review.tpl

#
#-----[ FIND ]---------------------------------------------
# around line 26
<td colspan="2"><span class="postbody">{postrow.MESSAGE}</span></td>

#
#-----[ IN-LINE FIND ]---------------------------------------------
# around line 26 (directly in that line)
{postrow.MESSAGE}</span>

#
#-----[ IN-LINE AFTER, ADD ]---------------------------------------
#
{postrow.ATTACHMENTS}

#
#-----[ 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>

#
#-----[ FIND ]---------------------------------------------
# around line 106
<td width="55%" valign="middle" class="{listrow.ROW_CLASS}"><span class="topictitle">&nbsp;<a href="{listrow.U_READ}" class="topictitle">{listrow.SUBJECT}</a></span></td>

#
#-----[ IN-LINE FIND ]---------------------------------------------
# around line 106 (directly in that line)
<span class="topictitle">&nbsp;<a href="{listrow.U_READ}" class="topictitle">{listrow.SUBJECT}

#
#-----[ IN-LINE BEFORE, ADD ]---------------------------------------
#
{listrow.PRIVMSG_ATTACHMENTS_IMG}

#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/privmsgs_preview.tpl

#
#-----[ FIND ]---------------------------------------------
# around line 23
<td valign="top" colspan="2" class="row1"><span class="postbody">{MESSAGE}</span></td>

#
#-----[ REPLACE WITH ]---------------------------------------
#
<td valign="top" colspan="2" class="row1"><span class="postbody">{MESSAGE}</span>
<!-- BEGIN postrow -->
{ATTACHMENTS}
<!-- END postrow -->
</td>

#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/privmsgs_read_body.tpl

#
#-----[ FIND ]---------------------------------------------
# around line 47
<td valign="top" colspan="3" class="row1"><span class="postbody">{MESSAGE}</span></td>

#
#-----[ REPLACE WITH ]---------------------------------------
#
<td valign="top" colspan="3" class="row1"><span class="postbody">{MESSAGE}</span>
<!-- BEGIN postrow -->
{ATTACHMENTS}
<!-- END postrow -->
</td>

#
#-----[ FIND ]---------------------------------------------
# around line 74
<input type="submit" name="delete" value="{L_DELETE_MSG}" class="liteoption" />

#
#-----[ AFTER, ADD ]---------------------------------------
#
<!-- BEGIN switch_attachments -->
&nbsp;
<input type="submit" name="pm_delete_attach" value="{L_DELETE_ATTACHMENTS}" class="liteoption" />
<!-- END switch_attachments -->

#
#-----[ 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/viewforum_body.tpl

#
#-----[ FIND ]---------------------------------------------
# around line 26
<td class="row1" width="100%"><span class="topictitle">{topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span><span class="gensmall"><br />

#
#-----[ IN-LINE FIND ]---------------------------------------------
# around line 26 (directly in that line)
{topicrow.NEWEST_POST_IMG}

#
#-----[ IN-LINE AFTER, ADD ]---------------------------------------
#
{topicrow.TOPIC_ATTACHMENT_IMG}

#
#-----[ 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 ]------------------------------------------
#



y lo que se encuentra dentro de la carpeta de root copialo en donde se encuentra tu foro en la misma carpeta

luego

install/mod_table_inst.php ejecuta esta dir para crear las tablas

_______________________________________

si no tienes instalado ningun mod puedes copiar los archivos q se encuentran en el folder contrib directamente reemplazando los antiguos pero verifica q el mod sea compatible con la version de foro q tienes

e igual despues ejectua esta dir

install/mod_table_inst.php

Avatar Image
@man / @woman
@man / @woman

OPEN = Abrir
AFTER ADD= Añadir antes
BEFORE ADD= Añadir después
CLOSE= Cerrar
FIND= Encontrar (o buscar mismamente)

Traduce esas palabras en el codigo que te han dado y verás que no es tan complicado.

PROYECTOTOLEDO
Usuario Novato
Usuario Novato

se puede instalar este mod en un portal completo con el foro incluido, o en una instalacion de un phpbb unicamente sin portal...

no hay una manera mas facil??? o que venga previamente hecho..

Avatar Image
Usuario habitual
Usuario habitual

ahhhhhh que bueno gracias a todos, pero tengo otra duda con eso del folder contrib, que menciona rexo, y hau otra parte que aparece en el install.txt que viene con el mod que no entiendo y lastima que no estoy en mi pc para ponerselos para ver que me dices.... pero graciassss

Osea haber si entendi solo debo abrir los archivos que me dice en el install y buscar, reemplazar, agregar antes y despues y en todo??????? creo que si verdad!!!!

GRACIASSSSS

Avatar Image
Machacateclados
Machacateclados

andale!! eso mismo

que es lo que dices q viene en el txt???

ponlo para saber si tiene alguna relevancia...

K19_Founder
Usuario Novato
Usuario Novato

esto es lo que no entendi


STEP NUMBER I: Uploading all new Files
#
# Copy/Upload all files to their respective Location (the directory structure is in the folder root)
#
# attach_mod/root/download.php -> download.php
# attach_mod/root/uacp.php -> uacp.php
# attach_mod/root/admin/admin_attach_cp.php -> admin/admin_attach_cp.php
# attach_mod/root/admin/admin_attachments.php -> admin/admin_attachments.php
# attach_mod/root/admin/admin_extensions.php -> admin/admin_extensions.php
# attach_mod/root/attach_mod/attach_rules.php -> attach_mod/attach_rules.php
# attach_mod/root/attach_mod/attachment_mod.php -> attach_mod/attachment_mod.php
# attach_mod/root/attach_mod/displaying.php -> attach_mod/displaying.php
# attach_mod/root/attach_mod/index.htm -> attach_mod/index.htm
# attach_mod/root/attach_mod/pm_attachments.php -> attach_mod/pm_attachments.php
# attach_mod/root/attach_mod/posting_attachments.php -> attach_mod/posting_attachments.php
# attach_mod/root/attach_mod/includes/constants.php -> attach_mod/includes/constants.php
# attach_mod/root/attach_mod/includes/functions_admin.php -> attach_mod/includes/functions_admin.php
# attach_mod/root/attach_mod/includes/functions_attach.php -> attach_mod/includes/functions_attach.php
# attach_mod/root/attach_mod/includes/functions_delete.php -> attach_mod/includes/functions_delete.php
# attach_mod/root/attach_mod/includes/functions_filetypes.php -> attach_mod/includes/functions_filetypes.php
# attach_mod/root/attach_mod/includes/functions_includes.php -> attach_mod/includes/functions_includes.php
# attach_mod/root/attach_mod/includes/functions_selects.php -> attach_mod/includes/functions_selects.php
# attach_mod/root/attach_mod/includes/functions_thumbs.php -> attach_mod/includes/functions_thumbs.php
# attach_mod/root/attach_mod/includes/index.htm -> attach_mod/includes/index.htm
# attach_mod/root/files/index.php -> files/index.php
# attach_mod/root/images/icon_clip.gif -> images/icon_clip.gif
# attach_mod/root/images/icon_disk.gif -> images/icon_disk.gif
# attach_mod/root/images/icon_disk_gray.gif -> images/icon_disk_gray.gif
# attach_mod/root/templates/subSilver/add_attachment_body.tpl -> templates/subSilver/add_attachment_body.tpl
# attach_mod/root/templates/subSilver/posted_attachments_body.tpl -> templates/subSilver/posted_attachments_body.tpl
# attach_mod/root/templates/subSilver/posting_attach_body.tpl -> templates/subSilver/posting_attach_body.tpl
# attach_mod/root/templates/subSilver/posting_attach_rules.tpl -> templates/subSilver/posting_attach_rules.tpl
# attach_mod/root/templates/subSilver/uacp_body.tpl -> templates/subSilver/uacp_body.tpl
# attach_mod/root/templates/subSilver/viewtopic_attach_body.tpl -> templates/subSilver/viewtopic_attach_body.tpl
# attach_mod/root/templates/subSilver/admin/attach_cat_body.tpl -> templates/subSilver/admin/attach_cat_body.tpl
# attach_mod/root/templates/subSilver/admin/attach_cp_attachments.tpl -> templates/subSilver/admin/attach_cp_attachments.tpl
# attach_mod/root/templates/subSilver/admin/attach_cp_body.tpl -> templates/subSilver/admin/attach_cp_body.tpl
# attach_mod/root/templates/subSilver/admin/attach_cp_search.tpl -> templates/subSilver/admin/attach_cp_search.tpl
# attach_mod/root/templates/subSilver/admin/attach_cp_user.tpl -> templates/subSilver/admin/attach_cp_user.tpl
# attach_mod/root/templates/subSilver/admin/attach_extension_groups.tpl -> templates/subSilver/admin/attach_extension_groups.tpl
# attach_mod/root/templates/subSilver/admin/attach_extensions.tpl -> templates/subSilver/admin/attach_extensions.tpl
# attach_mod/root/templates/subSilver/admin/attach_forbidden_extensions.tpl -> templates/subSilver/admin/attach_forbidden_extensions.tpl
# attach_mod/root/templates/subSilver/admin/attach_manage_body.tpl -> templates/subSilver/admin/attach_manage_body.tpl
# attach_mod/root/templates/subSilver/admin/attach_quota_body.tpl -> templates/subSilver/admin/attach_quota_body.tpl
# attach_mod/root/templates/subSilver/admin/attach_shadow.tpl -> templates/subSilver/admin/attach_shadow.tpl
# attach_mod/root/templates/subSilver/admin/extension_groups_permissions.tpl -> templates/subSilver/admin/extension_groups_permissions.tpl
#

#
#-----[ COPY ] ---------------------------
# This is for EasyMod and Mod Template compliance

copy attach_mod/root/download.php to download.php
copy attach_mod/root/uacp.php to uacp.php
copy attach_mod/root/admin/admin_attach_cp.php to admin/admin_attach_cp.php
copy attach_mod/root/admin/admin_attachments.php to admin/admin_attachments.php
copy attach_mod/root/admin/admin_extensions.php to admin/admin_extensions.php
copy attach_mod/root/attach_mod/attach_rules.php to attach_mod/attach_rules.php
copy attach_mod/root/attach_mod/attachment_mod.php to attach_mod/attachment_mod.php
copy attach_mod/root/attach_mod/displaying.php to attach_mod/displaying.php
copy attach_mod/root/attach_mod/index.htm to attach_mod/index.htm
copy attach_mod/root/attach_mod/pm_attachments.php to attach_mod/pm_attachments.php
copy attach_mod/root/attach_mod/posting_attachments.php to attach_mod/posting_attachments.php
copy attach_mod/root/attach_mod/includes/constants.php to attach_mod/includes/constants.php
copy attach_mod/root/attach_mod/includes/functions_admin.php to attach_mod/includes/functions_admin.php
copy attach_mod/root/attach_mod/includes/functions_attach.php to attach_mod/includes/functions_attach.php
copy attach_mod/root/attach_mod/includes/functions_delete.php to attach_mod/includes/functions_delete.php
copy attach_mod/root/attach_mod/includes/functions_filetypes.php to attach_mod/includes/functions_filetypes.php
copy attach_mod/root/attach_mod/includes/functions_includes.php to attach_mod/includes/functions_includes.php
copy attach_mod/root/attach_mod/includes/functions_selects.php to attach_mod/includes/functions_selects.php
copy attach_mod/root/attach_mod/includes/functions_thumbs.php to attach_mod/includes/functions_thumbs.php
copy attach_mod/root/attach_mod/includes/index.htm to attach_mod/includes/index.htm
copy attach_mod/root/files/index.php to files/index.php
copy attach_mod/root/images/icon_clip.gif to images/icon_clip.gif
copy attach_mod/root/images/icon_disk.gif to images/icon_disk.gif
copy attach_mod/root/images/icon_disk_gray.gif to images/icon_disk_gray.gif
copy attach_mod/root/templates/subSilver/add_attachment_body.tpl to templates/subSilver/add_attachment_body.tpl
copy attach_mod/root/templates/subSilver/posted_attachments_body.tpl to templates/subSilver/posted_attachments_body.tpl
copy attach_mod/root/templates/subSilver/posting_attach_body.tpl to templates/subSilver/posting_attach_body.tpl
copy attach_mod/root/templates/subSilver/posting_attach_rules.tpl to templates/subSilver/posting_attach_rules.tpl
copy attach_mod/root/templates/subSilver/uacp_body.tpl to templates/subSilver/uacp_body.tpl
copy attach_mod/root/templates/subSilver/viewtopic_attach_body.tpl to templates/subSilver/viewtopic_attach_body.tpl
copy attach_mod/root/templates/subSilver/admin/attach_cat_body.tpl to templates/subSilver/admin/attach_cat_body.tpl
copy attach_mod/root/templates/subSilver/admin/attach_cp_attachments.tpl to templates/subSilver/admin/attach_cp_attachments.tpl
copy attach_mod/root/templates/subSilver/admin/attach_cp_body.tpl to templates/subSilver/admin/attach_cp_body.tpl
copy attach_mod/root/templates/subSilver/admin/attach_cp_search.tpl to templates/subSilver/admin/attach_cp_search.tpl
copy attach_mod/root/templates/subSilver/admin/attach_cp_user.tpl to templates/subSilver/admin/attach_cp_user.tpl
copy attach_mod/root/templates/subSilver/admin/attach_extension_groups.tpl to templates/subSilver/admin/attach_extension_groups.tpl
copy attach_mod/root/templates/subSilver/admin/attach_extensions.tpl to templates/subSilver/admin/attach_extensions.tpl
copy attach_mod/root/templates/subSilver/admin/attach_forbidden_extensions.tpl to templates/subSilver/admin/attach_forbidden_extensions.tpl
copy attach_mod/root/templates/subSilver/admin/attach_manage_body.tpl to templates/subSilver/admin/attach_manage_body.tpl
copy attach_mod/root/templates/subSilver/admin/attach_quota_body.tpl to templates/subSilver/admin/attach_quota_body.tpl
copy attach_mod/root/templates/subSilver/admin/attach_shadow.tpl to templates/subSilver/admin/attach_shadow.tpl
copy attach_mod/root/templates/subSilver/admin/extension_groups_permissions.tpl to templates/subSilver/admin/extension_groups_permissions.tpl

#
# Upload the Language Files (English (German and Formal German are optional)) provided with the Attachment Mod, located at attach_mod/root/language)
# to your language Directory.
#
# If you want/have another language, please visit http://www.opentools.de/attach_mod/ , and download your
# Language if it is available. If you have a multi-national board you may want to upload all language files.
# Please make sure you download the Language Pack for Version 2.3.8 of the Attachment Mod.
# (Language Pack Versions 2.3.5 to 2.3.7 are compatible too)
#

#
# STEP NUMBER II: Installing the Attachment Mod (Database)
#
# Upload these Files, they are only needed for installation:
#
# attach_mod/root/install/mod_table_inst.php -> install/mod_table_inst.php
#
# Upload the Schema Files in ASCII Mode (This is the Layout and Data for your Database):
# (Maybe you have to create the install folder if it does not exist)
#
# for mysql:
# attach_mod/root/install/schemas/attach_mysql_schema.sql -> install/schemas/attach_mysql_schema.sql
# attach_mod/root/install/schemas/attach_mysql_basic.sql -> install/schemas/attach_mysql_basic.sql
#
# for mssql:
# attach_mod/root/install/schemas/attach_mssql_schema.sql -> install/schemas/attach_mssql_schema.sql
# attach_mod/root/install/schemas/attach_mssql_basic.sql -> install/schemas/attach_mssql_basic.sql
#
# for postgresql:
# attach_mod/root/install/schemas/attach_postgres_schema.sql -> install/schemas/attach_postgres_schema.sql
# attach_mod/root/install/schemas/attach_postgres_basic.sql -> install/schemas/attach_postgres_basic.sql
#

#
# Now we want to create the tables, therefore we run mod_table_inst.php (http://www.yoursite.com/phpBB2/install/mod_table_inst.php)
# Please be sure to enter the correct URL, the mod_table_inst.php file has to be placed within the install folder.
# Contact me at the board if you have questions or problems.
#

#
# For Uninstallation (this file will delete all of your Attachments):
# Upload attach_mod/scripts/mod_table_uninst.php -> mod_table_uninst.php
# Run the script and delete it after execution
#

#
# If you don't want to edit the Files by hand, you are free to use the following methods:
#
# 1) You are able to use the pre-edited files (found in the contrib-directory).
#
# If you use the pre-edited files, you can skip this Step Number III.
# Directly continue with Step Number IV.
#
# 2) Using the Patch File (located at the scripts directory)
#
# Please refer to docs/using_patchfile.txt on how to use the patch file.
# If you use the patch file, you can skip this Step Number III.
# Directly continue with Step Number IV.


esta un poco largo vredad
Avatar Image
Machacateclados
Machacateclados

ah!!
es lo que te decía copia el contenido de la carpeta root en la carpeta dond esta tu foro

para q no tengas problemas de idioma, crea una carpeta que se llame "lang_spanish" y copia ahi los archivos q se encuentran en la carpeta "lang_english

Stigmius04
Usuario Novato
Usuario Novato

ok.... ya entendi esto........... pero expliquenme algo!

yo tengo que editar los archivos de la carpeta Root?
o tengo que pasar los archivos de la carpeta Root a la raiz de mi FTP que sustituya los archivos del foro y despues editarlo? expliquen eso.... por que quiero editarlos ya y no estoy seguro, no quiero estar inventando


y expliquen como queda el directorio me explico.... EJ: mipaginaweb.com/phpbb/root/instal..... mas o menos un ejemplo para que el que sepa de un directorio mas especifico.

Stigmius04
Usuario Novato
Usuario Novato

ya le instale este modo a mi foro..... me funciona perfectamente

gracias a este manual pude terminar y entender como se hacian las cosas... si alguien le interese aki esta el link

http://www.phpbb-es.com/archivos/user_guide.html#howtouse

ATENCIÓN: Este tema no tiene actividad desde hace más de 6 MESES,
te recomendamos abrir un nuevo tema en lugar de responder al actual
Opciones:
Ir al subforo:
Permisos:
TU NO PUEDES Escribir nuevos temas
TU NO PUEDES Responder a los temas
TU NO PUEDES Editar tus propios mensajes
TU NO PUEDES Borrar tus propios mensajes
Temas similares
TemaUsuariosRespuestasVisitasActividad
Por: , el 24/Feb/2004, 10:38
santavalha NoSetup.org3721Feb/04
Por: , el 16/Nov/2003, 03:05
gruponossolar 1K3R12kNov/03
Por: , el 08/Ago/2005, 16:16
Puscifer lick_boy PhillipeMax User 194884472kAug/05
Por: , el 16/Mar/2004, 21:00
Ataliano chavp NoSetup.org4865Mar/04