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

Pages: [1] 2 3
1
OMG works fine for admin... havto wait if normal reg users give a feedback if it works fine for them to.


Thank you very much.. you realy help on that on..


Greats Flatermann

2
Hello everyone .. hope someone can help. i use search but didnt find anything

My quetion is, can someone telle me what to chance that wenn a user uploads a pic (mypic.jp) it is saved on server as (username_mypic.jpg)
the idea is that when somthing happens, its is alway posible to see what pic was from what user

Hope someone can help me on this

Thank you and geats from Flatermann

3
Hmm i will try it in englisch :))

My problem is . if i upload a pic as admin the picture has the watermark, but wenn a normal user reg. uploads  the picuture doesnt.  Is is maybe becaus i dont let reg user direkt upload, i look at the pic first if its ok or not.

4
HI .   Ich hab das problem das ich all admin upload und  alles ist ok.  wen ein normal user upload sind kein wasserzeichen drin.  Ich glaub es hat damit was zu tun das ich all admin die bilder erst freischallte, oder hat jemand ein andere idee weiso das so ist ?? :

5
on that mode i cant pick a catagory and date uploaded :(((  Upps date yes but not catagory .

6
Is is posible to set a  standard date and catogorie, befor leting him put in all pic in databank .   the thing is i lost like half of my pic in the databank for a few days ago . and now what to upload thouse in a special catagorie all to gether and give themn the date  were they were lost so they arnt markt new and not schon on  home as new images !!!! thats over 500 pic i would havto set up per hand new  :(((

7
Mods & Plugins (Releases & Support) / Re: Birthday Mod v1.0
« on: February 13, 2006, 12:33:00 PM »
Umm yes exactly LOL .

8
Mods & Plugins (Releases & Support) / Re: Birthday Mod v1.0
« on: February 13, 2006, 11:34:26 AM »
HI everybody.

first of all  i havto explain wy i need this LOL.   We are playing a game Runescape. and i would like to let my users add there real life b-day and the date if there runscape start.  then use this mode that it shows  when a real person hat b-day and show when a runscape figure has birthday :)..  is there a way to use this mod for 22 dates in profil ??

9
Mods & Plugins (Releases & Support) / Re: [MOD] Paging for comments
« on: February 12, 2006, 01:31:58 PM »
I thout to post a slight change i made on the code.
The reason for this change was that my users all  had a difrent thinking of how many comment per page they what to see. yeah i know they can user the pulldown menue but that wasnt anought LOL .
The thing i did is to put a inputfield in the users controllcenter that they can give in how many comments they want to see per page.
I thout maybe someone would be intressed in this change. Hope i dont get someone made abaut it :(

NEVER forget to backup all files and databank befor doing changes.

add this in ( includes/db_field_definitions.php )
Code: [Select]
$additional_user_fields['user_comments_perpage'] = array($lang['user_comments_perpage'], "text", 0);
in meber.php
sereach for
Code: [Select]
"lang_icq" => $lang['icq'],
insert under
Code: [Select]
"lang_comments_per_page_settings" => $lang['comments_per_page_settings'],
in you lang file main.php
sereach for
Code: [Select]
$lang['icq'] = "ICQ:";
insert under
Code: [Select]
$lang['comments_per_page_settings'] = "Comments per page:";
in member_editeprofile.html sereach for ( if you dont fid in code then ist because my class="cat2".  your could be deffernt so normalyou you can inser the code under any </tr> or above any <tr> depends on were you want to show the input field.
Code: [Select]
        <tr>
          <td class="cat2"><b>{lang_icq}</b></td>
          <td colspan="3" class="cat2"><input type="text" name="user_icq"  size="30" value="{user_icq}" class="input" /></td>
        </tr>

insert under
Code: [Select]
  <tr>
          <td class="cat2"><b>{lang_comments_per_page_settings}</b></td>
          <td colspan="3" class="cat2">
            <input type="text" name="user_comments_perpage"  size="30" value="{user_comments_perpage}" class="input" />
          </td>
        </tr>

in details.php

sereach for
Code: [Select]
$commentperpage = 5;
replace with
Code: [Select]
if ($user_info['user_level'] == GUEST) {
 $commentperpage = 5;
 }
 else {
  $commentperpage = $user_info['user_comments_perpage'];
 }

now you need to insert a new feld in tha table `4images_users` called  user_comments_perpage with a standard value 5 and Typ decimal

mabe oracle could post a easy way for users how to put in a new feld in the table.   :D :mrgreen:

Greetzzzz from Flatermann




10
Mods & Plugins (Requests & Discussions) / Re: [MOD Project] 4images Board
« on: February 09, 2006, 07:54:53 PM »
here  6 ideas wich would be nice to se in the forum .

1. moving threads from one topic to a other ( needen for those who post stuff in topic 1 that is should be in topic 2)
2. new threads sence last visit (needed to keep track of ancers on your posts)
3. mark everything as readed for logged in user (needed to say i readed everything i needed to)
4. mail to mod of topic when user add thread or ancer to thread
5. mod button to send admin a pm to report a user or thread so admin can check if a bann of user is nesesary
6. Time banning for users. (admin can bann a user for x days so he can think about behaving)

more ideas coming LOL .

11
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: February 09, 2006, 06:31:19 AM »
But havto sounds like alote of work and testing till it works. LOL .

I aint a ph coder noob but seem it mite be a bit to big to me.
i still havto get threw knowing the system from 4images. befor i dont know that i wouldnt be able to programm that.

i just wait til i understand the hole system. and try  :)

12
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: February 09, 2006, 05:00:30 AM »
it isnt that easy - i can let the new pm link show yeah that easy. . but  the thing is.. wenn you push the pm button from a comment then that comment is shown in that pm

how can i do all that.  and the pm is already filled out to send to that person that wrote that comment.

This is feasable by amending an SQL statement in your showthread.php file. Then, you need to select each PM fields from the PM_TABLE and display the results on a specific HTML table window within the appropriate action name from showthread.php file. ;)

OMG Oracle i am german LOL and dont realy understand those fancy words heheh .  my english isnt like bad but hat to high for me LOL .

13
Mods & Plugins (Requests & Discussions) / Re: [MOD Project] 4images Board
« on: February 09, 2006, 04:56:39 AM »
I will be glade to be a beta tester for you and a donate would be in to :)) very nice of you to do that after all.

next few days i would think of a few futures  and  post them here if you like ??

14
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: February 08, 2006, 03:44:43 PM »
Flattermann:

Try describe it a little more better ;)
So if i understand you, you wanna have this:

Board ---- Topic:
blablabla

-> user clicks on PM

->

headline: RE: Topic XXX on XXX
subject: (quote topic)

user writes text


that? If yes, Oracle or V@no could give you the answer, but this forum is coded very badly, to many bugs, i think about to pay a php-coder here in bulgaria to completely rewrite this MOD next week, so when its ready i post the new installation under an new topic.

Thats what i ment yes--  OH so i guess i just wait tiull Oracle or V@no see my post maybe they would hab idea how to do it.


Oh if you thinking about to pay someone to reprogramm it , sound good. i mit give you a donaint if it ever happens.  Forum is not bad.. but a few thing that ar very nessasery are miissing .. Like moving threads from on topic a to topic b

15
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: February 08, 2006, 03:06:14 PM »
it isnt that easy - i can let the new pm link show yeah that easy. . but  the thing is.. wenn you push the pm button from a comment then that comment is shown in that pm

how can i do all that.  and the pm is already filled out to send to that person that wrote that comment.

Pages: [1] 2 3