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

Pages: 1 [2] 3 4 5 6 ... 16
16
Many users of 4images search this MOD, know I have a little idea to get this!

We can use it like the same way as we use the lightbox function!

features:

- see for which files you´ll receive comments
- add / delete subscribed files
- view subscribed files with thumbnails

for examle:

Users can click a button on details page e.g. called "subscribe", know the file will added like the same way 4images-files are added into the lightbox.

Now its a little bit tricky, but I think we can use this MOD from Vraxtor (http://www.4homepages.de/forum/index.php?topic=2705.0):

Code: [Select]
//-----------------------------------------------------
// Start Emailer for comments
//-----------------------------------------------------

    $recipient_name = $image_row['user_name'];
   $recipient_email = $image_row['user_email'];
   $image_url = $script_url."/details.php?".URL_IMAGE_ID."=".$id."";

$sql = "SELECT user_allowemails FROM ".USERS_TABLE." WHERE user_name = '$recipient_name'";
$result = $site_db->query($sql);
$row = $site_db->fetch_array($result);
$user_allowemails = ($row['user_allowemails']);

if ($user_allowemails == 1) {
   $current_time = time();
include(ROOT_PATH.'includes/email.php');
    $site_email = new Email();
    $site_email->set_to($recipient_email);
    $site_email->set_from($config['site_email'], $config['site_name']);
    $site_email->set_subject($lang['send_comment_emailsubject']);
    $site_email->register_vars(array(
      "user_name" => stripslashes($user_name),
      "recipient_name" => stripslashes($image_row['user_name']),
      "image_name" => $image_row['image_name'],
      "site_name" => $config['site_name'],
      "image_url" => $image_url,
      "comment_text" =>$comment_text,
      "comment_headline"=>$comment_headline,
          ));
    $site_email->set_body("comment_email", $config['language_dir']);
    $site_email->send_email();
    }

So we have to figured out to tell the emailer he should send this notification all users wich have subscribed to this file (when a comment is posted).

e.g.

1. user Hero (user_id=1) & user Max (user_id=2) subscribed to image trees (image_id=1)
2. a guest posted a comment for image 1
3. emailer search db which users will receive a notification for this comment and send user_id=1 & user_id=2 an email.

Hope somebody can help! Many users will be happy when this works :!: :wink:


17
Feedback & Suggestions / Re: Firefox 2 giebt alle Links zu den Fotos
« on: October 25, 2006, 06:33:08 PM »
Ja, die User die eine Datei unbedingt haben wollen, bekommen diese auch. Die Rechtsklicksperre erschwert dieses nur, genauso wie die überlagerte Gif-Datei.

Vielleicht gibt es ja für den ein- oder anderen hier noch ein paar Kniffs die er gebrauchen kann.

http://www.trafficklau.de/index1.html

18
Feedback & Suggestions / Re: 4images 1.7.4 - Feedback
« on: October 25, 2006, 05:01:21 PM »
Something like this :wink:


19
Discussion & Troubleshooting / Re: E-mail bei Kommentaren
« on: October 25, 2006, 04:36:59 PM »
Dieser ist ja nur für die Besitzer der jeweiligen Datei - es gibt schon ziemlich viele 4images user, die die Benachrichtigung auch für Diejenigen haben wollen, die nur ein Kommentar geschrieben haben und kein Besitzer sind. So etwas löst ja auch Diskussionen aus und bringt stetig Besucher!

20
Mods & Plugins (Requests & Discussions) / Re: Member control pannel
« on: October 25, 2006, 07:10:20 AM »
IceCream has installed such thing http://icecreamtest.ic.funpic.de/gallery/index.php -> register and look into the control panel

21
Feedback & Suggestions / Re: Firefox 2 giebt alle Links zu den Fotos
« on: October 25, 2006, 07:04:26 AM »
Hallo Galerie Freunde
Firefox 2 macht alle Sicherungs bemühen zu nichte die Links der Fotos zu verstecken.
in der Neuen Version wurde eine möglichkeit eingebaut die alle links zu den Fotos und Bilder aufdeckt und preisgibt

das gibt 0 Punkte für die Neue Version des Browsers....
Näheres über mich perr PM

Lg Uwe

Wie meinst Du das? Habe auch die neue Version von FireFox

22
Discussion & Troubleshooting / Re: E-mail bei Kommentaren
« on: October 25, 2006, 07:01:49 AM »
Keine Ahnung,
ob es evtl. in der neuen Version 1.73 implementiert wurde,
wenn nicht gibt es diese Option noch nicht.

Jedenfalls gab es das in den vorherigen Versionen nicht.

Hatte das mal für meine Testseite gebastelt,
bin aber leider nie dazu gekommen,
dass als Mod anzubieten, da ich keine Lust & Zeit hatte,
alle notwendigen änderungen in einer Anleitung zu dokumentieren.

Hole ich evtl. aber irgendwann mal nach.

Ja, IceCream der Mod funktioniert auf Deiner Testseite wirklich gut, wäre dass wirklich so viel Aufwand ein Tutorial dazu zu verfassen? Ich würde Dir gerne dabei helfen!

Ciao by Flo

23
Feedback & Suggestions / Re: 4images 1.7.4 - Feedback
« on: October 25, 2006, 06:57:55 AM »
It´s great to keep us up2date. But I don´t understand: why don´t you add some MODs like guestbook, smiles in comments or user country flag to new versions?

These MODs are very fine and we don´t have to do the same work again and again :wink: and I think, some new users of 4images which are not able to add some Mods to their gallery will be happy about it, to have new features!

24
Mods & Plugins (Releases & Support) / Re: [Mod] bbcode Smileys
« on: October 17, 2006, 06:28:54 PM »
I got a little problem with Version 1.7.2
If I don't type in a headline when I post a comment it sends me back to the page. But now the code in the Comment: looks like this
Code: [Select]
<img src="./templates/default/smilies/icon_surprised.gif"> instead of
Code: [Select]
:o

i am having the same problem in 1.7.2

if i leave the headline empty, i get the <img tag code in the comment text box and no comment is posted when i click submit.



It´s everytime when an errormassage is, but with guestbook MOD it works fine - whats wrong?

Edit: I didn´t think it has to do with functions.php, because it works with guestbook.php - there must be something changed in details.php - but what :?:

Ps: I get this error also with a fresh details.php - my v1.7.3

Edit: 19.10.06 - I´ve tried this with a fresh 4images install and it´s also the same  :(

PLZ Help  :(

25
Mods & Plugins (Releases & Support) / Re: [MOD] guestbook
« on: October 14, 2006, 09:32:44 AM »
When I want to edit a guestbook comment, it says: username still exists

Thats right but...

26
Achso, dies ist für html im PM´s, mein Fehler ist aber, dass die Smilies nicht in den abgegebenen Kommentaren dargestellt werden, sondern ein Stück quelltext erscheint. Manchmal klappt es auch und ein Smily wird angezeigt. Ich verstehg aber nicht, wo sich dieser Fehler verstecken könnte.

Wäre nett wenn man mir weiterhelfen könnte. Vielleicht liegt es auch an dem Browser von dem jew. User?

So sieht das Kommentar aus:

Quote
<img src=\"./templates/default/smiles/very_sad.gif\" alt=\"\"
border=\"0\">

27
In functions.php

theres:

Code: [Select]
if ($html == 0) {
    $text = str_replace("&lt;", "&amp;lt;", $text);
    $text = str_replace("&gt;", "&amp;gt;", $text);
    $text = str_replace("<", "&lt;", $text);
    $text = str_replace(">", "&gt;", $text);

Maybe this is cause that I´ve got in my comments some smiles looks like this:

Code: [Select]
<img src=\"./templates/default/smiles/surprised.gif\"
alt=\"\" border=\"0\">

In my quellcode it looks like:

Code: [Select]
&lt;img src="./templates/default/smiles/surprised.gif" alt="" border="0"&gt;
PLZ Help

28
Discussion & Troubleshooting / BBCode Strange error in comments
« on: October 10, 2006, 09:21:15 PM »
Hi, in my comments, I´ve got some strange errors. I use smilies and when some useres post comments, sometimes it looks like:

&lt;img src="./templates/default/smiles/confused.gif" alt="" border="0"&gt;

and sometimes it works, but why?

Greetz by Flo

29
Discussion & Troubleshooting / Re: BestätigungsCode
« on: October 08, 2006, 09:55:43 PM »
Kannst das in der config.php ausschalten:

Diese Zeilen vor ?> hinzufügen:

[qcode]//Module an- abschalten
$captcha_enable_comments = 0;
$captcha_enable_upload = 0;
$captcha_enable_registration = 0;
$captcha_enable_postcards = 0;
[/qcode]

Wahrscheinlich funzt hier Deine GD Library nicht richtig  :roll:

Cu by Flo

30
Discussion & Troubleshooting / Re: 1.7.3 - Thumbnails in RSS ?
« on: October 08, 2006, 09:52:53 PM »
I also have this problem  :(

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