nu imi functioneaza remove_images
Scris: 27-Apr-2006, 12:37:18
am instalat remove_images care contine un fisier mod....am modificat in viewtopic....dar nu sti ca nu s-a modificat nica in forum..trebuie sa sterg mod-ul din ftp?
forumul phpBB in limba romana. Opinii, implementari, ajutor, instructiuni si download.
https://phpbb3.ro/community/
Un link catre MOD ai?ERASER scrie:am instalat remove_images care contine un fisier mod....am modificat in viewtopic....dar nu sti ca nu s-a modificat nica in forum..trebuie sa sterg mod-ul din ftp?
Pai de unde ai luat MODul? Cum sa te ajut daca nu stiu despre ce e vorba?ERASER scrie:nu nu am link catre mod..poti sa ma ajuti te rog!?
Cod: Selectaţi tot
## Selecting the forum:
## At the line 'if($forum_id == 1)' replace the 1 with the forum id (viewforum.php?f=[ID])
## of the forum you wish to affect.
##
## Selecting multiple forums (less than half of total):
## If you have more than one forum you wish to remove images from, change the 'if($forum_id == 1)'
## to 'if($forum_id == 1 || $forum_id == 2)' for $forum_id's 1 and 2,
## 'if($forum_id == 1 || $forum_id == 2 || $forum_id == 3)' for $forum_id's 1, 2, and 3, etc.
##
## Selecting multiple forums (more than half of total):
## If you want to remove image from more than half of your forums, do the above for the forums
## that _will_ have images, but instead of '==' use '!=', because this way you have less to
## actually type.
##
## Removing avatars:
## At the line '//$poster_avatar = '';' remove the comment slashes (//) in order to remove
## avatars.
##
## Replacing avatars:
## Uncomment the '//$poster_avatar = '';' line, and place something between the quotes in order to
## replace the avatar with something of your own. example:
## $poster_avatar = '[No avatars allowed in this forum]';
##
## Replacing images:
## Rather than removing the images entirely, you can replace then with something else by
## changing the line '$replace = '';' with what you want to replace. I you want to use HTML,
## HTML will have to be enabled on your board and the user will need HTML to be enabled.
## If you want to use BBCode, you'll have to add the id to the tag. example:
## $replace = '[img:'.$user_sig_bbcode_uid.']noimgsallowed.gif[/img:'.$user_sig_bbcode_uid.']';
##
## Replacing images with the image url:
## If you uncomment the line '//$replace = '\\1';', then only the [img] and [/img] will be removed,
## not the url of the image. So, '[img]http://mysite.com/myimage.gif[/img]' will become
## 'http://mysite.com/myimage.gif'