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
1
News & Announcements / 4images 1.7.6
« on: February 05, 2008, 12:09:44 PM »
Die neue Version 1.7.6 wurde soeben veröffentlicht. Dies Release bietet neuen Funktionen sowie Detailverbesserungen und behebt kleinerere Fehler.
Wir empfehlen allen Nutzern ein Update auf die aktuelle Version. Alle Änderungen und Features sind in der Datei "docs/Changelog.txt" aufgelistet.

The new version 1.7.6 has just been released. This release comes with lots of improvements, bugfixes and minor changes.
We recommend all users to update to the current version. All changes and features are listed in "docs/Changelog.txt".

Download:
http://www.4homepages.de/4images/download.php

Demo:
http://www.4homepages.de/4images/demo.php


Für Feedback zur 4images 1.7.6 Version bitte diesen Thread nutzen.

Please use this thread for feedback about the 4images 1.7.6 version.

2
News & Announcements / 4images 1.7.5
« on: January 30, 2008, 01:39:00 PM »
Die neue Version 1.7.5 wurde soeben veröffentlicht. Dies ist ein Bugfix-Release und schließt alle bekannten Sicherheitslücken und Bugs.
Wir empfehlen allen Nutzern ein Update auf die aktuelle Version. Alle Änderungen und Features sind in der Datei "docs/Changelog.txt" aufgelistet.

The new version 1.7.5 has just been released. This is a bugfix-release and fixes all known security issues and bugs.
We recommend all users to update to the current version. All changes and features are listed in "docs/Changelog.txt".

Download:
http://www.4homepages.de/4images/download.php

Demo:
http://www.4homepages.de/4images/demo.php


Für Feedback zur 4images 1.7.5 Version bitte diesen Thread nutzen.

Please use this thread for feedback about the 4images 1.7.5 version.

3
News & Announcements / 4images 1.7.4
« on: October 23, 2006, 03:30:23 PM »
Die neue Version 1.7.4 wurde soeben veröffentlicht. Dies ist ein Bugfix-Release und schließt alle bekannten Sicherheitslücken und Bugs.
Wir empfehlen allen Nutzern ein Update auf die aktuelle Version. Alle Änderungen und Features sind in der Datei "docs/Changelog.txt" aufgelistet.

The new version 1.7.4 has just been released. This is a bugfix-release and fixes all known security issues and bugs.
We recommend all users to update to the current version. All changes and features are listed in "docs/Changelog.txt".

Download:
http://www.4homepages.de/4images/download.php

Demo:
http://www.4homepages.de/4images/demo.php


Für Feedback zur 4images 1.7.4 Version bitte diesen Thread nutzen.

Please use this thread for feedback about the 4images 1.7.4 version.

4
Security fix for Cross-Site Scripting Vulnerability

Open global.php and search for

Code: [Select]
$mode = (isset($HTTP_POST_VARS['mode'])) ? stripslashes(trim($HTTP_POST_VARS['mode'])) : stripslashes(trim($HTTP_GET_VARS['mode']));in Version 1.7.2 and 1.7.3 or
Code: [Select]
$mode = (isset($HTTP_GET_VARS['mode'])) ? stripslashes(trim($HTTP_GET_VARS['mode'])) : stripslashes(trim($HTTP_POST_VARS['mode']));in Version 1.7.1 and 1.7.

Add the following line below

Code: [Select]
$mode = preg_replace("/[^a-z0-9]+/i", "", $mode);

5
This is an important security fix.

Replace the two lines in global.php (version 1.7.2 and 1.7.3) or search.php (all versions < 1.7.2):

Replace

Code: [Select]
$search_keywords = (isset($HTTP_POST_VARS['search_keywords'])) ? trim($HTTP_POST_VARS['search_keywords']) : urldecode(trim($HTTP_GET_VARS['search_keywords']));
with

Code: [Select]
$search_keywords = (isset($HTTP_POST_VARS['search_keywords'])) ? trim($HTTP_POST_VARS['search_keywords']) : trim($HTTP_GET_VARS['search_keywords']);
Replace

Code: [Select]
$search_user = (isset($HTTP_POST_VARS['search_user'])) ? trim($HTTP_POST_VARS['search_user']) : urldecode(trim($HTTP_GET_VARS['search_user']));
with

Code: [Select]
$search_user = (isset($HTTP_POST_VARS['search_user'])) ? trim($HTTP_POST_VARS['search_user']) : trim($HTTP_GET_VARS['search_user']);

6
To all Template Developers:

We would appreciate if you update your templates to make it compatible with version the current version.

You'll find a full list of what changed from version to version in the threads listed here:
http://www.4homepages.de/forum/index.php?board=1.0

7
Feedback & Suggestions / 4images 1.7.3 - Feedback
« on: July 18, 2006, 05:05:08 PM »
Bitte nutzt diesen Thread für Feedback, Kommentare und Anregungen zum 4images 1.7.3 Release.
Für Bug Reports und Troubleshooting bitte dieses Forum nutzen.

Please use this thread for feedback and comments about the 4images 1.7.3 release.
For bug reporting and troubleshooting please use this forum.

8
News & Announcements / 4images 1.7.3
« on: July 18, 2006, 05:00:22 PM »
Die neue Version 1.7.3 wurde soeben veröffentlicht und enthält ein paar neue Features und einige Bugfixes sowie alle Sicherheitsfixes.
Neue Features sind unter anderem RSS-Feeds und CAPTCHA-Schutz für Formulare (Kommentare, Registrierung etc.).
Wir empfehlen allen Nutzern ein Update auf die aktuelle Version. Alle Änderungen und Features sind in der Datei "docs/Changelog.txt" aufgelistet.

The new version 1.7.3 has just been released and contains a few new features and a lot of bugfixes as well as all security fixes.
New features are RSS-Feeds and CAPTCHA-Protection for Forms (Comments, Registration etc.).
We recommend all users to update to the current version. All changes and features are listed in "docs/Changelog.txt".

Download:
http://www.4homepages.de/4images/download.php

Demo:
http://www.4homepages.de/4images/demo.php


Für Feedback zur 4images 1.7.3 Version bitte diesen Thread nutzen.

Please use this thread for feedback about the 4images 1.7.3 version.

9
Language Packs / [Language] Spanish Language Files (Version 1.7.3)
« on: July 18, 2006, 04:42:24 PM »
Spanish Language Files (Version 1.7.3).
Thanks to benzo.

Download

10
This is an important security fix.

Open includes/sessions.php and find the following line:

Code: [Select]
$this->session_id = session_id();
replace this line with the following code:

Code: [Select]
$this->session_id = preg_replace('/[^a-z0-9]+/i', '', session_id());

11
News & Announcements / 4images 1.7.2
« on: March 02, 2006, 02:59:49 PM »
Die neue Version 1.7.2 wurde soeben veröffentlicht und enthält ein paar neue Features und einige Bugfixes sowie alle Sicherheitsfixes. Wir empfehlen allen Nutzern ein Update auf die aktuelle Version. Alle Änderungen und Features sind in der Datei "docs/Changelog.txt" aufgelistet.

The new version 1.7.2 has just been released and contains a few new features and a lot of bugfixes as well as all security fixes. We recommend all users to update to the current version. All changes and features are listed in "docs/Changelog.txt".

http://www.4homepages.de/4images/download.php

12
Bug Fixes & Patches / [1.7 / 1.7.1] Security fix in sessions.php
« on: June 07, 2005, 11:17:51 AM »
This is an important security fix.

Open includes/sessions.php and find the following line:

Code: [Select]
$user_id = ($this->read_cookie_data("userid")) ? $this->read_cookie_data("userid") : GUEST;
replace this line with the following code:

Code: [Select]
$user_id = ($this->read_cookie_data("userid")) ? intval($this->read_cookie_data("userid")) : GUEST;

13
News & Announcements / 4images 1.7.1
« on: March 14, 2005, 04:00:32 PM »
Post re-added

Die neue Version 1.7.1 wurde soeben veröffentlicht und enthält ein paar neue Features und einige Bugfixes. Zu den neuen Features gehört unter anderem ein internes Caching System. Detaillierte Informationen dazu gibts in der Datei "docs/Cache.deutsch.txt" in der Download-Datei.
Alle Änderungen und Features sind in der Datei "docs/Changelog.txt" aufgelistet.

The new version 1.7.1 has just been released and contains a few new features and a lot of bugfixes. One of the new features is a internal caching system. Detailled informations can be found in "docs/Cache.english.txt" in the download-file.
All changes and features are listed in "docs/Changelog.txt".

http://www.4homepages.de/4images/download.php


Hinweis für Entwickler und Benutzer von Template-Packs:
Das einzige Template welches geändert wurde, ist member_uploadform.html um einen Bug zu fixen.
Template-Packs sollten aktualisiert werden indem in dieser Datei die Zeile

Code: [Select]
<input type="hidden" name="cat_id" value="{cat_id}" />

zu

Code: [Select]
{if cat_id}<input type="hidden" name="cat_id" value="{cat_id}" />{endif cat_id}

geändert wird.

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

Note for developers and users of templates packs:
The only changed template is member_uploadform.html to fix a bug.
You should update your template packs changing the following line in this file from

Code: [Select]
<input type="hidden" name="cat_id" value="{cat_id}" />

to

Code: [Select]
{if cat_id}<input type="hidden" name="cat_id" value="{cat_id}" />{endif cat_id}


Hinweis für Entwickler und Benutzer von "Integrationen" (phpBB, vBulletin):
In der Datei sessions.php wurden einige Änderungen vorgenommen. Um "Integrationen" mit der Version 1.7.1 kompatibel zu machen, muss aber lediglich die Zeile

Code: [Select]
"user_online_list" => $user_online_list

durch

Code: [Select]
"user_online_list" => $user_online_list,
"lang_user_online" => str_replace('{num_total_online}', $num_total_online, $lang['user_online']),
"lang_user_online_detail" => str_replace(array('{num_registered_online}','{num_invisible_online}','{num_guests_online}'), array($num_registered_online,$num_invisible_online,$num_guests_online), $lang['user_online_detail']),


ersetzt werden.

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

Note for developers and users of "integrations" (phpBB, vBulletin):
There are some changes in sessions.php. To make "integrations" compatible to version 1.7.1, you only have to change the line

Code: [Select]
"user_online_list" => $user_online_list

to

Code: [Select]
"user_online_list" => $user_online_list,
"lang_user_online" => str_replace('{num_total_online}', $num_total_online, $lang['user_online']),
"lang_user_online_detail" => str_replace(array('{num_registered_online}','{num_invisible_online}','{num_guests_online}'), array($num_registered_online,$num_invisible_online,$num_guests_online), $lang['user_online_detail']),

14
Plugins / [Plugin] Rebuild Search Index v1.1.1
« on: March 14, 2005, 10:08:57 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: rebuild_searchindex.zip  attachment

15
Feedback & Suggestions / New forum software
« on: March 10, 2005, 11:03:59 AM »
Bitte postet hier Anmerkungen und Verbesserungsvorschläge zur neuen Forum-Software.
---
Please post any comments and suggestions how to improve the new forum software here.

Jan

Pages: [1] 2 3 4