De esta parte no entiendo nada
Gracias
***
3.2 How to read the Installation Instructions
If you've previously modified, or if you are familiar with the usual layout of phpBB Modification instructions you can skip this section.
Instructions for Uploading Files:
Since we are installing the Attachment Mod into phpBB2, we are always at the phpBB2 Root Folder (where your config.php file is).
If an Upload Instruction says:
/attach_mod/scripts/mod_table_inst.php -> mod_table_inst.php
You have to upload the left part (found within the Archive) to the right part. Since we are at the phpBB2 Root Folder, the file "mod_table_inst.php" has to be uploaded to it.
Another Example:
/attach_mod/root/admin/admin_attachments.php -> admin/admin_attachments.php
You have to upload the admin_attachments.php file found in attach_mod/root/admin to your phpBB2 admin directory.
These are the basic Instructions for editing existing phpBB2 Files, taken from the Mod Template Tutorial at
http://www.phpbb.com:
#
#-----[ OPEN ]------------------------------------------
#
Open a specific file.
#
#-----[ FIND ]------------------------------------------
#
Find a piece of code within the opened file.
#
#-----[ REPLACE WITH ]------------------------------------------
#
Replace a piece of code (whatever we "FIND") with this code.
#
#-----[ AFTER, ADD ]------------------------------------------
#
After the last code line shown in "FIND", add this piece of code.
#
#-----[ BEFORE, ADD ]------------------------------------------
#
Before the first code line shown in "FIND", add this piece of code.
#
#-----[ IN-LINE FIND ]------------------------------------------
#
Find a piece of code within a code line.
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
After a piece of code in a code line, add this piece of code.
#
#-----[ IN-LINE BEFORE, ADD ]------------------------------------------
#
Before a piece of code in a code line, add this piece of code.
Here are examples of each 'Action':
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/posting_body.tpl
In the above example, we are opening the file: posting_body.tpl
which is located in the 'subSilver' directory, under templates.
#
#-----[ FIND ]------------------------------------------
#
{L_NEW_POSTS}
In this instance, we are going to look within the file we previously opened, and FIND the text: {L_NEW_POSTS}.
#
#-----[ REPLACE WITH ]------------------------------------------
#
{L_YOUR_VARIABLE}
In this instance, we are REPLACING {L_NEW_POSTS} WITH {L_YOUR_VARIABLE}.
#
#-----[ AFTER, ADD ]------------------------------------------
#
<img src="templates/subSilver/images/some_new_image.gif" alt="{L_YOUR_VARIABLE}"/>
In this instance, AFTER {L_NEW_POSTS} we are ADDING a new image.
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<img src="templates/subSilver/images/some_new_image.gif" alt="{L_YOUR_VARIABLE}"/>
In this instance, BEFORE {L_NEW_POSTS} we are ADDING a new image.
#
#-----[ IN-LINE FIND ]------------------------------------------
#
user_from = '" . str_replace("\'", "''", $location) . "',
For finding code in a code line.
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
user_from_flag = '$user_flag',
This example adds
user_from_flag = '$user_flag',
directly after the code line you have used in the IN-LINE FIND action.
#
#-----[ IN-LINE BEFORE, ADD ]------------------------------------------
#
user_from_flag = '$user_flag',
This example adds
user_from_flag = '$user_flag',
directly before the code line you have used in the FIND action.
After editing all Files you have to upload them for the changes to take effect on your website.
******