Author Topic: [Mod] Notify sender on received eCard  (Read 73472 times)

0 Members and 2 Guests are viewing this topic.

Offline Vincent

  • 4images Moderator
  • Addicted member
  • *****
  • Posts: 1.195
    • View Profile
    • www.foto-kocher.com
Re: [Mod] Notify sender on received eCard
« Reply #30 on: November 06, 2005, 08:21:58 AM »
up
Beati pauperi spiritus

4images 1.7 // My Installed Mods


Offline ulisses2003

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #31 on: November 09, 2005, 06:41:05 AM »
what happend...  just before to send the card the browser show this error

Template Error: Couldn't open Template ./templates/7dana/.html

i need your help thanks

Offline Vincent

  • 4images Moderator
  • Addicted member
  • *****
  • Posts: 1.195
    • View Profile
    • www.foto-kocher.com
Re: [Mod] Notify sender on received eCard
« Reply #32 on: November 09, 2005, 07:32:03 AM »
@ulisses2003
there is something missing - which html file should be opend?

7dana/.html

sincerly
vincent

Beati pauperi spiritus

4images 1.7 // My Installed Mods


Offline Klaus99

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #33 on: February 21, 2006, 10:31:54 PM »
Hatte wie beschreieben die notify installiert bzw geändert. Beim Kartenerstellen ist das Auswahlfeld "Receive confirmation when postcard viewed?" standardmäßig aktiv. Doch egal ob aktiv oder deaktiviert, der Kartenversender erhält keine Bestätigung.
Wer kann mir helfen?  www.p-fach.de/postcard
MfG
Klaus


Ich habe mal meine postcard.php eingefügt, vielleicht weiß jemand woran es liegt.(Der Code wurde schon mal geändert, da man von der Vorschau nicht zurück auf Bearbeiten konnte.

 <?php
/**************************************************************************
 *                                                                        *
 *    4images - A Web Based Image Gallery Management System               *
 *    ----------------------------------------------------------------    *
 *                                                                        *
 *             File: postcards.php                                        *
 *        Copyright: (C) 2002 Jan Sorgalla                                *
 *            Email: jan@4homepages.de                                    *
 *              Web: http://www.4homepages.de                             *
 *    Scriptversion: 1.7.1                                                *
 *                                                                        *
 *    Never released without support from: Nicky (http://www.nicky.net)   *
 *                                                                        *
 **************************************************************************
 *                                                                        *
 *    Dieses Script ist KEINE Freeware. Bitte lesen Sie die Lizenz-       *
 *    bedingungen (Lizenz.txt) für weitere Informationen.                 *
 *    ---------------------------------------------------------------     *
 *    This script is NOT freeware! Please read the Copyright Notice       *
 *    (Licence.txt) for further information.                              *
 *                                                                        *
 *************************************************************************/
define('GET_CACHES', 1);
define('ROOT_PATH', './');
include(ROOT_PATH.'global.php');
require(ROOT_PATH.'includes/sessions.php');
$user_access = get_permission();
if (isset($HTTP_GET_VARS[URL_POSTCARD_ID]) || isset($HTTP_POST_VARS[URL_POSTCARD_ID])) {
  $postcard_id = (isset($HTTP_GET_VARS[URL_POSTCARD_ID])) ? trim($HTTP_GET_VARS[URL_POSTCARD_ID]) : trim($HTTP_POST_VARS[URL_POSTCARD_ID]);
}
else {
  $postcard_id = 0;
}

if ($action == "") {
  $action = ($postcard_id) ? "showcard" : "createcard";
}

$main_template = ($action == "createcard" || $action == "modifycard") ? "postcard_create" :  (($action == "previewcard") ? "postcard_create" : "postcard_send");
include(ROOT_PATH.'includes/page_header.php');

$sendprocess = 0;

if ($action != "showcard") {
  $sql = "SELECT i.cat_id, i.image_name, i.image_media_file, i.image_thumb_file, c.cat_name".get_user_table_field(", u.", "user_name")."
          FROM ".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c
          LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id)
          WHERE i.image_id = $image_id";
  $image_row = $site_db->query_firstrow($sql);
  if (!$image_row) {
    header("Location: ".$site_sess->url(ROOT_PATH."index.php", "&"));
    exit;
  }
  $cat_id = $image_row['cat_id'];
  $image_row['user_name'] = $image_row[$user_table_fields['user_name']];
 
  if (!check_permission("auth_sendpostcard", $cat_id)) {
    header("Location: ".$site_sess->url(ROOT_PATH."index.php", "&"));
    exit;
  }
}

if ($action == "sendcard") {
  $expiry = time() - 60 * 60 * 24 * POSTCARD_EXPIRY;
  $sql = "DELETE FROM ".POSTCARDS_TABLE."
          WHERE (postcard_date < $expiry)";
  $site_db->query($sql);

  $bg_color = un_htmlspecialchars(trim($HTTP_POST_VARS['bg_color']));
  $border_color = un_htmlspecialchars(trim($HTTP_POST_VARS['border_color']));
  $font_color = un_htmlspecialchars(trim($HTTP_POST_VARS['font_color']));
  $font_face = un_htmlspecialchars(trim($HTTP_POST_VARS['font_face']));

  $sender_name = un_htmlspecialchars(trim($HTTP_POST_VARS['sender_name']));
  $sender_email = un_htmlspecialchars(trim($HTTP_POST_VARS['sender_email']));
  $recipient_name = un_htmlspecialchars(trim($HTTP_POST_VARS['recipient_name']));
  $recipient_email = un_htmlspecialchars(trim($HTTP_POST_VARS['recipient_email']));

$confirm = $HTTP_POST_VARS['confirm'];


  $headline = un_htmlspecialchars(trim($HTTP_POST_VARS['headline']));
  $message = un_htmlspecialchars(trim($HTTP_POST_VARS['message']));

  $back_url = (!empty($HTTP_POST_VARS['back_url'])) ? stripslashes(trim($HTTP_POST_VARS['back_url'])) : $site_sess->url(ROOT_PATH."index.php", "&");

  $postcard_id = get_random_key(POSTCARDS_TABLE, "postcard_id");
  $current_time = time();

 $sql = "INSERT INTO ".POSTCARDS_TABLE."
         (postcard_id, image_id, postcard_date, postcard_bg_color, postcard_border_color, postcard_font_color, postcard_font_face, postcard_sender_name, postcard_sender_email, postcard_recipient_name, postcard_recipient_email, postcard_headline, postcard_message, postcard_confirm)
         VALUES
         ('$postcard_id', $image_id, $current_time, '$bg_color', '$border_color', '$font_color', '$font_face', '$sender_name', '$sender_email', '$recipient_name', '$recipient_email', '$headline', '$message', '$confirm')";
 $result = $site_db->query($sql);
  if ($result) {
    $postcard_url = $script_url."/postcards.php?".URL_POSTCARD_ID."=".$postcard_id;

    include(ROOT_PATH.'includes/email.php');
    $site_email = new Email();
    $site_email->set_to(stripslashes($recipient_email));
    $site_email->set_from(stripslashes($sender_email), stripslashes($sender_name));
    $site_email->set_subject($lang['send_postcard_emailsubject']);
    $site_email->register_vars(array(
      "sender_name" => stripslashes($sender_name),
      "sender_email" => stripslashes($sender_email),
      "recipient_name" => stripslashes($recipient_name),
      "postcard_url" => stripslashes($postcard_url),
      "postcard_send_date" => format_date($config['date_format']." ".$config['time_format'], $current_time),
      "site_name" => $config['site_name']
    ));
    $site_email->set_body("postcard_message", $config['language_dir']);
    $site_email->send_email();

    $msg .= $lang['send_postcard_success'];
    $msg .= "<br /><a href=\"".$back_url."\">".$lang['back_to_gallery']."</a>";
    $action = "showcard";
  }
  else {
    $msg = $lang['general_error'];
    $action = "previewcard";
    $main_template = "postcard_preview";
  }
}

if ($action == "showcard") {
  $expiry = time() - 60 * 60 * 24 * POSTCARD_EXPIRY;
  $sql = "DELETE FROM ".POSTCARDS_TABLE."
          WHERE (postcard_date < $expiry)";
  $site_db->query($sql);

  if (!$postcard_id){
    header("Location: ".$site_sess->url(ROOT_PATH."index.php", "&"));
    exit;
  }
  else {
    $sql = "SELECT p.postcard_id, p.image_id, p.postcard_date, p.postcard_bg_color, p.postcard_border_color, p.postcard_font_color, p.postcard_font_face, p.postcard_sender_name, p.postcard_sender_email, p.postcard_recipient_name, p.postcard_recipient_email, p.postcard_headline, p.postcard_message, i.image_name, i.cat_id, i.image_media_file, i.image_thumb_file, p.postcard_confirm
           FROM ".POSTCARDS_TABLE." p, ".IMAGES_TABLE." i
           WHERE p.postcard_id = '$postcard_id' AND p.image_id = i.image_id";
   $image_row = $site_db->query_firstrow($sql);
    if (!$image_row) {
      $msg = $lang['invalid_postcard_id'];
    }
    else {
if ($msg == "" && $image_row['postcard_confirm'] == 1) {
            $sql = "UPDATE ".POSTCARDS_TABLE."
                        SET postcard_confirm = 0
                        WHERE postcard_id = '$postcard_id'";
            $site_db->query($sql);
            $current_time = time();
            include(ROOT_PATH.'includes/email.php');
            $site_email = new Email();
            $site_email->set_to(stripslashes($image_row['postcard_sender_email']), stripslashes($image_row['postcard_sender_name']));
            $site_email->set_from(stripslashes($config['site_email']), "");
            $site_email->set_subject($lang['postcard_confirm_subj']);
            $site_email->register_vars(array(
               "recipient_name" => stripslashes($image_row['postcard_sender_name']),
               "recipient_email" => stripslashes($image_row['postcard_sender_email']),
               "sender_name" => stripslashes($image_row['postcard_recipient_name']),
               "sender_email" => stripslashes($image_row['postcard_recipient_email']),
               "postcard_send_date" => format_date($config['date_format']." ".$config['time_format'], $current_time),
               "site_url" => $script_url."/details.php?".URL_IMAGE_ID."=".$image_row['image_id'],
               "site_name" => $config['site_name']
            ));
            $site_email->set_body("postcard_confirm", $config['language_dir']);
            $site_email->send_email();
         }



      $image = get_media_code($image_row['image_media_file'], $image_row['image_id'], $image_row['cat_id'], $image_row['image_name'], $mode, 1);
      $thumbnail = get_thumbnail_code($image_row['image_media_file'], $image_row['image_thumb_file'], $image_row['image_id'], $image_row['cat_id'], $image_row['image_name'], $mode);
      $image_name_link = "<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_row['image_id'])."\">".htmlspecialchars($image_row['image_name'])."</a>";
      $site_template->register_vars(array(
        "image" => $image,
        "thumbnail" => $thumbnail,
        "image_name_link" => $image_name_link,
        "bg_color" => htmlspecialchars($image_row['postcard_bg_color']),
        "border_color" => htmlspecialchars($image_row['postcard_border_color']),
        "font_color" => htmlspecialchars($image_row['postcard_font_color']),
        "font_face" => htmlspecialchars($image_row['postcard_font_face']),
        "sender_name" => htmlspecialchars($image_row['postcard_sender_name']),
        "sender_email" => htmlspecialchars($image_row['postcard_sender_email']),
        "recipient_name" => htmlspecialchars($image_row['postcard_recipient_name']),
        "recipient_email" => htmlspecialchars($image_row['postcard_recipient_email']),
        "headline" => htmlspecialchars($image_row['postcard_headline']),
        "message" => htmlspecialchars($image_row['postcard_message'])
      ));
    }
  }
}




if ($action == "previewcard") {
  $error = 0;
  $bg_color = htmlspecialchars(trim($HTTP_POST_VARS['bg_color']));
  $border_color = htmlspecialchars(trim($HTTP_POST_VARS['border_color']));
  $font_color = htmlspecialchars(trim($HTTP_POST_VARS['font_color']));
  $font_face = htmlspecialchars(trim($HTTP_POST_VARS['font_face']));

  $sender_name = htmlspecialchars(trim($HTTP_POST_VARS['sender_name']));
  $sender_email = htmlspecialchars(trim($HTTP_POST_VARS['sender_email']));
  $recipient_name = htmlspecialchars(trim($HTTP_POST_VARS['recipient_name']));
  $recipient_email = htmlspecialchars(trim($HTTP_POST_VARS['recipient_email']));

  $headline = htmlspecialchars(trim($HTTP_POST_VARS['headline']));
  $message = htmlspecialchars(trim($HTTP_POST_VARS['message']));

  $back_url = (!empty($HTTP_POST_VARS['back_url'])) ? htmlspecialchars(stripslashes(trim($HTTP_POST_VARS['back_url']))) : $site_sess->url(ROOT_PATH."index.php, "&"");

  if ($sender_name == "" || $sender_email == "" || $recipient_name == "" || $recipient_email == "" || $headline == "" || $message == "") {
    $msg .= $lang['lostfield_error'];
    $error = 1;
  }
  if (($sender_email != "" && !check_email($sender_email)) || ($recipient_email != "" && !check_email($recipient_email))) {
    $msg .= (($msg != "") ? "<br />" : "").$lang['invalid_email_format'];
    $error = 1;
  }

  if (!$error) {
    $main_template = "postcard_preview";
    $image = get_media_code($image_row['image_media_file'], $image_id, $cat_id, $image_row['image_name'], $mode, 1);
    $thumbnail = get_thumbnail_code($image_row['image_media_file'], $image_row['image_thumb_file'], $image_id, $cat_id, $image_row['image_name'], $mode);
    $site_template->register_vars(array("lang_postcard_confirm" => $lang['postcard_confirm'],
         "postcard_confirm" => ($HTTP_POST_VARS['confirm'] == 1) ? $lang['yes'] : $lang['no'],
         "confirm" => $HTTP_POST_VARS['confirm'],
      "image" => $image,
      "thumbnail" => $thumbnail,
      "image_name" => $image_row['image_name'],
      "url_postcard" => $site_sess->url(ROOT_PATH."postcards.php?".URL_IMAGE_ID."=".$image_id),
      "bg_color" => stripslashes($bg_color),
      "border_color" => stripslashes($border_color),
      "font_color" => stripslashes($font_color),
      "font_face" => stripslashes($font_face),
      "sender_name" => stripslashes($sender_name),
      "sender_email" => stripslashes($sender_email),
      "recipient_name" => stripslashes($recipient_name),
      "recipient_email" => stripslashes($recipient_email),
      "headline" => stripslashes($headline),
      "message" => stripslashes($message),
      "lang_sender" => $lang['sender'],
      "lang_recipient" => $lang['recipient'],
      "lang_edit_postcard" => $lang['edit_postcard'],
      "lang_send_postcard" => $lang['send_postcard'],
      "back_url" => $back_url
    ));
  }
  else {
    $action = "createcard";
    $main_template = "postcard_create";
    $sendprocess = 1;
  }
}

if ($action == "createcard" || $action == "modifycard") {
  if (!$sendprocess) {

 if ($action == "modifycard") {
    $bg_color = un_htmlspecialchars(trim($HTTP_POST_VARS['bg_color']));
    $border_color = un_htmlspecialchars(trim($HTTP_POST_VARS['border_color']));
    $font_color = un_htmlspecialchars(trim($HTTP_POST_VARS['font_color']));
    $font_face = un_htmlspecialchars(trim($HTTP_POST_VARS['font_face']));

    $sender_name = un_htmlspecialchars(trim($HTTP_POST_VARS['sender_name']));
    $sender_email = un_htmlspecialchars(trim($HTTP_POST_VARS['sender_email']));
    $recipient_name = un_htmlspecialchars(trim($HTTP_POST_VARS['recipient_name']));
    $recipient_email = un_htmlspecialchars(trim($HTTP_POST_VARS['recipient_email']));

    $headline = un_htmlspecialchars(trim($HTTP_POST_VARS['headline']));
    $message = un_htmlspecialchars(trim($HTTP_POST_VARS['message']));
  }




    $bg_color = "";
    $border_color = "";
    $font_color = "";
    $font_face = "";
    $sender_name = ($user_info['user_level'] != GUEST) ? $user_info['user_name'] : "";
    $sender_email = ($user_info['user_level'] != GUEST) ? $user_info['user_email'] : "";
    $recipient_name = "";
    $recipient_email = "";
    $headline = "";
    $message = "";
  }
 


  $image = get_media_code($image_row['image_media_file'], $image_id, $cat_id, $image_row['image_name'], $mode, 1);
  $thumbnail = get_thumbnail_code($image_row['image_media_file'], $image_row['image_thumb_file'], $image_id, $cat_id, $image_row['image_name'], $mode);
 $site_template->register_vars(array("lang_postcard_confirm" => $lang['postcard_confirm']."?",
    "image" => $image,
    "thumbnail" => $thumbnail,
    "image_name" => $image_row['image_name'],
    "lang_bg_color" => $lang['bg_color'],
    "bg_color" => $bg_color,
    "lang_border_color" => $lang['border_color'],
    "border_color" => $border_color,
    "lang_font_color" => $lang['font_color'],
    "font_color" => $font_color,
    "lang_font_face" => $lang['font_face'],
    "font_face" => $font_face,
    "lang_sender" => $lang['sender'],
    "lang_recipient" => $lang['recipient'],
    "lang_email" => $lang['email'],
    "lang_name" => $lang['name'],
    "lang_headline" => $lang['headline'],
    "lang_message" => $lang['message'],
    "lang_preview_postcard" => $lang['preview_postcard'],
    "url_postcard" => $site_sess->url(ROOT_PATH."postcards.php?".URL_IMAGE_ID."=".$image_id),
    "sender_name" => stripslashes($sender_name),
    "sender_email" => stripslashes($sender_email),
    "recipient_name" => stripslashes($recipient_name),
    "recipient_email" => stripslashes($recipient_email),
    "headline" => stripslashes($headline),
    "message" => stripslashes($message),
    "lang_send_postcard" => $lang['send_postcard'],
    "back_url" => stripslashes($url)
  ));}

//-----------------------------------------------------
//--- Clickstream -------------------------------------
//-----------------------------------------------------
$clickstream = "<span class=\"clickstream\"><a href=\"".$site_sess->url(ROOT_PATH."index.php")."\" class=\"clickstream\">".$lang['home']."</a>".$config['category_separator'];
if ($mode == "lightbox" && !empty($user_info['lightbox_image_ids'])) {
  $clickstream .= "<a href=\"".$site_sess->url(ROOT_PATH."lightbox.php")."\" class=\"clickstream\">".$lang['lightbox']."</a>".$config['category_separator']."<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_id."&amp;mode=".$mode)."\" class=\"clickstream\">".$image_row['image_name']."</a>".$config['category_separator'];
}
elseif ($mode == "search" && !empty($session_info['search_id'])) {
  $clickstream .= "<a href=\"".$site_sess->url(ROOT_PATH."search.php?show_result=1")."\" class=\"clickstream\">".$lang['search']."</a>".$config['category_separator']."<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_id."&amp;mode=".$mode)."\" class=\"clickstream\">".$image_row['image_name']."</a>".$config['category_separator'];
}
else {
  $clickstream .= get_category_path($cat_id, 1).$config['category_separator']."<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_id)."\" class=\"clickstream\">".$image_row['image_name']."</a>".$config['category_separator'];
}
$clickstream .= $lang['send_postcard']."</span>";

//-----------------------------------------------------
//--- Print Out ---------------------------------------
//-----------------------------------------------------
$site_template->register_vars(array(
  "msg" => $msg,
  "clickstream" => $clickstream,
));
$site_template->print_template($site_template->parse_template($main_template));
include(ROOT_PATH.'includes/page_footer.php');
?>
« Last Edit: February 22, 2006, 01:17:05 AM by Klaus99 »

Offline IcEcReaM

  • Hero Member
  • *****
  • Posts: 714
    • View Profile
    • My little Testboard
Re: [Mod] Notify sender on received eCard
« Reply #34 on: February 21, 2006, 11:12:03 PM »
Die Karte ist aber schon vom Empfänger gelesen worden, oder?
Der Mod sendet nur ne Mail, wenn die E-Card vom Empfnger gelesen wurde.
Coding is a everlasting competition between programmers who tries to write larger, better and idiot-safe programs and the universe producing larger and stupider idiots...
...so far the universe won
bump

Offline Klaus99

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #35 on: February 22, 2006, 12:01:05 AM »
Ja, die Karte wurde vom Empfänger schon gelesen. Wenn ich nach dem erstellen der Karte auf Vorschau gehe steht dort "Receive confirmation when postcard viewed: Nein", auch wenn ich es bei der erstellung der Karte auf "ja" eingestellt hatte.

Offline Yeti

  • Newbie
  • *
  • Posts: 40
    • View Profile
    • Bernds Homepage
Re: [Mod] Notify sender on received eCard
« Reply #36 on: December 23, 2006, 08:18:13 PM »
1.)   
Quote
Step 6.
Download "eCard Notify Install"
the link is down :?


2. I foünd the code for step 1   3 times. Shall I alter it only at its first Position or at all 3 Positions?
   Ich habe den Code von Step 1 gleich 3 Mal gefunden. Soll ich die Änderung nur an der ersten Fundstelle einfügen, oder gleich alle 3 mal?
Open postcards.php

 Step 1:Find:
Code:
 $recipient_email = un_htmlspecialchars(trim($HTTP_POST_VARS['recipient_email']));Add after:
Code:
   $confirm = $HTTP_POST_VARS['confirm'];
« Last Edit: December 23, 2006, 09:25:39 PM by Yeti »

Offline IcZin

  • Pre-Newbie
  • Posts: 1
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #37 on: January 02, 2007, 02:27:38 AM »
HELP !!! Vano... help....
Quote
Step 6.
Download "eCard Notify Install"
the link is down  8O :!:

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #38 on: January 04, 2007, 10:37:46 PM »
@ Yeti, IcZin ...

... I've updated the first post ...
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #39 on: January 05, 2007, 06:44:43 AM »
@ mawenzi
Thanks for doing that!

Offline Yeti

  • Newbie
  • *
  • Posts: 40
    • View Profile
    • Bernds Homepage
Re: [Mod] Notify sender on received eCard
« Reply #40 on: January 05, 2007, 04:54:59 PM »
Danke für die schnelle Hilfe, Mawenzi!

Offline Mirwais

  • Newbie
  • *
  • Posts: 39
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #41 on: January 14, 2007, 08:55:55 PM »
Hello!!
i get error when I send an post card.

Quote
Fatal error: Cannot redeclare class email in /mounted-storage/home27b/sub003/sc17661-ZQKX/dostaan.com/4images/includes/email.php on line 28

Please Help someone

Thanks

Offline Mirwais

  • Newbie
  • *
  • Posts: 39
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #42 on: January 16, 2007, 06:39:07 PM »
Please Help some one!!!!!!!

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [Mod] Notify sender on received eCard
« Reply #43 on: January 18, 2007, 10:13:34 AM »
@ Mirwais
1. I got no error by sending a post card from your website ... !
2. if you further get the error message ... restore your backup and try to install the mod again ...
3. where is the copyright notice on your gallery on http://dostaan.com/videos/ ... ?
4. you acquired a 4images Copyright-Removal-Licence ... ?
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

jojomart

  • Guest
Re: [Mod] Notify sender on received eCard
« Reply #44 on: January 01, 2008, 11:32:40 PM »
Hi,

I'd like to use this mod on my site, but I'm running 1.74 and I can't find the following code in postcards.php:

Code: [Select]
if (!$image_row) {
      $msg = $lang['invalid_postcard_id'];
    }
    else {

Can you help me with this?

Thanks,
Joanne