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 - ch€ri{Bi}²

Pages: [1] 2 3 4 5 ... 16
1
pour commenter une ligne en php, tu places 2 slashes au debut :

Code: [Select]
// $last_registered_users_content .= $site_template->parse_template("member_last_registered_content");
et pour ta culture (ou la base du php) :  http://www.phpdebutant.org/
;)

2
commente la ligne:
Code: [Select]
$last_registered_users_content .= $site_template->parse_template("member_last_registered_content");

3
tu édites ton fichier Whos_online.html

et tu y ajoutes le code suivant (à la fin par exemple):
Code: [Select]
{user_name}<br />
{user_url}<br />
{user_joindate}<br />
{count}<br />

{lang_last_registered_users_title}<br />
{lang_last_registered_users_user_name}<br />
{lang_last_registered_users_user_joindate}<br />
{lang_last_registered_users_count}<br />
{show_last_registered_users_content}<br />

{today_users}<br />
{today_users_list}<br />

4
tu as fais la moitié du chemin...
dans ton fichier index.php tu dois déplacer tout le code placé après  :

Code: [Select]
echo $content;

include(ROOT_PATH.'includes/page_footer.php');
?>



et l'insérer avant :

Code: [Select]
//-----------------------------------------------------
//--- Print Out ---------------------------------------
//-----------------------------------------------------


puis dans ton fichier Whos_online.html tu dois utiliser une des variables suivantes:

{user_name}
{user_url}
{user_joindate}
{count}

{lang_last_registered_users_title}
{lang_last_registered_users_user_name}
{lang_last_registered_users_user_joindate}
{lang_last_registered_users_count}
{show_last_registered_users_content}

OU utiliser le fichier member_last_registered_content.html

non testé mais ça devrait mieux marcher ;)

PS :  il semble que tu as plutôt utilisé cette méthode non?

5
Français / Re : Qui Télécharge quoi
« on: November 20, 2008, 06:29:12 PM »
 :idea: dans le genre "je veux savoir qui fait quoi", il y a aussi (en beaucoup plus complet) ce mod avec une extension...

6
Français / Re : Edition des commentaires par les membres
« on: November 20, 2008, 06:08:37 PM »
hello,
je pense que la réponse est ici  :wink:


7
hello,

oui la solution existe... sur ce forum!

ici ou encore ici
je l'ai installée sur mon site... et après quelques modifications ça devrait faire ton bonheur  :wink:

8
Installation, Update & Configuration / Re: Update to 1.7.5 with MODS
« on: January 30, 2008, 11:24:35 PM »
I want to update my galery from 1.7.4 to 1.7.5, but I have a lot of mods in my scripts.

How can I do that?
this question always comes back when there is an update :
http://www.4homepages.de/forum/index.php?topic=13733.msg73941#msg73941
http://www.4homepages.de/forum/index.php?topic=1012.msg4308#msg4308
...

;)

9
I post URL 2 time now. :?
hum!!! ok thanks!

...still waiting for a live demo... :roll:

10
 8O hey man, you have misunderstood me !
i am already using the script but not with your mod ... that why i want to see a demo about what your mod is doing (more or less than mine) :wink:

Let for user want this MOD.
Remember - this is free MOD.
that is also why i asked who use this mod... :thumbup:

11
No demo. Sorry.  :|

[edit] - Demo here:

http://www.bmgadg.com/ajax_calendar.php
hum!!! with no demo  about your integration :? and some substantial modifications... :roll: I am not sure that users can imagine the result on their own website!
 
i used the original code to do what i want but i want to know what THIS mod is doing... live!
 :?: who is using this mod ? (i just ask this question to find a live demo... :wink:)

12
:thumbdown:  the link (zip file) is dead :?

[EDIT]
here is the missing file !
Good pretty MOD  :wink:

 :idea: How about authentification ? i mean : users can see only keywords they are allowed to access...
 :arrow: like it was done here

13
Français / Re: avancer d'images en images
« on: December 11, 2007, 06:36:19 PM »
j'ai mis ça:        <a href="{next_image_url}">{image}</a>

essayes ceci :

Code: [Select]
{if next_image_url}<a href="{next_image_url}">{image}</a>{endif next_image_url}

14
but this asort (tag) does not run  :!:
the tags is not sortet

oh sorry! my last response shows how to sort the keywords from the less to the more...

 :arrow:  if you want to get the real alphabetical order, change this in the sql query : find ORDER BY  RAND() and replace it by ORDER BY  i.word_text ASC ( => a-z).
Same thing with ORDER BY  i.word_text DESC ( => z-a)



2) when the wordmatch and wordlist table ist empty/clear
comes follow error messages
these warning messages are normal : see the end of this reply...
 why do you want to make a cloud tag with keywords if there is no keyword on your gallery?  :?

15
we can sort (alphabetical sequence) the tags to a-z or z-a?

you can do this in functions.php.

 :arrow: find & modify the second line in the code below  to sort the tags in reverse alphabetical order (z-a):
Quote
//uncommentnext line to sort the tag array in reverse order (+ => -)
   //arsort($tags);

 :!: or to sort the tags in alphabetical order (a-z)  modify the second line with this code : asort($tags);

 :wink:

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