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

Pages: [1] 2 3 4 5 ... 10
1
Mods & Plugins (Releases & Support) / Re: Private URL to members profile
« on: November 07, 2005, 06:04:48 AM »
Or maybe server config overides htaccess?

2
Mods & Plugins (Releases & Support) / Re: [MOD] Last comments v1
« on: October 04, 2005, 08:10:17 AM »
oh cmon v@no :) share part 2 with us

3
Someone has all installation? From the begining to the end? Or any of these zip`s or rar`s, because now links are broken...
Thanks

4
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: October 03, 2005, 01:59:45 PM »
Hi, i got this error
Quote
Your request got error on prosses
impressive... but why i`ve got it..?

Why? How? How to fix it? Where to search errors?

5
Is it possible to add more than one photo?

6
Mods & Plugins (Requests & Discussions) / Re: Picture of the month
« on: September 14, 2005, 01:11:37 PM »
http://www.funny.lt/potm.php

Can someone say why it won`t work...?

7
thanks for showing me the way  :!: ;)

8
yes, thanks, but I want to use it with this mod, and if no picture is set, show big 200x300 females or males border.

9
Is it possible to choose is it males or is it females photo? Something like radio button to select.
And if no photo set, I want to show m.jpg if Male radio checked, f.jpg if Female radio checked.
Is it hard to do?

10
$result = mysql_query("SELECT profile_hits, user_name, user_id FROM 4images_users ORDER BY profile_hits DESC LIMIT 5");

just look at query ;)

I select profile_hits, user_name, user_id FROM 4images_users and order it by profile_hits, then I take only first 5, and show them :)

11
Btw, maybe there is possible to log users who viewed my profile and show them with small photos somwhere in the private area...?

12
Hm, just did it with simple mysql query...
Replace funny.lt with your code and include in home.html template... :}
Simple code.

Code: [Select]
<?
include "config.php";
$profile_img = '<img src="http://www.funny.lt/templates/default/images/profile.gif" border="0" align="absmiddle" alt="Member profile">';
$pm_img = '<img src="http://www.funny.lt/templates/default/images/pm.gif" border="0" align="absmiddle" alt="Private message">';
$db = mysql_connect("$db_host", "$db_user", "$db_password") or die ("Error");
@mysql_select_db("$db_name", $db) or die ("DB not found");
$result = mysql_query("SELECT profile_hits, user_name, user_id FROM 4images_users ORDER BY profile_hits DESC LIMIT 5");
while ($row = mysql_fetch_array($result)) {
echo
"<a href=http://www.funny.lt/pm.php?action=new&user_id=".$row['user_id'].">".$pm_img."</a>
<a href=http://www.funny.lt/member.php?action=mailform&user_id=".$row['user_id'].">".$mail_img."</a>
<a href=http://funny.lt/member.php?action=showprofile&user_id=".$row['user_name'].">".$row['user_name']."</a> - <b>".$row['profile_hits']."</b><br/>";
}
?>

13
Mods & Plugins (Requests & Discussions) / Re: [Req] Add to Friends (user)
« on: September 09, 2005, 01:08:16 PM »
Oh! Geat idea... Somethin like, "add this user to my friends list" but... maybe we need permission to be a friend? So there might be a questuion given "User admin wants to be your friend. Accept?"

An then, they will be viewed from hes profile, me in his, he in my.

Something like that... sorry for my english :}

14
Maybe there is possible to show "Top 5 profile hits" in the index page?
At the bottom of http://www.funny.lt/index.php near other tops

15
Hello,

I want to make something like VIP and Gold members accounts. User sends SMS and in users table i will check a mark on new column "status" is he a VIP=2 or Gold=1 or Simple=0. Everything with SMS is simple. But after this, I want to do several things:

1. Everywhere, user nick must be with ( [VIP] / [GOLD] username ).
2. For users who has vip or gold account i want to do thing like last loged in members. But this must show last users who viewed my profile. Member nick + member small photo. And everything is a link to private message.
3. And final thing is diferent styles for comments, something like if (user = vip || user = gold) { class="vip" } else { class="simple" }

So... is it possible to do? :} I just need the beggining... then I will try to do everything on my own, and share with others.

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