Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - praveen

Pages: 1 [2] 3
17
Feedback & Suggestions / Re: 4images 1.7.13 - Feedback
« on: November 19, 2015, 04:13:55 AM »
Can you plz post the changed files? It would be easier to update customized sites.
Thanks.

18
Mods & Plugins (Requests & Discussions) / Re: [Request] Top 25 Categories?
« on: November 17, 2015, 03:53:24 AM »
Bump

19
Mods & Plugins (Requests & Discussions) / [Request] Top 25 Categories?
« on: November 04, 2015, 01:59:33 PM »
I am trying to setup a Top 25 that shows the popular categories in the last one week with a random thumbnail for each category.

After going through the forums, i created this but this does not show unique categories. Instead it shows recently added images :(

Can someone help?


function getDaysInWeek($week="",$year=""){  
  
$year = ($year) ? $year date("Y");
  
$week = ($week) ? $week date("W");
  
$time strtotime($year.'0104+'.($week 1).'weeks');
  
$mondayTime strtotime('-'.(date('w',$time)-1).'days',$time);
  
$dayTimes = array(); 
  for (
$i 0$i 7;++$i){ 
    
$dayTimes[] = strtotime('+'.$i.'days'$mondayTime); 
    
//$dayTimes[] = date("d.m.Y",strtotime('+'.$i.'days', $mondayTime));
  

  return 
$dayTimes
}
$lastweek date("W") -1;
$weekday getDaysInWeek($lastweek);

$num_new_images $config['image_cells'];
$sql "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_description, i.image_keywords, i.image_date, i.image_active, i.image_media_file, i.image_thumb_file, i.image_download_url, i.image_allow_comments, i.image_comments, i.image_downloads, i.image_votes, i.image_rating, i.image_hits".$additional_sql.", c.cat_name".get_user_table_field(", u.""user_name")."
        FROM ("
.IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c)
        LEFT JOIN "
.USERS_TABLE." u ON (".get_user_table_field("u.""user_id")." = i.user_id)
        WHERE i.image_active = 1 AND c.cat_id = i.cat_id AND i.cat_id NOT IN ("
.get_auth_cat_sql("auth_viewcat""NOTIN").") AND i.image_date BETWEEN ".$weekday[0]." AND ".($weekday[6] + 86399)."
        ORDER BY i.image_hits DESC
        LIMIT 25
        "
;
$result $site_db->query($sql);
$num_rows $site_db->get_numrows($result);

if (!
$num_rows)  {
  
$last_week "<table width=\"".$config['image_table_width']."\" border=\"0\" cellpadding=\"".$config['image_table_cellpadding']."\" cellspacing=\"".$config['image_table_cellspacing']."\"><tr class=\"imagerow1\"><td>";
  
$last_week .= "No Images last week !";
  
$last_week .= "</td></tr></table>";
}
else  {
  
$last_week "<ul>";
  
$count 0;
  
$bgcounter 0;
  while (
$image_row $site_db->fetch_array($result)){

    if (
$count == 0) {
      
$row_bg_number = ($bgcounter++ % == 0) ? 2;
     
// $last_week .= "<tr class=\"imagerow".$row_bg_number."\">\n";
    
}
    
$last_week .= "<li>\n";

    
show_image($image_row);
    
$last_week .= $site_template->parse_template("thumbnail_bit");
    
$last_week .= "\n</li>\n";
    
$count++;
    if (
$count == $config['image_cells']) {
    
//  $last_week .= "</tr>\n";
      
$count 0;
    }
  } 
// end while

  
if ($count 0)  {
    
$leftover = ($config['image_cells'] - $count);
    if (
$leftover >= 1) {
      for (
$f 0$f $leftover$f++) {
        
$last_week .= "<li>\n&nbsp;\n</li>\n";
      }
      
//$last_week .= "</tr>\n";
    
}
  }
  
$last_week .= "</ul>\n";
// end else

$site_template->register_vars("last_week"$last_week);
unset(
$last_week);

20
A little help please.

21
Thank you. But that is not what i want.

I want to create a section on my page (in the sidebar similar to Random Pictures) which says "Popular <catname> Pictures of the Hour" and show 4 to 6 images below. These images will be random and will be from the subcategories of <catname>


This mod is good http://www.4homepages.de/forum/index.php?topic=4259.135 but it is not picking up from subcategories. can it be modified to include images from subcategories?

22
I am using this mod here
http://www.4homepages.de/forum/index.php?topic=4259.135

I have a lot of subcategories and i would like to show random pictures from them too.. Is it possible? Can someone help?

Basically i have 2 main categories and lots of subcategories in them. The main categories do not have any images and the subcategories increase on a weekly basis. Sometimes the subcategories will also have subcategories.

So, if i mention only the main category id, can i show random pictures from the subcategories?

23
Mods & Plugins (Requests & Discussions) / Re: Random pictures
« on: September 13, 2013, 11:34:39 AM »
Is it possible to show random images from subcategories too?

I have 3 main categories with lots of sub categories.

The main categories do not have any images.  So can the random images be shown from the sub categories?

24
I have a main category and this has around 400 subcategories.

Is there a way where i can bulk move the subcategories created before 3 months to another category?

Is this possible? Manually moving them is taking a lot of time and i want to find out if there is an easier way.

Thanks.

25
Feedback & Suggestions / Re: 4images 1.7.10 - Feedback
« on: May 06, 2011, 10:39:03 AM »
I just updated my 1.7.9 gallery to 1.7.10 and these are the changed files. If any is left out, sorry.

/root folder/

global.php
search.php

/includes folder/

captcha_utils.php
constants.php
csrf_utils.php
functions.php
page_header.php
paging.php
search_utils.php
sessions.php

/admin folder/

categories.php
checkimages.php
images.php
thumbnailer.php
users.php
validateimages.php

i used to win merge to check for changes between 1.7.9 and 1.7.10


26
V@no - is it possible to add videos from a different source other than what is mentioned?

27
i searched, but couldnt find something for the Mod #2.

28
just a friendly bump.

29
Thank you for this nice mod.

is there a way, i could leave out some categories and not show them in the tag cloud?

30
Hi,

I am looking to get couple of modifications done for my gallery site(s) and would pay upto $75 to anyone who can help me with it.
i am running 1.7.7 and 1.7.6 versions.

Mod #1

Option to sort only the sub categories alphabetically.
Current option sorts the categories universally, but instead i only want the sub categories to be sorted alphabetically.

Mod #2

My category structure is somewhat like this

Parent Category 1
  - Sub Category
    - sub sub category a
    - sub sub category b
    - sub sub category x


Parent Category 2
  - Sub Category
    - sub sub category a
    - sub sub category b
    - sub sub category x


Parent Category 3
  - Sub Category
    - sub sub category a
    - sub sub category b
    - sub sub category x


Now, in the homepage i want to show all the new images in 3 rows in the following way


row 1 will have all the new images uploaded to parent category 1 (and its sub/sub sub categories)
row 2 will have all the new images uploaded to parent category 2 (and its sub/sub sub categories)
row 3 will have all the new images uploaded to parent category 3 (and its sub/sub sub categories)

additionally, it would be great if it can list only one image per category that has been updated/added.
so even if a category has 30 new images, it can show only one image and show the other updated categories.

if the image bit is not possible, it would also be good, if it can list down the categories that have been updated.
row 1 can list the recently added/updated categories from that parent category 1
and so on for row 2 and 3.


And in the category page (sub category page), i want to show all the new images uploaded to the various sub sub categories.

so, sub category page will list down the sub sub categories it has and will also show all the new images uploaded to its child categories (irrespective of the depth)




I can also give the url of the site where i am planning to implement this, so that it gives you a clear idea of what i am trying to achieve.

Thanks for looking and please pm me if you can get this done.
and please let me know how long this will take to get done.

Regards,

Pages: 1 [2] 3