Foros del Web » Creando para Internet » Sistemas de gestión de contenidos »

Attachment Mod phpBB

Estas en el tema de Attachment Mod phpBB en el foro de Sistemas de gestión de contenidos en Foros del Web. Que tal todos?? Alguien me podria explicar paso a paso la instalacion del Attachment Mod en un foro phpBB. No lo he instalado antes y ...
  #1 (permalink)  
Antiguo 27/06/2005, 02:56
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
Attachment Mod phpBB

Que tal todos??


Alguien me podria explicar paso a paso la instalacion del Attachment Mod en un foro phpBB.

No lo he instalado antes y tampoco he instalado ningun Mod con anterioridad.

La guia de usuario no la entiendo pues el ingles no es lo mio.


Muchas Gracias
  #2 (permalink)  
Antiguo 27/06/2005, 03:50
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
La instalacion la lleve a cabo (despues de muchos intentos)

Pero ahora tengo varios problemas

Lo veo todo en el panel de administracion pero en algunas zonas me da error.


Control Panel me da este error.

Fatal error: Call to undefined function: get_var() in /home/whois/public_html/foro/admin/admin_attach_cp.php on line 62

Extension group manage este:

Fatal error: Call to undefined function: get_var() in /home/whois/public_html/foro/admin/admin_extensions.php on line 539

Special categories este otro:

Fatal error: Call to undefined function: is_imagick() in /home/whois/public_html/foro/admin/admin_attachments.php on line 874

Ayuda.
  #3 (permalink)  
Antiguo 27/06/2005, 09:27
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
Bueno ahora instale otro que me descarge de otra pagina y no me da el error de antes pero al entrar en administracion del Attachment Mod no me muestra casi nada.



Pueden verlo en grande aqui http://www.whois-esp.com/pro1.jpg

Alguna recomendacion??
  #4 (permalink)  
Antiguo 27/06/2005, 12:34
Avatar de ferny
Il capo della mafia
 
Fecha de Ingreso: febrero-2002
Ubicación: Al final del cable
Mensajes: 10.080
Antigüedad: 22 años, 2 meses
Puntos: 55
Seguramente es porque lo has instalado mal... Si tienes alguna duda en algún paso o qué significa cada cosa del "manual de instalación" dinoslo.
__________________
www.mundodivx.com || www.mundodivx.org

Pon tu mano en un horno caliente durante un minuto y te parecerá una hora.
Siéntate junto a una chica preciosa durante una hora y te parecerá un minuto.
Eso es la relatividad.
  #5 (permalink)  
Antiguo 27/06/2005, 12:49
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
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.
******
  #6 (permalink)  
Antiguo 27/06/2005, 12:54
Avatar de ferny
Il capo della mafia
 
Fecha de Ingreso: febrero-2002
Ubicación: Al final del cable
Mensajes: 10.080
Antigüedad: 22 años, 2 meses
Puntos: 55
Um... ¿qué tal el inglés?
Si lo traduces, es muy simple, mira:

#
#-----[ OPEN ]------------------------------------------
#

Abre un fichero.


#
#-----[ FIND ]------------------------------------------
#

Busca un trozo de código en el fichero abierto.


#
#-----[ REPLACE WITH ]------------------------------------------
#

Reemplaza una parte de código (lo encontrado en "FIND") con este otro código.


#
#-----[ AFTER, ADD ]------------------------------------------
#

Después de la última línea de código mostrada en "FIND", añade este otro código.


#
#-----[ BEFORE, ADD ]------------------------------------------
#

Antes de la última línea de código mostrada en "FIND", añade este otro código.
__________________
www.mundodivx.com || www.mundodivx.org

Pon tu mano en un horno caliente durante un minuto y te parecerá una hora.
Siéntate junto a una chica preciosa durante una hora y te parecerá un minuto.
Eso es la relatividad.
  #7 (permalink)  
Antiguo 27/06/2005, 13:29
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
El ingles fatal

Bien lo que dices si lo entiendo pero no me aclaro mas.

Las preguntas son ¿ Que farchivos hay que editar y con que contenido?
¿que hay que instalar?


Gracias por la ayuda y siento ser tan pezado pero la verdad que me tiene loco este MOD.

el manual http://www.whois-esp.com/user_guide.html
  #8 (permalink)  
Antiguo 27/06/2005, 15:25
Avatar de ferny
Il capo della mafia
 
Fecha de Ingreso: febrero-2002
Ubicación: Al final del cable
Mensajes: 10.080
Antigüedad: 22 años, 2 meses
Puntos: 55
Los archivos que hay que editar son los que te salgan en las cláusulas [OPEN], y los contenidos pues es lo que hay después de una cláusula [OPEN] hasta llegar a la siguiente, es decir, te tienes que fijar en los FIND, AFTER ADD, BEFORE ADD, REPLACE WITH, etc... que hay tras cada cláusula OPEN

Y qué hay que instalar... pues no sé muy bien a qué te refieres. Con lo que te acabo de decir haces las modificaciones de los ficheros ya existentes. Luego quizá te pueden pedir que copies nuevos ficheros en unos directorios concretos. Y por último, te podrán pedir que ejecutes unas sentencias SQL en la base de datos, en ese caso lo mejor es que lo hagas desde phpmyadmin (salvo que traiga una indicación que indique hacerlo de otra forma)
__________________
www.mundodivx.com || www.mundodivx.org

Pon tu mano en un horno caliente durante un minuto y te parecerá una hora.
Siéntate junto a una chica preciosa durante una hora y te parecerá un minuto.
Eso es la relatividad.
  #9 (permalink)  
Antiguo 27/06/2005, 23:57
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
Sii, ya lo consegi instalar.

El problema es que no modificaba las partes correctas.

Muchas Gracias
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 09:25.