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.


Topics - Ersen

Pages: [1] 2 3
1
I need a short url, How can i change the urls of sub categories in URL.


2
Mods & Plugins (Requests & Discussions) / Showing top 50 hits category
« on: February 23, 2013, 06:48:31 PM »
i have 500 category links in my home page. i want to lower this inbound link number.

i want to only 50 category with the most view in home page?

How can i do this?Please help me.

3
Mods & Plugins (Requests & Discussions) / bookmark buttons in details page
« on: February 03, 2013, 06:13:24 PM »
How can i add bookmark buttons in details.php

gplus
facebook
twiter
pinterest
linkedin
tumblr
instagram
foursquare
delicious
conduit
digg.com
stuple upon
reddit
technorati.com

4
Mods & Plugins (Requests & Discussions) / print button in image page.
« on: January 28, 2013, 05:33:54 PM »
i want to add print button in details.php just like e-card or download. How can i do.

Hello i searched but i found only this thread. http://www.4homepages.de/forum/index.php?topic=5833.0 has no answer.

Thanks.

5
Discussion & Troubleshooting / check new images error on line 390
« on: December 18, 2012, 12:41:15 PM »
when i checked new images i will see this error

Fatal error: Call to undefined function filterFileName() in /home/ddd/public_html/admin/checkimages.php on line 390

how can i fix this?

6
Mods & Plugins (Requests & Discussions) / How do i this?
« on: October 15, 2012, 12:20:45 PM »
http://nice-cool-pics.com/img-nba-indiana-pacers-logo-6076.htm

All resolutions in details page. How can i do this?

7
Edit the domain/public_html/admin/categories.php

Find

Code: [Select]
echo "<img src=\"".ROOT_PATH."admin/images/folder.gif\" alt=\"\"><b><a href=\"".$site_sess->url(ROOT_PATH."categories.php?cat_id=".$cats['cat_id'])."\" target=\"_blank\">".format_text($cats['cat_name'], 2)."</a>\n</b> (ID: ".$cats['cat_id'].") &nbsp;&nbsp;&nbsp;&nbsp;";
change this code (replace it)

Code: [Select]
echo "<img src=\"".ROOT_PATH."admin/images/folder.gif\" alt=\"\"><b><a href=\"".$site_sess->url(ROOT_PATH."categories.php?cat_id=".$cats['cat_id'])."\" target=\"_blank\">".format_text($cats['cat_name'], 2)."</a>\n</b> (ID: ".$cats['cat_id'].") (Hit: ".$cats['cat_hits'].")&nbsp;&nbsp;&nbsp;&nbsp;";
You can preview cat hits in admin panel and editing or deleting categories easily.




8
How can i see the validated image number in admin panel?

site url /admin/users.php?action=modifyusers

i entered admin/users.php and find modifyusers action but i dont know which i add code?

Code: [Select]
if ($action == "") {
  $action = "modifyusers";
}

function delete_users($user_ids, $delcomments = 1, $delimages = 1) {
  global $site_db, $lang, $user_table_fields;
  if (empty($user_ids)) {
    echo $lang['no_search_results'];
    return false;
  }
  $error_log = array();
  echo "<br />";

  $sql = "SELECT ".get_user_table_field("", "user_id").get_user_table_field(", ", "user_name")."
          FROM ".USERS_TABLE."
          WHERE ".get_user_table_field("", "user_id")." IN ($user_ids)";
  $user_result = $site_db->query($sql);
  $image_ids_sql = "";
  while ($user_row = $site_db->fetch_array($user_result)) {
    $user_id = $user_row[$user_table_fields['user_id']];
    $user_name = $user_row[$user_table_fields['user_name']];

    $sql = "DELETE FROM ".GROUP_MATCH_TABLE."
            WHERE user_id = $user_id";
    $site_db->query($sql);

    $sql = "SELECT group_id
            FROM ".GROUPS_TABLE."
            WHERE group_name = '".addslashes($user_name)."' AND group_type = ".GROUPTYPE_SINGLE;
    if ($groups_row = $site_db->query_firstrow($sql)) {
      $sql = "DELETE FROM ".GROUPS_TABLE."
              WHERE group_id = ".$groups_row['group_id']." AND group_type = ".GROUPTYPE_SINGLE;
      $site_db->query($sql);

      $sql = "DELETE FROM ".GROUP_ACCESS_TABLE."
              WHERE group_id = ".$groups_row['group_id'];
      $site_db->query($sql);
    }

    $sql = "DELETE FROM ".LIGHTBOXES_TABLE."
            WHERE user_id = $user_id";
    $site_db->query($sql);

    if (!defined("USER_INTEGRATION") || (defined("USER_INTEGRATION") && USER_INTEGRATION == "NONE")) {
      $sql = "DELETE FROM ".USERS_TABLE."
              WHERE ".get_user_table_field("", "user_id")." = $user_id";
      if ($site_db->query($sql)) {
        echo "<b>".$lang['user_delete_success']."</b> ".format_text($user_name, 2)." (ID: $user_id)<br />\n";
      }
      else {
        $error_log[] = "<b>".$lang['user_delete_error']."</b> ".format_text($user_name, 2)." (ID: $user_id)<br />\n";
      }
    }
    else {
      echo "<b>".$lang['user_integration_delete_msg']."</b> ".format_text($user_name, 2)." (ID: $user_id)<br />\n";
    }

9
i want to create advertisement area for simple editing.

For example i add advertisement code in advertisement.html , when i add {advertisement} code in home.html or categories.html or details.html, advertisements are shown in these pages.

How can i do?

10
i want to show cat hits in index.php. I'm afraid to dedicated enforced. What are your thoughts?

11
How can i see the most image uploaded by members.

12
Discussion & Troubleshooting / how do i move a group of pictures?
« on: September 18, 2012, 06:35:22 PM »
i want to move 300 pictures which is belongs to category id to 14 from 98. It is too hard to edit by hand one by one.

which source do i write to the sql area in phpmyadmin?

13
Can i see the most search keyword in admin panel?

14
Mods & Plugins (Requests & Discussions) / Automaticly image decreased.
« on: September 08, 2012, 09:15:55 PM »
i want this? is this possible?

if the size of image is bigger than 400px the image will automaticly shown smaller.

Just like that: http://www.wallpapershunt.com/wallpaper/castle-in-snow-1440x900_w1912.html

is this possible ?

15
how do i show "image thumbnails." on top.php ?

when i added {thumbnail} in top.php

view only random image

thank you.


Pages: [1] 2 3