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 - Jasondavis

Pages: [1] 2 3 4 5 ... 7
1
Discussion & Troubleshooting / Re: {cat_id} changes each pageload
« on: July 07, 2005, 04:01:17 AM »
 {self} would almost work but it shows cat_id=categories.php?cat_id=347 and I need it show cat_id=categories2.php?cat_id=347









2
Discussion & Troubleshooting / Re: {cat_id} changes each pageload
« on: July 07, 2005, 03:54:36 AM »
This is in my category.html template, I have category comments so if the category has 0 images in it each page load it is wanting to load a different {cat_id} in my comment area which results in it showing comments from other categories

3
Discussion & Troubleshooting / {cat_id} changes each pageload
« on: July 06, 2005, 10:50:12 PM »
{cat_id} changes in my template each page reload if a category has 0 images, it's complicated why I need this done but is there any way around this?

4
Strange, today when I got home, the problem was gone...maybe something was wrong with my server or something...

5
AHH, I went to my gallery this mornig and this is at the top of the page ALL OF A SUDDEN and it say 0 images in 0 categories, but its still says I have all the members.....pleeeeeeeease help!


DB Error: Bad SQL Query: SELECT DISTINCT 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, c.cat_name, u.user_name FROM 4images_images i, 4images_categories c LEFT JOIN 4images_users u ON (u.user_id = i.user_id) WHERE i.image_active = 1 AND i.cat_id NOT IN (0, 1, 3, 4, 6, 7, 8, 9, 10, 12, 15, 16, 17, 18) AND c.cat_id = i.cat_id ORDER BY RAND()
Got error 28 from table handler

6
Discussion & Troubleshooting / auto thumbnail stopped working
« on: March 16, 2003, 03:06:23 AM »
Quote from: V@no
Check folders/files premissions (CHMOD)


i figured it out, I was adding the images 2 a private folder, so it wouldn't make the thumbnails

7
Discussion & Troubleshooting / auto thumbnail stopped working
« on: March 16, 2003, 02:07:06 AM »
Create thumbnail for: sign (laurammk.jpg) ....  
Warning: imagejpeg: unable to open './../data/thumbnails/18/laurammk.jpg' for writing in /usr/local/psa/home/vhosts/mysite.com/httpdocs/gallery/includes/image_utils.php on line 79

   Error creating thumbnail!


OK everything has always worked on my gallery until today when I tried to auto-create thnbnails....I got the error above! any ideas why and how to resolve this?

8
//--------------------------------
//------ Letter Select ----------
//--------------------------------
$condition = "";
$ltr = "";
$letter = "num";
$linkletter = "all";
$user_search = "";
$letterbits = "<TABLE width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"1\" class=\"bordercolor\">\n<tr>\n<TD>\n<TABLE width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\n<TR align=\"center\">";
if (isset($HTTP_GET_VARS['ltr']) || isset($HTTP_POST_VARS['ltr'])) {
   $ltr = (isset($HTTP_POST_VARS['ltr'])) ? $HTTP_POST_VARS['ltr'] : $HTTP_GET_VARS['ltr'];
   if ($ltr == $linkletter) {
      $letterbits .= "<td class=\"row1\"><normalfont>[<b>".$lang['lang_all']."</b>]</normalfont></td>\n";
      $condition = "";
   }else{
      $letterbits .= "<td class=\"row1\"><normalfont><a href=\"".$site_sess->url(ROOT_PATH."memberlist.php?ltr=$linkletter")."\">".$lang['lang_all']."</a></normalfont></td>\n";
     if ($ltr == "num") {
         $condition = " AND ".get_user_table_field("", "user_name")." NOT REGEXP(\"^[a-zA-Z]\")";
      }else{
         $ltr = chr(intval(ord($ltr)));
         $condition = ($ltr) ? " AND ".get_user_table_field("", "user_name")." LIKE '".addslashes($ltr)."%'" : "";
         $user_search = "ltr=".$ltr;
      }
   }
}else{
   $letterbits .= "<td class=\"row1\"><normalfont>[<b>$linkletter</b>]</normalfont></td>\n";
}
if ($ltr == $letter) {
   $letterbits .= "<td class=\"row1\"><normalfont>[<b>#</b>]</normalfont></td>\n";
} else {
   $letterbits .= "<td class=\"row1\"><normalfont><a href=\"".$site_sess->url(ROOT_PATH."memberlist.php?ltr=$letter")."\">#</a></normalfont></td>\n";
}
for ($i = 65; $i < 91; $i++) {
   $letter = chr($i); $linkletter = $letter;
   if ($ltr == $letter) {
      $letterbits .= "<td class=\"row1\"><normalfont>[<b>$letter</b>]</normalfont></td>\n";
   } else {
      $letterbits .= "<td class=\"row1\"><normalfont><a href=\"".$site_sess->url(ROOT_PATH."memberlist.php?ltr=$letter")."\">$letter</a></normalfont></td>\n";
   }
}
$letterbits .= "</TR>\n</TABLE>\n</TD>\n</TR>\n</TABLE>";
//---- End Letter Select ----




what do we do with this code?

9
Quote from: Nicky
hi all,

now after about 3 months, i'm back for finish that mod !

sorry for the delay ..

keep watching this thread  :wink:


Really, what else is there to do to it?

10
Mods & Plugins (Requests & Discussions) / XMB integration?
« on: February 27, 2003, 11:58:20 PM »
would there be ANY way for the XMB forums to beable to be integrated, so users of my gallery can use the forums, and people of the forums can login 2 the gallery?

11
Mods & Plugins (Releases & Support) / thanks
« on: February 25, 2003, 12:38:11 AM »
I finally got it! I had it in the top section of the memeber.php file instead of the bottom section!  

1 more idea...would it be hard to have it display the number on the meberlist page as well for just admins?

12
Mods & Plugins (Releases & Support) / [Mod] Show user's lightbox to admin.
« on: February 24, 2003, 11:49:40 PM »
Quote from: V@no
are u sure that u redid Step 1.? I dont think so, because if there was some problem, u'd get atleast this: Show user's Favorites ()
and this is the actual line, that supposed to print on display (X)
Code: [Select]
"lang_show_user_lightbox" => $lang['show_user_lightbox']." (".$num_rows_all.")",



this is just weird then!  It is in the code I did it and it is still the same even the

"lang_show_user_lightbox" => $lang['show_user_lightbox']." (".$num_rows_all.")",

is there

13
Mods & Plugins (Releases & Support) / [Mod] Show user's lightbox to admin.
« on: February 24, 2003, 09:09:08 PM »
V@no that is exactly what I was looking for! the only problem is that I cant get it to work for some raeson.....

14
Mods & Plugins (Releases & Support) / thanks
« on: February 24, 2003, 08:50:03 AM »
Hi V@no did you test this? I made the changed, but i dont see any changes?

15
Mods & Plugins (Releases & Support) / help
« on: February 24, 2003, 07:46:37 AM »
hey i love this mod, but when browsing through a lot of my users profiles, there is no way to see if they have any images in the lightbox without clicking the link....would there be a way to have the number of images in the lightbox displayed next to the link to there lightbox?

Pages: [1] 2 3 4 5 ... 7