News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

Main Menu

Search results for: minimum size

Search order
#1
cpg1.4 permissions / minimum size n pic
December 25, 2005, 08:38:38 AM by Konstantinos
#2
Feature requests / Minimum FIle Size option
June 04, 2005, 02:57:39 AM by VanessaP
...... . In config you can set what the maximim file size is, but I'd like to be able to set a minimum, too. ............ .php  Code Select Expand   // Check that picture size (in pixels) is lower than the maximum allowed   ............  cpg_die(ERROR, sprintf($lang_db_input_php['err_fsize_too_large'], $CONFIG['max_upl_width_height'], $ ............  __LINE__);  // Check that picture file size is lower than the maximum allowed  } else { ............ [0], $imginfo[1]);  }  if (!resize_image($uploaded_pic, $uploaded_pic, $max, $CONFIG[ ............ , __LINE__);  }  $imginfo = getimagesize($uploaded_pic);  if (filesize($ ............ ) > ($CONFIG['max_upl_size'] << 10)) {  @unlink($uploaded_pic);   ............  cpg_die(ERROR, sprintf($lang_db_input_php['err_imgsize_too_large'], $CONFIG['max_upl_size']), __FILE__,  ......
......  new web sites supported Roles) JavaScript Text resizer control/plugin (I can't assume the user knows  ............  Js in a recent WebAIM survey, so Js or php text size controls are about equally good.)  Contrast  ............  as a user color-contrast selector. Default font size: medium large minimum 13-16px equivalent for  ............ , some on variable width, but none on default font size.  Roles? none found, Skip links? none found,  ......
#4
Feature requests / Re: Minimum FIle Size option
June 04, 2005, 03:22:50 AM by kegobeer
......  > to < for the pixel size comparison, then go into your language file and  ............  the text for err_imgsize_too_large. Unless you want both a min and a max,  ............ .  And I don't think you are talking about file size, you mean dimension size. I don't think having a  ............  file size required is necessary. ......
#5
Feature requests / Minimum photo dimension size
October 23, 2005, 10:02:25 PM by evolver
...... . I can just ask people to submit certain min size but we all know who well people follow rules    ......
......  stream across the page. The width and maximum & minimum height of the stream and number of pictures on  ............  and width of the stream images and the border size in the plugin configuration options. I recommend  ............  thumbnails so, to maintain quality, are downsized from larger images. If intermediate images have  ............  enabled these are used and resized. If not, the full-size images are used and  ............ . Use of full-size images may lead to slow performance on many  ............  stream will depend on the dimensions of your full-size images. If they are around 800 pixels high, or  ............  is displayed by clicking on a thumbnail, the full-size image is displayed. In contrast, when  ............ . As this is usually much smaller than the full-size image a disappointing visual experience will be  ............  intermediate image doesn't exist it will downsize the full-size image. There is no error message,  ............  images aren't being used and it displays the full-size image instead. In other words, the same behaviour  ............  display of intermediate image: use the full size image instead". This should be set to "Display  ............  size image".   Scenario 2. The gallery is already  ............  with image sharpness but they will have to be downsized to fit the stream and there could be a  ............ , it may be necessary to experiment with image sizes. My recommendations for settings are below. If  ............ 's menu. Choose the "Update thumbs and/or resized photos" option followed by the "Only resized  ......
......  one number or dimension, and that will be the size of the greatest (max) dimension. This avoids  ............  to the max dimension, and fitting whatever the minimum dimension is.  That's it! Anyways, you know,  ......
#8
cpg1.4 install / Re: what was my database settings
October 22, 2015, 01:15:41 PM by junglejim42
...... -MariaDB - your mySQL version isn't good enough! Minimum requirements: 3.23.23 ------------------  ............  smtp_port | 25 | 25 ========================== Size and Time ------------------ Directive | Local  ............  | 30 | 30 max_input_time | 60 | 60 upload_max_filesize | 64M | 64M post_max_size | 64M | 64M ============ ......
......  the player from http://flowplayer.org/. As a minimum you need to upload the player file plus the  ............  }  //the next single line corrects the viewer size in Flowplayer allowing for use of a player  ......
...... . For those very rare few that do not meet these minimum specs all is not lost as the single file upload  ......
......  etc.) In total, there are up to 10 distinguished sizes (it's always up to your specific tag  ............  settings a bit to see the different effects (max size, min size, threshold etc.) You can define a  ............  color for each of the 10 sizes. (Color 10 being the color for the biggest font,  ............  then, so I added a function where you can set the minimum amount of images that must have the same tag,  ............  as required by the author. - The basic font size distribution algorithm was found on   http://www. ......
......  me know if you'll get an idea about the window size - I would love to find it being minimum 468px  ......
#13
......  if anyone else wants to have the option to set a minimum resolution of images this is how you do it:   ............  find: Code Select Expand  // Check that picture size (in pixels) is lower than the maximum allowed. If  ............  if ((USER_IS_ADMIN && $CONFIG['auto_resize'] == 1) || (!USER_IS_ADMIN && $CONFIG[' ............ '] > 0)) //($CONFIG['auto_resize']==1)  {  // ............ '] ? 'wd' : 'ht');  resize_image($uploaded_pic, $uploaded_pic, $CONFIG[' ............  the image dimensions are smaller than the allowed size.  $file_failure_array[] =  ............  Expand  // Check that picture size (in pixels) is lower than the maximum allowed. If  ......
#14
cpg1.4 miscellaneous / Print from Browser
April 21, 2006, 01:28:03 PM by tibu
...... .  Ideally, with the ability to choose the print size, but a minimum, post the photo on a blank page  ......
#15
cpg1.3 Upload / minimum height/width
November 23, 2005, 08:48:50 PM by ganeshcp
......  so I modified the hard code to check pic for a minimum width and height. I'm only an amateur php  ............  Select Expand  // Check that picture file size is lower than the maximum allowed  if ( ............ ($uploaded_pic) > ($CONFIG['max_upl_size'] << 10)) {  @unlink($uploaded_pic);   ............  cpg_die(ERROR, sprintf($lang_db_input_php['err_imgsize_too_large'], $CONFIG['max_upl_size']), __FILE__,  ............ ($picture_name)) {  $imginfo = getimagesize($uploaded_pic);  // getimagesize does  ............ , __LINE__);   // Check that picture size (in pixels) is very low.  } elseif ($ ............  cpg_die(ERROR, sprintf($lang_db_input_php['err_fsize_too_small_width']), __FILE__, __LINE__);  }  ............  cpg_die(ERROR, sprintf($lang_db_input_php['err_fsize_too_small_height']), __FILE__, __LINE__);     ............  // Check that picture size (in pixels) is lower than the maximum allowed   ............  cpg_die(ERROR, sprintf($lang_db_input_php['err_fsize_too_large'], $CONFIG['max_upl_width_height'], $ ......
#16
cpg1.4 miscellaneous / predefined searches....
November 15, 2007, 12:43:36 PM by DaleRG
......  categories and further each category divided by 7 sizes, thereby having a minimum of 91 possible search  ............ .....there is also the possibility of needing all size 1 and 2 sorted as well......etc....  is there any  ............  sorted out, ie....  -tank # -fish # -variety -size  tank and fish# are not really required, as  ............ ......the important ones are obviously variety and size....  i can sort through the manual linking, etc... ......
......  charges (lbs or kg on accumulated purchases).  Minimum order settings may be established (amount or  ......
#18
cpg1.4 plugin contributions / Photo Summary
November 11, 2006, 05:05:10 PM by François Keller
......   CAUTION: to work properly, your pictures must minimum have a title. If not, you can use "Updates titles  ......
......  there's still something strange... the PopUp Full Size window, isn't CENTRALIZING the picture, ok, it's  ............  little bit to the left side of the windows, it's minimum the difference... I'm wondering if there's a way  ......
#20
Mods: Watermarking & image manipulation / It works!
November 15, 2005, 10:02:47 AM by bingnet
......  in the center of the image and reduces the minimum size ratio needed to display the watermark on  ......
......   Number of columns for the album list  Size of thumbnails in pixels  The content of the  ............  Yes No Default sort order for files  Minimum number of votes for a file to appear in the 'top- ............  of an intermediate picture/video **  Max size for uploaded files (KB)  Max width or height  ......
......  être prise en charge par GD library', 'resize_failed' => 'Impossible de créer la vignette ou l\' ............  'filename' => 'Nom du fichier : ', 'filesize' => 'Poids du fichier : ', 'dimensions' => ............ ('Taille des vignettes en pixels', 'alb_list_thumb_size', 0), array('Le contenu de la page  ............ ', 'default_sort_order', 3), array('Nombre minimum de votes nécessaires pour qu\'une image  ............ ('Longueur maximale d\'un commentaire', 'max_com_size', 0), array('Afficher le négatif', ' ............ ('Poids max des images à uploader (Ko)', 'max_upl_size', 0), array('Longueur ou hauteur maximale  ............  de déplacer %s vers %s !', 'err_fsize_too_large' => 'La taille de l\'image que vous  ............  autorisé est de %s x %s) !', 'err_imgsize_too_large' => 'Le poids du fichier que vous avez  ............  'del_pic' => 'SUPPRIMER CETTE IMAGE', 'size' => '%s x %s pixels', 'views' => '%s fois' ............  'Keywords' => 'Mots clefs', 'File Size' => 'Taille du fichier', 'Dimensions' => ' ............ ' => 'Anonyme', //new in cpg1.2.0 ); $lang_fullsize_popup = array( 'click_to_close' => ' ............ ' => 'Mettre une photo en ligne', 'max_fsize' => 'Le poids maximal autorisé pour une image est  ......
......  be done  1. Currency 2. Currency Symbol 3. Small Minimum Pixels allowed for either Width or Height (which  ............  is larger) 4. Medium Minimum Pixels allowed for either Width or Height (which  ............ . Small Price 7. Medium Price 8. Large Price 9. Resize value for Small (this will be the size of the  ............  is the larger value in the original photo). 10. Resize value for Medium (this will be the size of the  ............  description I would like to have the available sizes listed ... This is a bit tricky because  ......
......  the album  Unable to create thumbnail or reduced size image. What did you set in coppermine's config  ............  GD2, make sure that your server fullfills the minimum requirements. ......
......  this directive to On. If you wish to limit the size of the buffer ; to a certain size - you can use a  ............  this option are 'off', 'on', or a specific buffer size ; to be used for compression (default is 4KB&# ............ ; ; Note: Resulting chunk size may vary due to nature of compression. PHP ;  ............  ; compression. If you prefer a larger chunk size for better ; performance, enable  ............  performance. register_argc_argv = On ; Maximum size of POST data that PHP will accept. post_max_size............ ). ;upload_tmp_dir = ; Maximum allowed size for uploaded files. upload_max_filesize = 2M ;;; ............ .interface_file = "/usr/sybase/interfaces" ; Minimum error severity to display. sybase. ............  = 10 ; Minimum message severity to display. sybase. ............ ). -1 means no limit. sybct.max_links = -1 ; Minimum server message severity to display. sybct. ............  = 10 ; Minimum client message severity to display. sybct. ............ ). -1 means no limit. mssql.max_links = -1 ; Minimum error severity to display. mssql. ............  = 10 ; Minimum message severity to display. mssql. ............  range 0 - 2147483647. Default = 4096. ;mssql.textsize = 4096 ; Limits the number of records in each  ............ . 0 = all records in one batch. ;mssql.batchsize = 0 ; Use NT authentication when connecting to  ............  = -1 ;fbsql.max_results = 128 ;fbsql.batchSize = 1000 [Crack] ; Modify the setting below to  ......
#26
......  As I've seen, the apache & mysql works great with minimum CPU load when serving static html pages (less  ............  smtp_port | 25 | 25 ========================== Size and Time ------------------ Directive | Local  ............  | 60 | 60 max_input_time | 60 | 60 upload_max_filesize | 16M | 16M post_max_size | 16M | 16M ============ ......
......  doesn't agree with your way of doing things. At a minimum, it's either a bug that  1) an administrator can  ............ . The bbcode displayed differs based on the size of the original, as I like to limit the size of  ......
...... . # KeepAliveTimeout 15  ## ## Server-Pool Size Regulation (MPM specific) ##   # prefork MPM #  ............  of server processes to start # MinSpareServers: minimum number of server processes which are kept spare #  ............  client connections # MinSpareThreads: minimum number of worker threads which are kept spare #  ......
......  réponses peuvent être trouvées -donner un minimum d'informations pour pouvoir avoir de l'aide. Ce  ......
#30
......  nibbler.. can you tell me where do I check the size I have set for normal pictures? I see just a "Max  ............  intermediate picture/video", nothing related to minimum size... ......