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.


Topics - drastx

Pages: [1]
1
Mods & Plugins (Requests & Discussions) / How to show more SUBcats ?
« on: April 20, 2007, 11:01:06 PM »
I want to show more SUBCATS in a line - not just three.
When I change config in aCP its applied to normal cat's too...


How to change it ?

2
Hello!

I saw few topics with this problem.
It's a really small change, so everyone can do.
After that, you'll be able to send HTML mails.

1. Open includes/email.php

find:
Code: [Select]

  function create_header() {
    global $config;
    $header = "";
    if (empty($this->from)) {
      $header .= sprintf("Return-Path: %s\r\n", $config['site_email']);

      $header .= sprintf("From: %s\r\n", $config['site_email']);
    }
    else {
      $header .= $this->from;
    }

And change to this:
Code: [Select]

  function create_header() {
    global $config;
    $header = "";
    if (empty($this->from)) {
      $header .= sprintf("Return-Path: %s\r\n", $config['site_email']);

   $header = sprintf("MIME-Version: 1.0\n");
   $header .= sprintf("Content-type: text/html; charset=iso-8859-2\n");
      $header .= sprintf("From: %s\r\n", $config['site_email']);
    }
    else {
      $header .= $this->from;
    }


Now you should edit your templates (lang/*your_language*/email/) using HTML tags.

greetings ;)

3
Discussion & Troubleshooting / Non-latin letters in 4images
« on: April 01, 2007, 04:44:55 PM »
Why i can't use polish letters in comments / image names / keywords ?

It's weird, cause i CAN use polish letters in category names o_O

Plz help.

And thx ;)

4
Hi  :)

Where can I find this mod ? 8O
I searched, but didn't found it. 8O

I want to resctrict GUESTS for viewing for example 30 images per 24h and after 30 he will see info "You have watched 30 files, please log in".
And no restrictions for USERS (admins). :twisted:

Thx for help :?

Pages: [1]