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

Pages: 1 2 3 4 [5] 6 7 8 9 ... 33
61
yes i tried yesterday and works fine

62
Mods & Plugins (Releases & Support) / Re: [MOD] - Categories users sessions
« on: February 04, 2008, 12:39:58 PM »
Quote

This MOD is work this way. Each visit is see for each user name session for each category page.

sure?? i saw in admin control panel and i the total of people online, it was less than the number in one category with your mod.
i think the number in the category should be lower that the number in control panel home, right? but it isnt

63
Mods & Plugins (Releases & Support) / Re: [MOD] - Categories users sessions
« on: February 02, 2008, 05:59:20 PM »
hi, i installed this mod.. but im not sure.. i dont know what you means with categories users sessions.. em.. i thought that in each category i would see how many users see the same category like me. but i think that the number is the people that see all categories right? is posible only see the number of people that see only the current category?

there is a lot of different between number of people from yout mod (in categories) that inde.php. why?? the number of index is only the number of people visiting index.php??

64
Mods & Plugins (Releases & Support) / Re: [PROGRAM] 4images Mobile Server
« on: December 01, 2007, 11:24:39 AM »
sounds great - just one question before installing it: i use a u3 usb stick - does the 4imagesMS-autorun affect the u3-autorun or will it work together? shure i could use a different stick but then again i'd love to carry not more than one  :wink:
thx in advance, great idea
Hi i installed this program in a u3 usb and it work rigth. But, u3 is autorun and windows say you to open 4images Mobile Server. So it works !  :mrgreen:

65
can i see a demo please?

66
Mods & Plugins (Releases & Support) / Re: [MOD] Buddy List || Friend List
« on: December 01, 2007, 09:58:06 AM »
Hey ladies,

I have installed the mod and it works with 1.7.1 too! :wink:

Ahm but the user pic in the buddy list does't work. I installed the "avatar" mod log time ago and not the "member personal photo".
Does anybode rewirte the addon acording the avatar mod? :idea:

Bye! 8O


I think that you only have to replace friendlist.php the path from the avatar and a little more. Search
Code: [Select]
if(($config['userpic'])&&($user_row['userpic'])){
    $user_pic =   "<a href=\"".$site_sess->url($user_profile_link)."\"><img src=\"".$site_sess->url(ROOT_PATH."data/userpic/".$user_row['userpic'])."\"></a>";
}

Replace to:

Code: [Select]
if(($config['avatar_use'])&&($user_row['user_avatar'])){
    $user_pic =   "<a href=\"".$site_sess->url($user_profile_link)."\"><img src=\"".$site_sess->url(ROOT_PATH."".TEMPLATE_PATH."/avatars/".$user_row['user_avatar'])."\"></a>";
}





67
Mods & Plugins (Releases & Support) / Re: [MOD] Buddy List || Friend List
« on: December 01, 2007, 09:33:22 AM »
Does anyone have missing file friendslist.html ?
In rar is missing or is something wrong with description?

regards
At the end of the description I said the next
Code: [Select]

#
#-----[ CREATE ]--------------------------------------------
#
templates/tus_plantillas/friendslist.html

#
#-----[ PASTE ]--------------------------------------------
#//NOte: In your design content. In example error.html paste the next code and rename to friendslist.html

<p>&nbsp;<b><img src="{template_url}/images/spacer.gif" width="4" height="4" alt="" />{clickstream}</b></p>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td><span class="title">{lang_friendslist_title}</span></td>
                      <td align="right">
                        <script language="JavaScript">
        function clearfriendslist() {
                  if (confirm('{lang_delete_friendslist_confirm}')) {
                location.href = "{url_delete_friendslist}";
                  }
                    }
        </script>
                        <a href="javascript:clearfriendslist()"><b>{lang_delete_friendslist}</b></a>
      </td>
                    </tr>
                 
  <br />
                  <hr size="1" /><div align="right"><form method="post" action="{filter_url}">
Buscar Usuario: <input name="filter" value="{filter}" class="searchinput">&nbsp;<input type="submit" name="submit" value="{lang_go}" class="button" /><br>
<span class="smalltext">Puedes usar * como comodín cuando no estés seguro.</span><br>
</form></div>
  {paging_stats}<br>
                  {if friendslist}
<table width="450" border="0" cellspacing="0" cellpadding="1">
                    <tr>
                      <td class="head1">
                        <table width="100%" border="0" cellspacing="0" cellpadding="3">

                          <tr>
                            <td class="row2" valign="top">{friendslist}</td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>
  {endif friendslist}
                  <br />
                  <br />
  {paging}
  <br /><div align="center"> Mod Friends List created by <a href="http://www.myart.es" target="_blank">CCSakuweb</a></div><br>


68
install the yshout5 in the root from your gallery, and edit templates/your_theme/home.html and paste there the code from the shoutbox.
but there already is a shoutbox mod from 4images, with users and verification image-code

69
Is it possible to ask a news item at once by knowing his id like the thumbnails does. This wil ask a link like "details.php?image_id=xx".
A link like news.php?news_id=xx shows the whole page.

yes it is.. i have made it now in my site: http://www.myart.es

in news.php
search:
Code: [Select]
$sql = "SELECT news_id, news_title, news_text, news.user_name, news_date, news.user_id, users.userpic FROM ".NEWS_TABLE." news, 4images_users users WHERE users.user_id = news.user_id ORDER BY news_date DESC LIMIT $offset, $newsPerPage";
replace to:
Code: [Select]
if($news_id=="")
$sql = "SELECT news_id, news_title, news_text, news.user_name, news_date, news.user_id, users.userpic FROM ".NEWS_TABLE." news, 4images_users users WHERE users.user_id = news.user_id ORDER BY news_date DESC LIMIT $offset, $newsPerPage";
else
  $sql = "SELECT news_id, news_title, news_text, news.user_name, news_date, news.user_id, users.userpic FROM ".NEWS_TABLE." news, 4images_users users WHERE users.user_id = news.user_id AND news_id = ".$news_id." ORDER BY news_date DESC LIMIT $offset, $newsPerPage";

70
Mods & Plugins (Releases & Support) / Re: [MOD] Last comments v1
« on: September 10, 2007, 09:00:14 AM »

It works perfect. Thank you! But I have two questions:

1. Is it possible to delete the link from photo name and username so that photo name (e. g. r1000) and username are being displayed without link?
2. Is it possible to show how many comments have been posted to a photo? ("Kommentare: 6")

It could look like this:

Thank you in advance!

Take care,
your Michinator.
1.
Search in lastcomments.php:
Code: [Select]
"comment_image_name" => ($view_image) ? "<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$row['image_id'])."\">".stripslashes($row['image_name'])."</a>" : stripslashes($row['image_name']),
   

Replace to:
Code: [Select]
"comment_image_name" => stripslashes($row['image_name']),
   

search:
Code: [Select]
"image_user_name" =>   ($image_user_link) ? "<a href=\"".$image_user_link."\">".$image_user_name."</a>" : $image_user_name,
   
replace to:
Code: [Select]
"image_user_name" =>   $image_user_name,
   

Total comments i didnt tried it because i dont have time enough but try this
search
Code: [Select]
$bgcounter = 1;
while ($row = $site_db->fetch_array($result))
{
after add:
Code: [Select]
$sql = "SELECT COUNT(*) AS counter
        FROM ".COMMENTS_TABLE."
        WHERE image_id=".$row['image_id'])."";
       
$comments_count = $site_db->query_firstrow($sql);

search:
Code: [Select]
    "comment_image" => ($view_image) ? "<a href=\"".$site_sess->url(ROOT_PATH."details.php?image_id=".$row['image_id'])."\">".$thumb."</a>" : $thumb,add after:
Code: [Select]
    "comment_total" => (isset($comments_count['counter']) && $comments_count['counter']) ? $comments_count['counter'] : 0,
Good luck ;)

71
Thanks!!! Gracias ^^
if i pass the exams, we will say: cheers! hehe
Si apruebo tenemos que brindar ;)  (que buen ingles tengo xDDD)

72
great! ^^

it is a good idea, i would like it too.. but i dont have enough time.. the tuesday i will have exams...  :(

73
Maybe i forgot something... try the next:

search in lang/english/admin.php

Code: [Select]
$lang['userlevel_admin'] = "Admin";
add afer:
Code: [Select]
$lang['userlevel_spamking'] = "Spamking";or maybe ¿?:
Code: [Select]
$lang['userlevel_vip'] = "VIP";

search in admin/admin_functions.php:
Code: [Select]
  echo ">".$lang['userlevel_admin']."</option>\n";add after
Code: [Select]
echo "<option value=\"".SPAMKING."\"";
  if ($userlevel == SPAMKING && $userlevel != "") {
    echo " selected=\"selected\"";
  }
  echo ">".$lang['userlevel_spamking']."</option>\n";
 
in your case VIP and userlevel_vip, isnt it?

i think it is all. please try it, and say me if it works. If not works i will try it in my gallery

74
si quieres que el moderador se vea que lo es en los comentarios (a mi me pone que son invitados) hay que hacer esto:

busca en details.php
Code: [Select]
        if (!isset($comment_row[$i][$user_table_fields['user_level']]) || (isset($comment_row[$i][$user_table_fields['user_level']]) && $comment_row[$i][$user_table_fields['user_level']] == USER)) {
          $comment_user_info = $lang['userlevel_user'];
        }
        elseif ($comment_row[$i][$user_table_fields['user_level']] == ADMIN) {
          $comment_user_info = $lang['userlevel_admin'];
        }

añade despues:
Code: [Select]
        elseif ($comment_row[$i][$user_table_fields['user_level']] == MODERADOR) {
          $comment_user_info = $lang['userlevel_moderador'];
        }

De nuevo gracias por este fantastico mod excitex2 ^^

75
i think that the mod that i said you it isnt finished. you can put VIP level to an user only in phpmyadmin.
i will see the modifications from moderator mod and i will say you what you need to do for you will can change the level in ACP

for the moment if you want that test have VIP level, go to phpmyadmin, select the db and click in sql. Paste the next:
Code: [Select]
UPDATE 4images_users SET user_level=3 WHERE user_name=test;
but it would be better:
Code: [Select]
UPDATE 4images_users SET user_level=3 WHERE user_id=<id from test>;

Pages: 1 2 3 4 [5] 6 7 8 9 ... 33