ReIMG Image Resizer

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in the Customisations Database.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

NOTICE: This forum is only for the announcement of new releases and/or updates of MODs. Any MOD support should be obtained through the Customisations Database in the support area designated for each MOD.

A direct link to support for each MOD is in the first post of the respective topic.
Locked
Ibrin
Registered User
Posts: 22
Joined: Wed Feb 08, 2006 10:07 pm
Contact:

Re: ReIMG Image Resizer

Post by Ibrin »

Thanks so much for this Mod. I think it's exactly what I need. I have a somewhat large phpBB2 board I am going to convert, and it has a lot of images loaded with the [IMG] BBCode. Once I do the conversion, and then install this Mod, will it work on all the images that are already loaded in the board?

http://www.widescreengamingforum.com/forum

Also, if I'm only worried about limiting the width (and kb) of images, would I just put a value in width field and leave the height field as "0"?
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18316
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Re: ReIMG Image Resizer

Post by DavidIQ »

Yes it should work for existing img tags and yes it should work if you just have the width set.
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
Ibrin
Registered User
Posts: 22
Joined: Wed Feb 08, 2006 10:07 pm
Contact:

Re: ReIMG Image Resizer

Post by Ibrin »

And just to make sure I'm not being stupid about this, the "subsilver2.xml" are the install instructions for the subsilver2 theme - even mine that I modded with a portal style?

And, I would need to do the install, the conversion, and then install the mod, correct?
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18316
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Re: ReIMG Image Resizer

Post by DavidIQ »

Ibrin wrote:And just to make sure I'm not being stupid about this, the "subsilver2.xml" are the install instructions for the subsilver2 theme - even mine that I modded with a portal style?

And, I would need to do the install, the conversion, and then install the mod, correct?
The subsilver2.xml instructions are in addition to the edits in install.xml. But I think you have the right idea :)

And yes you do the install, conversion, then install the MOD.
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
Ibrin
Registered User
Posts: 22
Joined: Wed Feb 08, 2006 10:07 pm
Contact:

Re: ReIMG Image Resizer

Post by Ibrin »

Thanks.
User avatar
Muad''Dib
Registered User
Posts: 311
Joined: Tue Jun 12, 2007 6:20 pm
Contact:

Re: ReIMG Image Resizer

Post by Muad''Dib »

How far are we from 1.0.2?
__Vicky__
Registered User
Posts: 22
Joined: Thu Jun 18, 2009 12:25 am

Re: ReIMG Image Resizer

Post by __Vicky__ »

its not resizing the picture

i'm getting this error below the pic:
Image
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18316
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Re: ReIMG Image Resizer

Post by DavidIQ »

The edit to this in includes/bbcode.php:

Code: Select all

				'img'		=> '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />',
Should have ended up looking like this:

Code: Select all

				'img'		=> '<img src="$1" alt="' . $user->lang['IMAGE'] . '" ' . reimg_properties() . '/>',
You've apparently made the edit look like this:

Code: Select all

				'img'		=> '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />' . reimg_properties() . '',
If bbcode.php is fine then the problem is in template/bbcode.html where this:

Code: Select all

<!-- BEGIN img --><img src="{URL}" alt="{L_IMAGE}" /><!-- END img -->
should have ended up looking like this:

Code: Select all

<!-- BEGIN img --><img src="{URL}" alt="{L_IMAGE}" {REIMG_PROPERTIES} /><!-- END img -->
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
vqt
Registered User
Posts: 16
Joined: Mon Oct 26, 2009 4:40 pm

Re: ReIMG Image Resizer

Post by vqt »

I copied all files from reimg_image_resizer to my website Image & edited this Image. But sadly images re not resizing. :( pls, can somebody help me to check the problem? thx
website: Image
Mothership
Registered User
Posts: 26
Joined: Sat Jul 05, 2008 5:28 am

Re: ReIMG Image Resizer

Post by Mothership »

We have an issue where we can't change the max size of attachments in phpBB anymore. Could this mod have had anything to do with it? I've changed the setting from 100 to 500KB, which is reflected in the database, but any attempt by a non-admin to attach anything over 100KB shows the 'attachment is too large' error.

The only modifications over the standard install was AutoMOD and ReIMG Resizer.
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18316
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Re: ReIMG Image Resizer

Post by DavidIQ »

Mothership wrote:We have an issue where we can't change the max size of attachments in phpBB anymore. Could this mod have had anything to do with it? I've changed the setting from 100 to 500KB, which is reflected in the database, but any attempt by a non-admin to attach anything over 100KB shows the 'attachment is too large' error.

The only modifications over the standard install was AutoMOD and ReIMG Resizer.
Nope. There are many different settings for the attachments system so I suggest you post in the support forum.
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18316
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Re: ReIMG Image Resizer

Post by DavidIQ »

vqt wrote:But sadly images re not resizing. :( pls, can somebody help me to check the problem? thx
website: http://t-pro.cz/viewtopic.php?f=2&t=2
I don't see where you've edited the template files. If you HAVE edited the template files then you haven't refreshed your template and imageset.
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
Mothership
Registered User
Posts: 26
Joined: Sat Jul 05, 2008 5:28 am

Re: ReIMG Image Resizer

Post by Mothership »

DavidIQ wrote:
Mothership wrote:We have an issue where we can't change the max size of attachments in phpBB anymore. Could this mod have had anything to do with it? I've changed the setting from 100 to 500KB, which is reflected in the database, but any attempt by a non-admin to attach anything over 100KB shows the 'attachment is too large' error.

The only modifications over the standard install was AutoMOD and ReIMG Resizer.
Nope. There are many different settings for the attachments system so I suggest you post in the support forum.
Thanks David - good to rule it out.

I already posted in the support forum but no joy so far.
vqt
Registered User
Posts: 16
Joined: Mon Oct 26, 2009 4:40 pm

Re: ReIMG Image Resizer

Post by vqt »

I don't see where you've edited the template files. If you HAVE edited the template files then you haven't refreshed your template and imageset.
How can I refreshed template and imageset? Sorry if this is a noob question.
User avatar
muggins
Registered User
Posts: 1183
Joined: Fri Feb 22, 2008 5:12 pm
Location: Texas
Name: Donovan
Contact:

Re: ReIMG Image Resizer

Post by muggins »

Go to your ACP --> Styles --> page, then under 'style components' click on the templates and imagesets. You'll see an option on the right side to refresh... ;)
Muggins
Locked

Return to “[3.0.x] MOD Database Releases”