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

Pages: [1]
1
for me somehow it didn't work, don't where i mess it up.
but when i select original images its downloading thumb not original and also if i select any of the size it convert thumb not the original image.

Did some one faced same issue ?

2
Installation, Update & Configuration / Re: Category Order
« on: July 22, 2008, 06:18:26 PM »
Hi,

To place New Category First do this step :-

Open Global.php (Version 1.7.4 / 1.7.6)

Find :-

Code: [Select]
  $sql = "SELECT cat_id, cat_name, cat_description, cat_parent_id, cat_hits, cat_order, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment
          FROM ".CATEGORIES_TABLE."
          ORDER BY cat_order, cat_name ASC";

Replace with :-

Code: [Select]
  $sql = "SELECT cat_id, cat_name, cat_description, cat_parent_id, cat_hits, cat_order, auth_viewcat, auth_viewimage, auth_download, auth_upload, auth_directupload, auth_vote, auth_sendpostcard, auth_readcomment, auth_postcomment
          FROM ".CATEGORIES_TABLE."
          ORDER BY cat_id DESC";

Please Note :- I am not an expert in PHP, but i want my newly added categories display first, i search the forum but haven't got any code but i got the clue that the code to fetch category is in Glogbal.php so i changed it and it works fine for me. If any expert have some comments about it please do share

Regards
Netspider

Pages: [1]