vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Image Cache (https://vborg.vbsupport.ru/showthread.php?t=123338)

Bill from Cleve 06-15-2009 02:13 AM

Sorry, forgot to add this, can you make it to grandfather in all the older posts before installation?

y2ksw 06-15-2009 08:33 AM

Sorry, I'm in a kind of lack of time and can't dedicate on this hack in order to make it better.

In my archives I have an application which pulls in old images from a wide variety of services (e.g. ImageShack), which I'm willing to supply, but still I can't give support on that, either. :)

bahattab 08-17-2009 08:36 PM

hi

is there any new ver. for 3.8.x

thanks
regards

Bill from Cleve 09-01-2009 02:37 PM

Quote:

Originally Posted by bahattab (Post 1869382)
hi

is there any new ver. for 3.8.x

thanks
regards

worked great on my 3.8.3.

rubke 09-01-2009 06:33 PM

Quote:

Originally Posted by y2ksw (Post 1829959)
Sorry, I'm in a kind of lack of time and can't dedicate on this hack in order to make it better.

In my archives I have an application which pulls in old images from a wide variety of services (e.g. ImageShack), which I'm willing to supply, but still I can't give support on that, either. :)

Is this a script to check the old postings and store the image ?
where can i find it ? no support needed ;)

thanks for this mod !

mhackl 10-14-2009 02:38 AM

Three questions:

1. Does this cross any lines as far as copyrights are concerned. Since you are essentially making a copy of the image and redistributing it?

2. Is the original link no longer available for the user to reference?

3. Does this only cache remote (off domain) images? If not, is it possible to do that? Answered

Bill from Cleve 11-23-2009 07:12 PM

Is there a way I can make it NOT cache images in the .PNG format? The problem is, it caches them as .PNG's, but they are actually JPG's and GIF's. This causes watermarking apps to fail because they don't understand the format.
I have tried pretty much every single option for watermarking including the .HTACCESS, but non work with this option enabled. I really love the image cache and do not want to disable it.

Is there any easy way to convert the PNG's back to the original formats without killing anything?

sarangan 11-27-2009 06:45 AM

Your plugin is very good, i am using on my very large forum. But the problem is i have about 120000 images in the imgcache folder. Because of too much images in a single folder it crashes the server harddisk to get the images and load.

Now the suggestion: It will be good if your script can automatically create new folders for everymonth like when we are in november 2009 then folder name have to be /imgcache/112009/, for december 2009 /imgcache/122009/ etc.

If you can modify the script like this, i am sure your plugin will be the best for ever.

Thank you. :)

ThomasR 02-09-2010 07:36 AM

No plans of releasing this plugin for vb 4? I'm looking for such plugin and as the targeted forum use tons of images, like Sarangan, a new folder organization would be welcome :)

Focus2 04-14-2010 12:09 PM

Quote:

Originally Posted by sarangan (Post 1921531)
Your plugin is very good, i am using on my very large forum. But the problem is i have about 120000 images in the imgcache folder. Because of too much images in a single folder it crashes the server harddisk to get the images and load.

Now the suggestion: It will be good if your script can automatically create new folders for everymonth like when we are in november 2009 then folder name have to be /imgcache/112009/, for december 2009 /imgcache/122009/ etc.

If you can modify the script like this, i am sure your plugin will be the best for ever.

Thank you. :)

Just change this:

Code:

            // Create filename
            $f = 'imgcache/' . sprintf('%d', $id) . '.png';

To this:

Code:

            // Create filename
            $kd = "imgcache/" . date("m_Y");
                if (!is_dir($kd)){
                mkdir($kd , 0777);
                $filename = $kd . '/index.html';
                $Content = "Restricted Access\r\n";
                $handle = fopen($filename, 'x+');
                fwrite($handle, $Content);
                fclose($handle);
                }
            $f = $kd . '/' . sprintf('%d', $id) . '.png';

Quote:

Originally Posted by ThomasR (Post 1978120)
No plans of releasing this plugin for vb 4? I'm looking for such plugin and as the targeted forum use tons of images, like Sarangan, a new folder organization would be welcome :)

Works on vb 4.0.1


All times are GMT. The time now is 11:30 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01400 seconds
  • Memory Usage 1,745KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete