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

Pages: 1 2 [3] 4
31
News & Announcements / New "Sites in Action"
« on: October 16, 2002, 07:30:30 PM »
Wir haben eine neues System für unseren Bereich "Sites in Action". Alle Seiten die bisher gelistet waren, müssen leider nochmal eingetragen werden, Danke.
---
We installed a new system to manage our "Sites in Action" section. Feel free to add your gallery.

Link: Sites in Action

Jan

32
Plugins / [Plugin] Batch Import
« on: October 08, 2002, 10:14:45 PM »
Batch Import-Script (Beta)

Das Script importiert Bilddateien aus einer bestehenden Ordnerstruktur. Dabei werde Ordner rekursiv durchlaufen, für jeden Ordner eine Kategorie erstellt (Subkategorien für Subordner) und die Bilder importiert.
---------------------------------------------------------------------------------
This script will import image data from an existing folder structure. The script goes recursively through the folders, creates categories for each folder (subcategories for subfolders) and imports the images.


Installation:

- Erstelle ein neues Verzeichnis plugins im admin Ordner (sollte es noch nicht existieren)
- Entpacke das zip und öffne die Datei batch_import.php
- Am Anfang der Datei findest Du den Konfigurationsteil. Pass diesen nach Deinen Anforderungen an. Die einzelnen Teile werden dort erklärt.
- Kopiere die Datei batch_import.php in das plugins-Verzeichnis
- Logge Dich ins Control Panel ein, in der linken Navigation sollte unter "PlugIns" eine neuer Menüpunkt erscheinen
- Draufklicken und Spass haben
---------------------------------------------------------------------------------
- Create a new directory called plugins in your admin-folder (if it yet does not exist)
- Extract the zip and open the file batch_import.php
- At the top you will find the configuration part. Edit this part according to your requirements. You will find an explanation there for each part
- Copy the file batch_import.php to the plugins-directory
- Log in to your Control Panel, a new link should appear in the left navigation frame beneath "PlugIns"
- Click it and have fun


Download: batch_import.zip

33
This mod allows you to use different category templates. Templates will be inherited on subcategories.
----
Diese Modifikation erlaubt es, verschiedene Templates für Kategorien zu verwenden. Dabei wird ein Template auf seine Unterkategorien vererbt.

Installation:

1. Open "includes/functions.php" and add after:
Code: [Select]
if (!defined('ROOT_PATH')) {
  die("Security violation");
}

this code:
Code: [Select]
function get_cat_template($tpl_name, $cat_id = 0) {
  global $cat_cache;
  if (!$cat_id) {
    $new_tpl_name = $tpl_name;
  }
  elseif (file_exists(TEMPLATE_PATH."/".$tpl_name."_".$cat_id.".html")) {
    $new_tpl_name = $tpl_name."_".$cat_id;
  }
  else {
    $new_tpl_name = get_cat_template($tpl_name, $cat_cache[$cat_id]['cat_parent_id']);
  }
  return $new_tpl_name;
}


2. Open "categories.php" and add before:
Code: [Select]
$site_template->print_template($site_template->parse_template($main_template));
this code:
Code: [Select]
$main_template = get_cat_template($main_template, $cat_id);

3. Create a new template for a specific category (you may duplicate "categories.html" and modify it) and save it under this name:
Code: [Select]
categories_<cat_id>.html
Replace <cat_id> with id of the category.
This category and all subcategories will now use this template.


If you want to use a different template for the details page , do step 2 for "details.php". Then create a new template for the details page (you may duplicate "details.html" and modify it) an save it under this name:
Code: [Select]
details_<cat_id>.html
Replace <cat_id> with id of the category.
This category and all subcategories will now use this template for the details page.

34
Hier sind nun die angekündigten Dateien für die Integration von 4images 1.7 und vBulletin 2.x. Eine Installationsanleitung ist im Zip enthalten (Wichtig: Die Installations-Hinweise lesen!).
Die Integration ist experimentell. Bugs bitte hier posten.
-------
Here are the files for the integration of 4images 1.7 and vBulletin 2.x. Instructions for installation are included (Important: Please read the installation notes!).
The integration experimental. Please post Bugs here.

Download: integration_vbulletin.zip

35
Mods & Plugins (Releases & Support) / Integration 4images 1.7.x / phpBB
« on: August 29, 2002, 05:32:54 PM »
Hier sind nun die angekündigten Dateien für die Integration von 4images 1.7 und phpBB. Eine Installationsanleitung ist im Zip enthalten (Wichtig: Die Installations-Hinweise lesen!).
Die Integration ist experimentell. Bugs bitte hier posten.
-----
Here are the files for the integration of 4images 1.7 and phpBB. Instructions for installation are included (Important: Please read the installation notes!).
The integration experimental. Please post Bugs here.

Download: integration_phpbb.zip

----

If you have problems with redirecting back to the gallery after login (404 Error), try this:
http://www.4homepages.de/forum/index.php?topic=1658.msg31328#msg31328

36
News & Announcements / 4images 1.7 (english)
« on: August 26, 2002, 10:19:06 AM »
Version 1.7 has just been released and contains several new features:
  • Auto-Login works now for the Control Panel (Set ADMIN_SAFE_LOGIN to 1 in constants.php will undo this)
  • Stylesheet for Clickstream
  • Select user when adding/deleting images
  • Reset Stats for particular categories
  • System Buttons can now depend on selected language (create a new folder "templates/<template_pack>/images_<language_name>" and place the images in it)

  you can also use the tag {template_lang_image_url} in the templates which will point to the this language directory
  • Fixed not deleting image files from the server during valdiation of images
  • Prev/Next image on details page now depends on where the user is coming from (category, lightbox, search)
  • Resizing images proportional OR with fixed width/height
  • 3 options for account activation: none, by email, by admin
  • Sends now also a welcome-email if account activation is set to "none" (See new "Email templates)
  • Charset and direction per language
  • Users can now edit their own images and comments (Each function can be disabled in the settings)
  • Delete more than one image/user/comment at a time[/list:u]See Installation.txt for detailed update instructions.


    Files changed (from Version 1.6.1):
    ---------------------------------------
    - admin/admin_functions.php
    - admin/admin_global.php
    - admin/backup.php
    - admin/categories.php
    - admin/checkimages.php
    - admin/comments.php
    - admin/email.php
    - admin/home.php
    - admin/images.php
    - admin/index.php
    - admin/resizer.php
    - admin/settings.php
    - admin/stats.php
    - admin/templates.php
    - admin/thumbnailer.php
    - admin/usergroups.php
    - admin/users.php
    - admin/validateimages.php
    - includes/auth.php
    - includes/constants.php
    - includes/db_utils.php
    - includes/email.php
    - includes/functions.php
    - includes/image_utils.php
    - includes/page_footer.php
    - includes/page_header.php
    - includes/search_utils.php
    - includes/sessions.php
    - includes/template.php
    - includes/upload.php
    - includes/upload_definitions.php
    - includes/zip.php
    - categories.php
    - details.php
    - download.php
    - global.php
    - index.php
    - install.php
    - lightbox.php
    - login.php
    - member.php
    - postcards.php
    - register.php
    - search.php
    - top.php


    New or changed parts in the language files (from Version 1.6.1):
    ---------------------------------------
    main.php
    -  new: $lang['charset']
    -  new: $lang['direction']
    -  deleted: $lang['invalid_username'] and $lang['invalid_passwort']
    -  new: $lang['invalid_login']
    -  new: $lang['image_edit']
    -  new: $lang['image_edit_success']
    -  new: $lang['image_edit_error']
    -  new: $lang['image_delete']
    -  new: $lang['image_delete_success']
    -  new: $lang['image_delete_error']
    -  new: $lang['image_delete_confirm']
    -  new: $lang['comment_edit']
    -  new: $lang['comment_edit_success']
    -  new: $lang['comment_edit_error']
    -  new: $lang['comment_delete_success']
    -  new: $lang['comment_delete_error']
    -  new: $lang['comment_delete_confirm']
    -  changed: $lang['register_success']
    -  new: $lang['register_success_none']
    -  new: $lang['register_success_admin']

    admin.php
    -  changed: $lang['resize_dimension_desc']
    -  changed: $lang['convert_thumbnail_dimension']
    -  new: $lang['resize_proportions_desc']
    -  new: $lang['resize_proportionally']
    -  new: $lang['resize_fixed_width']
    -  new: $lang['resize_fixed_height']
    -  new: $setting['user_edit_image']
    -  new: $setting['user_delete_image']
    -  new: $setting['user_edit_comments']
    -  new: $setting['user_delete_comments']
    -  changed: $setting['auto_thumbnail_dimension']
    -  new: $setting['auto_thumbnail_resize_type']
    -  new: $auto_thumbnail_resize_type_optionlist
    -  changed: $setting['account_activation']
    -  new: $account_activation_optionlist

    Email templates:
    -  new: register_activation_none.html
    -  new: activation_success.html
    -  new: admin_activation.html
    -  new: register_activation_admin.html
    -  changed: upload_notify.html ({validation_url} added)


    Templates changed (from Version 1.6.1):
    ---------------------------------------
    - style.css (.clickstream added)
    - header.html ({charset} and {direction} added)
    - comment_bit.html (image tags changed)
    - new: member_editimage.html
    - new: member_deleteimage.html
    - new: member_editcomment.html
    - new: member_deletecomment.html

37
News & Announcements / 4images 1.7
« on: August 25, 2002, 11:31:48 PM »
English Announcement

Die neue Version 1.7 wurde soeben veröffentlicht und enthält einige Features:
  • Auto-Login gilt auch für Control Panel (ADMIN_SAFE_LOGIN auf 1 setzen in constants.php macht diese Änderung rückgängig)
  • Stylesheet für Clickstream
  • beim Hinzufügen/Bearbeiten von Bildern User wählbar
  • Statistiken zurücksetzen für einzelne Kategorien
  • System-Buttons (Leuchtkasten, Download etc.) können jetzt sprachabhängig angezeigt werden.

  Einen neue Ordner erstellen ("templates/<template_pack>/images_<language_name>") und Bilder darin plazieren.
  Darüberhinaus kann nun das Tag {template_lang_image_url} in den Templates verwendet werden welches den Pfad
  zu diesem Ordner sprachabhängig erzeugt.
  • Bilder freischalten: Bilddateien werden nun beim vom Server gelöscht wenn "löschen" gewählt wurde
  • Nächstes/vorheriges Bild auf der Detailseite werden nun abhängig davon abgezeigt woher der User kommt

  (Kategorien, Leuchtkasten, Suche)
  • Auto-Thumbaniler und Auto-Resizer erlauben nun Bildverkleinerung proportional oder mit fester Höhe oder Breite.
  • Es gibt jetzt drei Optionen für die Userfreischaltung: Keine, per Email, durch den Admin
  • Es wird nun auch eine Email mit den Zugangsdaten an neu registrierte User gesendet,

  wenn Account Aktivierung auf "Keine" steht.
  • Charset und direction können nun in den Sprachdateien für einzelne Sprachen festgelegt werden.
  • User können nun ihre eigenen Bilder un zugehörigen Kommentare bearbeiten/löschen.

  Jede Funktion kann einzeln in den Einstellungen deaktiviert werden.
  • Es könne nun mehrere Bilder/Kommentare/User auf einmal gelöscht werden.[/list:u]
    Genaue Instruktionen zum Update gibts wie immer in der Installation.txt.


    Geänderte Dateien (zur Version 1.6.1):
    ---------------------------------------
    - admin/admin_functions.php
    - admin/admin_global.php
    - admin/backup.php
    - admin/categories.php
    - admin/checkimages.php
    - admin/comments.php
    - admin/email.php
    - admin/home.php
    - admin/images.php
    - admin/index.php
    - admin/resizer.php
    - admin/settings.php
    - admin/stats.php
    - admin/templates.php
    - admin/thumbnailer.php
    - admin/usergroups.php
    - admin/users.php
    - admin/validateimages.php
    - includes/auth.php
    - includes/constants.php
    - includes/db_utils.php
    - includes/email.php
    - includes/functions.php
    - includes/image_utils.php
    - includes/page_footer.php
    - includes/page_header.php
    - includes/search_utils.php
    - includes/sessions.php
    - includes/template.php
    - includes/upload.php
    - includes/upload_definitions.php
    - includes/zip.php
    - categories.php
    - details.php
    - download.php
    - global.php
    - index.php
    - install.php
    - lightbox.php
    - login.php
    - member.php
    - postcards.php
    - register.php
    - search.php
    - top.php


    Neue oder geänderte Teile in den Sprachdateien (zur Version 1.6.1):
    ---------------------------------------
    main.php
    -  neu: $lang['charset']
    -  neu: $lang['direction']
    -  gelöscht: $lang['invalid_username'] und $lang['invalid_passwort']
    -  neu: $lang['invalid_login']
    -  neu: $lang['image_edit']
    -  neu: $lang['image_edit_success']
    -  neu: $lang['image_edit_error']
    -  neu: $lang['image_delete']
    -  neu: $lang['image_delete_success']
    -  neu: $lang['image_delete_error']
    -  neu: $lang['image_delete_confirm']
    -  neu: $lang['comment_edit']
    -  neu: $lang['comment_edit_success']
    -  neu: $lang['comment_edit_error']
    -  neu: $lang['comment_delete_success']
    -  neu: $lang['comment_delete_error']
    -  neu: $lang['comment_delete_confirm']
    -  geändert: $lang['register_success']
    -  neu: $lang['register_success_none']
    - neu: $lang['register_success_admin']

    admin.php
    -  geändert: $lang['resize_dimension_desc']
    -  geändert: $lang['convert_thumbnail_dimension']
    -  neu: $lang['resize_proportions_desc']
    -  neu: $lang['resize_proportionally']
    -  neu: $lang['resize_fixed_width']
    -  neu: $lang['resize_fixed_height']
    -  neu: $setting['user_edit_image']
    -  neu: $setting['user_delete_image']
    -  neu: $setting['user_edit_comments']
    -  neu: $setting['user_delete_comments']
    -  geändert: $setting['auto_thumbnail_dimension']
    -  neu: $setting['auto_thumbnail_resize_type']
    -  neu: $auto_thumbnail_resize_type_optionlist
    -  geändert: $setting['account_activation']
    -  neu: $account_activation_optionlist

    Email templates:
    -  neu: register_activation_none.html
    -  neu: activation_success.html
    -  neu: admin_activation.html
    -  neu: register_activation_admin.html
    -  geändert: upload_notify.html ({validation_url} hinzugefügt)


    Geänderte Templates (zur Version 1.6.1):
    ---------------------------------------
    - style.css (.clickstream hinzugefügt)
    - header.html ({charset} und {direction} hinzugefügt)
    - comment_bit.html (bild tags angepasst)
    - neu: member_editimage.html
    - neu: member_deleteimage.html
    - neu: member_editcomment.html
    - neu: member_deletecomment.html

38
Plugins / [Plugin] ImageFolio Import-Script
« on: August 09, 2002, 10:37:41 AM »
ImageFolio Import-Script (Pro Edition, Version 2.27)

Importiert bestehende ImageFolio Daten nach 4images.
- Importiert Kategorien + Beschreibung (catdesc.txt)
- Importiert Bilder + Captions, tCaptions, Hits, Votes, Ratings, Datum
---------------------------------------------------------------------------------
Will import your existing ImageFolio data to 4images.
- Imports categories + descriptions (catdesc.txt)
- Imports images + captions, tcaptions, hits, votes, ratings, date


Installation:

- Erstelle ein neues Verzeichnis plugins im admin Ordner (sollte es noch nicht existieren)
- Entpacke das zip und öffne die Datei import_imagefolio.php
- Am Anfang der Datei findest Du den Konfigurationsteil. Pass diesen nach Deinen Anfordeungen an. Die einzelnen Teile werden dort erklärt.
- Kopiere die Datei import_imagefolio.php in das plugins-Verzeichnis
- Logge Dich ins Control Panel ein, in der linken Navigation sollte unter "PlugIns" eine neuer Menüpunkt erscheinen
- Draufklicken und Spass haben
---------------------------------------------------------------------------------
- Create a new directory called plugins in your admin-folder (if it yet does not exist)
- Extract the zip and open the file import_imagefolio.php
- At the top you will find the configuration part. Edit this part according to your requirements. You will find an explanation there for each part
- Copy the file import_imagefolio.php to the plugins-directory
- Log in to your Control Panel, a new link should appear in the left navigation frame beneath "PlugIns"
- Click it an have fun


Download: import_imagefolio.zip

---------------------------------------------------------------------------------
If someone is looking for an import-script for the Basic Edition and has a running version installed, please contact me.

39
Plugins / [Plugin] Rebuild Search Index v1.0.1
« on: July 19, 2002, 09:32:29 AM »
Rebuild Search Index (Suchindex neu erstellen)

Installation:

- Erstelle ein neues Verzeichnis plugins im admin Ordner
- Entpacke das zip und kopiere die Datei rebuild_searchindex.php in das neue plugins-Verzeichnis
- Logge Dich ins Control Panel ein, in der linken Navigation sollte eine neuer Menüpunkt erscheinen
- Draufklicken und Spass haben
---------------------------------------------------------------------------------
- Create a new directory called plugins in your admin-folder
- Extract the zip and copy the file rebuild_searchindex.php to the new plugins-directory
- Log in to your Control Panel, a new link should appear in the left navigation frame
- Click it an have fun

Download:See attachment below

40
Templates & Styles (Requests & Discussions) / Buttons
« on: July 19, 2002, 07:41:57 AM »
Blank


Font: Verdana, Bold, 9px


Lightbox












Misc








header_logo.gif blank


41
News & Announcements / 4images 1.6.1
« on: July 10, 2002, 03:38:04 PM »
Die neue Version 1.6.1 steht nun zum Download bereit und enthält einige Bugfixes:
  • Bugs in search.php gefixt

  http://www.4homepages.de/forum/viewtopic.php?t=839
  http://www.4homepages.de/forum/viewtopic.php?t=840
  • Bugfix bei der Suche mit "AND"
  • Bug beim Upload von mehreren verschiedenen Dateien über das CP gefixt
  • Sprachausgabe gefixt wenn Account-Aktivierung abgeschaltet ist
  • Bildbeschreibung erlaubt wieder HTML-Code
  • Bugfix bei der Überprüfung der Dateigröße bei Bilderupload
  • Bugfix beim Auslesen der Bildgröße und der IPTC-Tags
  • Bugfix beim Parsen der Email-Templates
  • Bugfix beim Verkleinern von Thumbnails
  • Bugfix bei "Check new images" bei Hinzufügen aus dem media-Verzeichnis[/list:u]Genaue Instruktionen zum Update gibts wie immer in der Installation.txt. Beim Update von Version 1.6 ist kein Update-Script notwendig.


    Geänderte Dateien (zur Version 1.6):
    ---------------------------------------
    • includes/functions.php
    • includes/upload.php
    • includes/email.php
    • includes/db_utils.php
    • includes/constants.php
    • search.php
    • member.php
    • admin/admin_global.php
    • admin/admin_functions.php
    • admin/images.php
    • admin/resizer.php[/list:u]

      Neue oder geänderte Teile in den Sprachdateien (zur Version 1.6):
      ---------------------------------------
      • main.php
        • gesplittet: $lang['edit_profile_msg'] zu $lang['edit_profile_msg'] und $lang['edit_profile_email_msg'][/list:u][/list:u]

          -------------------------------------------------------------------------------------

          The new version 1.6.1 is now available and includes several bug-fixes:
          • Bugs in search.php fixed

            http://www.4homepages.de/forum/viewtopic.php?t=839
            http://www.4homepages.de/forum/viewtopic.php?t=840
        • Bugfix concerning searching with "AND"
        • Fixed bug when uploading more than one file throug the CP
        • FIxed language issues when account activation is disabled
        • Image description accepts again HTML-Code
        • Fixed file size checking during upload
        • Fixed parsing IPTC-Tags and image size
        • Fixed parsing email templates
        • Fixed thumbnail resizing
        • Fixed image copying when adding with "Check new images" from the media directory[/list:u]For further informations and update instructions, see Installation.txt. There is no need to run an update script when updating from version 1.6.


          Files changed (from Version 1.6):
          ---------------------------------------
          • includes/functions.php
          • includes/upload.php
          • includes/email.php
          • includes/db_utils.php
          • includes/constants.php
          • search.php
          • member.php
          • admin/admin_global.php
          • admin/admin_functions.php
          • admin/images.php
          • admin/resizer.php[/list:u]

            New or changed parts in the language files (from Version 1.6):
            ---------------------------------------
            • main.php
              • splitted: $lang['edit_profile_msg'] to $lang['edit_profile_msg'] and $lang['edit_profile_email_msg'][/list:u][/list:u]

42
News & Announcements / 4images 1.6 Patch
« on: June 28, 2002, 06:36:07 PM »
Wir haben einen Patch für die Bugs die hier gemeldet wurden

http://www.4homepages.de/forum/viewtopic.php?t=839
http://www.4homepages.de/forum/viewtopic.php?t=840

und einen weiteren Bug den Upload von mehereren Dateien in verschiedene Kategorien über das Control Panel betreffend.

Einfach die bestehenden Dateien mit denen aus dem zip überschreiben.

------------------------------------------

We have a patch available who fixes the bugs reported here:

http://www.4homepages.de/forum/viewtopic.php?t=839
http://www.4homepages.de/forum/viewtopic.php?t=840

and a bug concerning uploading more than one file to different categories in the Control Panel.

Just replace the old files with the new in the zip file.


Jan Sorgalla

43
News & Announcements / 4images 1.6 (English)
« on: June 27, 2002, 09:30:22 AM »
4images 1.6 includes several bug-fixes and a few new functions:
  • Bugfix for download.php with Safe Mode enabled
  • Users can choose now if they want receive emails from the Administrator
  • Administrators can enable/disable account activation by email after registration
  • Users can search now by usernames
  • Individual permissions for each user
  • Easier integration of new database fields to store more user informations  (see "includes/db_field_definitions.php")
  • URL image and download url fields accepts now relative pathes
  • Auto-Thumbnailer for user upload
  • Optimizations concerning search index[/list:u]
    We recommend you to replace ALL (see Installtions.txt) files, but it is not neccessary. Below you will find a detailed list of new/changed files.


    Files changed (from Version 1.5):
    ---------------------------------------
    • includes/constants.php
    • includes/db_field_definitions.php
    • includes/db_mysql.php
    • includes/db_utils.php
    • includes/email.php
    • includes/functions.php
    • includes/search_utils.php
    • includes/sessions.php
    • includes/template.php
    • includes/upload.php
    • includes/upload_definitions.php  
    • download.php
    • global.php
    • lightbox.php
    • login.php
    • member.php
    • postcards.php
    • register.php
    • search.php
    • admin/admin_functions.php
    • admin/admin_global.php
    • admin/backup.php
    • admin/categories.php
    • admin/checkimages.php
    • admin/email.php
    • admin/home.php
    • admin/images.php
    • admin/resizer.php
    • admin/settings.php
    • admin/thumbnailer.php
    • admin/usergroups.php
    • admin/users.php
    • admin/validateimages.php[/list:u]
      New files (from Version 1.5):
      ---------------------------------------
      • includes/image_utils.php[/list:u]
        New or changed parts in the language files (from Version 1.5):
        ---------------------------------------
        • admin.php
          • new: $setting['account_activation']
          • new: $setting['auto_thumbnail']
          • new: $setting['auto_thumbnail_dimension']
          • new: $setting['auto_thumbnail_quality']
          • changed: $setting['im_convert_path'] to $setting['convert_tool_path'][/list:u]

             
          • main.php
            • new: $lang['allow_admin_emails']
            • new: $lang['search_by_username']
            • merged: $lang['keyword'] and $lang['search_desc'] to $lang['search_by_keyword'][/list:u][/list:u]
              Templates changed (from Version 1.5):
              ---------------------------------------
              • search_form.html
                • Name of the "search_field" radios are changed
                • New textfield for searching by usernames[/list:u]
                • member_editprofile.html
                  • New row for enabling/disabling email notifications from admins[/list:u]
                  • member_profile.html
                    • Fixed typo: tarbet -> target[/list:u][/list:u]

44
News & Announcements / 4images 1.6
« on: June 27, 2002, 01:03:11 AM »
-> English version

Die neue Version 1.6 enthält verschieden Bug-fixes und ein paar neue Funktionen:
  • Bugs beim Download von Medien mit aktiviertem Safe Mode gefixt
  • User können wählen ob Sie Emails von den Administratoren empfangen wollen
  • Administratoren können nun einstellen, ob User nach der Registrierung

  Ihren Account per Email aktivieren müssen
  • In der Suchmaske kann jetzt auch nach Usernamen gesucht werden
  • Individuelle Befugnisse für jeden User
  • Leichtes Hinzufügen von neuen User-Feldern (siehe "includes/db_field_definitions.php")
  • URL Felder bei Bildern und Download URL akzeptieren relative Pfade
  • Automatische Thumbnailerstellung bei User-Uploads
  • Optimierung bezüglich des Suchindex[/list:u]
    Wir empfehlen ALLE Dateien zu ersetzen (siehe Installation.txt), dies ist aber nicht unbedingt notwendig. Nachfolgend gibt es eine detaillierte Auflistung welche Dateien ersetzt werden müssen bzw. geändert wurden.


    Geänderte Dateien (zur Version 1.5):
    ---------------------------------------
    • includes/constants.php
    • includes/db_field_definitions.php
    • includes/db_mysql.php
    • includes/db_utils.php
    • includes/email.php
    • includes/functions.php
    • includes/search_utils.php
    • includes/sessions.php
    • includes/template.php
    • includes/upload.php
    • includes/upload_definitions.php  
    • download.php
    • global.php
    • lightbox.php
    • login.php
    • member.php
    • postcards.php
    • register.php
    • search.php
    • admin/admin_functions.php
    • admin/admin_global.php
    • admin/backup.php
    • admin/categories.php
    • admin/checkimages.php
    • admin/email.php
    • admin/home.php
    • admin/images.php
    • admin/resizer.php
    • admin/settings.php
    • admin/thumbnailer.php
    • admin/usergroups.php
    • admin/users.php
    • admin/validateimages.php[/list:u]
      Neue Dateien (zur Version 1.5):
      ---------------------------------------
      • includes/image_utils.php[/list:u]
        Neue oder geänderte Teile in den Sprachdateien (zur Version 1.5):
        ---------------------------------------
        • admin.php
          • neu: $setting['account_activation']
          • neu: $setting['auto_thumbnail']
          • neu: $setting['auto_thumbnail_dimension']
          • neu: $setting['auto_thumbnail_quality']
          • geändert: $setting['im_convert_path'] zu $setting['convert_tool_path'][/list:u]

             
          • main.php
            • neu: $lang['allow_admin_emails']
            • neu: $lang['search_by_username']
            • zusammengefasst: $lang['keyword'] und $lang['search_desc'] zu $lang['search_by_keyword'][/list:u][/list:u]
              Geänderte Templates (zur Version 1.5):
              ---------------------------------------
              • search_form.html
                • Name der "search_field" Radios geändert
                • Neues Textfeld für die Suche nach Usernamen[/list:u]
                • member_editprofile.html
                  • Zeile hinzugefügt für die Einstellung ob der User Emails vom Admin erhalten will[/list:u]
                  • member_profile.html
                    • Schreibfehler: tarbet zu target[/list:u][/list:u]

45
News & Announcements / 4images 1.5 Final
« on: June 04, 2002, 07:10:59 PM »
4images 1.5 Final ist ab heute erhältlich. Es wurde einige Bugs entfernt und der Code noch einmal optimiert.

Bei einem Update von der Version 1.5 Beta ist kein Update-Script notwendig. Es müssen lediglich alle Programmdateien mit den neuen ersetzt werden. Es wurden keine Änderungen an den Templates durchgeführt diese müssen also nicht unbedingt mit den neuen ersetzt werden.
Für genaue Informationen bitte die Installation.txt lesen.

-----------------------------
4images 1.5 Final is now available. Some bugs are fixed. No need to run any Update-Script to update from Version 1.5 Beta. Just replace your old files with the files of the new version.
Template files are not changed since 1.5 Beta. If you want you can use your old templates.
For further informations see Installation.txt.


Jan Sorgalla

Pages: 1 2 [3] 4