| Autor |
Nachricht |
stefan
Administrator


Anmeldungsdatum: 01.08.2002
Beiträge: 4735
Wohnort: Aachen
|
Verfasst am:
Sa 23 Dez, 2006 23:09 |
  |
phpBB 2.0.22 released !
phpBB 2.0.22 was released today by the phpBB Group. This release addresses several bugfixes and some security issues. Language pack authors may note that one additional language variable had been added.
It is important that you carry out both parts of the update - updating the files and running the database update script - for updates to be complete.
What has changed in this release?
The changelog (contained within this release) is as follows:
- [Fix] Check for user's existence prior to showing email form
- [Fix] New members of moderator groups should always become moderators (Bug #382)
- [Fix] Proper message when replying to non-existant topics (Bug #459)
- [Fix] Changed column type of search_array to store more ids (Bug #4058)
- [Fix] Fixed annoyance with font-size selector (Bug #4612)
- [Fix] Fix optimize line in database updater (Bug #6186)
- [Sec] Check for the avatar upload directory reinforced
- [Sec] Changes to the criteria for "bad" redirection targets - kellanved
- [Sec] Fixed a non-persistent XSS issue in private messaging
- [Sec] Fixing possible negative start parameter - SpiderZ.
- [Sec] Added session checks to various forms - kellanved
phpBB 2.0.22 Full Package
phpBB 2.0.22 Updated Files only
phpBB 2.0.22 Patch File
phpBB 2.0.21 to phpBB 2.0.22 Code Changes
phpBB2 Plus 1.53a Core Code Changes to phpBB 2.0.22 Code
phpBB 2.0.22 incl. deutschen Sprachfiles und Grafiken |
_________________ Bye
Stefan
Styles Demo Forum :: Download Database :: phpBB2 Plus 1.5x Demo
phpBB2 Toplist :: International phpBB2 Support
Anwesend - Back in Business
Kein Support per PM - No Support via PM
Zuletzt bearbeitet von stefan am Di 26 Dez, 2006 16:51, insgesamt 2-mal bearbeitet |
|
      |
 |
Google
|
Verfasst am:
|
 |
|
|
 |
coolsoft
phpBB2.de User


Anmeldungsdatum: 09.11.2005
Beiträge: 5498
Wohnort: deep in the south (G)
|
Verfasst am:
Sa 23 Dez, 2006 23:34 |
  |
|
    |
 |
Sir_Adavis
phpBB2.de User

Anmeldungsdatum: 29.01.2005
Beiträge: 183
|
Verfasst am:
Mo 25 Dez, 2006 14:54 |
  |
Someone tell us if coolsoft is right to do the changes... |
|
|
   |
 |
coolsoft
phpBB2.de User


Anmeldungsdatum: 09.11.2005
Beiträge: 5498
Wohnort: deep in the south (G)
|
Verfasst am:
Mo 25 Dez, 2006 15:11 |
  |
|
    |
 |
EwaldB
phpBB2.de User


Anmeldungsdatum: 13.08.2002
Beiträge: 691
|
Verfasst am:
Mo 25 Dez, 2006 18:01 |
  |
Für eine Step-by-step Anleitung für Plus User wäre sicher nicht nur ich dankbar Kann uns die bitte jemand bereit stellen?
Der Link von coolsoft ist jetzt nur begrenzt hilfreich. |
_________________ Liebe Grüße,
EwaldB |
|
     |
 |
coolsoft
phpBB2.de User


Anmeldungsdatum: 09.11.2005
Beiträge: 5498
Wohnort: deep in the south (G)
|
Verfasst am:
Mo 25 Dez, 2006 18:09 |
  |
|
    |
 |
Blisk
phpBB2.de User

Anmeldungsdatum: 27.11.2003
Beiträge: 994
Wohnort: sLOVEnia
|
Verfasst am:
Mo 25 Dez, 2006 19:36 |
  |
Can someone help me with this lines.
first search.php
| Code: |
#-----[ FIND ]---------------------------------------------
# Line 117
$topic_days = 0;
}
$start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) : 0;
#
#-----[ AFTER, ADD ]---------------------------------------------
#
$start = ($start < 0) ? 0 : $start; |
and with this
| Code: |
templates/subSilver/posting_body.tpl
#
#-----[ FIND ]---------------------------------------------
# Line 370
</select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
#
#-----[ REPLACE WITH ]---------------------------------------------
#
</select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.selectedIndex=0;" onMouseOver="helpline('f')">
<option value="0" class="genmed">{L_FONT_SIZE}</option>
|
at last one there is no line like this.
| Code: |
viewtopic.php
#
#-----[ FIND ]---------------------------------------------
# Line 44
$post_id = intval($HTTP_GET_VARS[POST_POST_URL]);
}
$start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) : 0;
#
#-----[ AFTER, ADD ]---------------------------------------------
#
$start = ($start < 0) ? 0 : $start;
|
this line was at very differend place so I jsut puted behind last line. |
|
|
    |
 |
coolsoft
phpBB2.de User


Anmeldungsdatum: 09.11.2005
Beiträge: 5498
Wohnort: deep in the south (G)
|
Verfasst am:
Mo 25 Dez, 2006 19:48 |
  |
|
    |
 |
stefan
Administrator


Anmeldungsdatum: 01.08.2002
Beiträge: 4735
Wohnort: Aachen
|
Verfasst am:
Di 26 Dez, 2006 16:53 |
  |
|
      |
 |
Jetlag
phpBB2.de User

Anmeldungsdatum: 31.07.2004
Beiträge: 129
Wohnort: Gone
|
Verfasst am:
Di 26 Dez, 2006 22:02 |
  |
Im using note & wordpad and im seeing errors from 1.53a Core Code Changes.
open
includes/usercp_register.php
| Code: |
#-----[ AFTER, ADD ]---------------------------------------------
#
// session id check
if ($sid == '' || $sid != $userdata['session_id'])
{
$error =粑true;
$error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Session_invalid'];
}
#
|
$error =?true; |
|
|
   |
 |
coolsoft
phpBB2.de User


Anmeldungsdatum: 09.11.2005
Beiträge: 5498
Wohnort: deep in the south (G)
|
Verfasst am:
Di 26 Dez, 2006 22:08 |
  |
|
    |
 |
Cyberraptor101
phpBB2.de User


Anmeldungsdatum: 12.01.2004
Beiträge: 144
|
Verfasst am:
Di 26 Dez, 2006 22:59 |
  |
|
        |
 |
Jetlag
phpBB2.de User

Anmeldungsdatum: 31.07.2004
Beiträge: 129
Wohnort: Gone
|
Verfasst am:
Mi 27 Dez, 2006 02:37 |
  |
| coolsoft hat folgendes geschrieben: |
| use a better texteditor like ultraedit, textedit or sth. like that |
I just like note because its simple and free. Just warning people because you wont see any new members. |
|
|
   |
 |
Reliable
Support Team Member


Anmeldungsdatum: 28.11.2003
Beiträge: 2815
Wohnort: New York, USA
|
Verfasst am:
Do 28 Dez, 2006 06:13 |
  |
Jetlag,
You could use Notepad++, it's free and you could use it to replace the default notepad. I use it and it's very reliable for coding.
http://notepad-plus.sourceforge.net/uk/site.htm |
_________________ "Love is a feeling and a choice; a feeling when things are smooth, and a choice when things are rough."
No support via PM |
|
        |
 |
EwaldB
phpBB2.de User


Anmeldungsdatum: 13.08.2002
Beiträge: 691
|
Verfasst am:
Mo 01 Jan, 2007 11:44 |
  |
Ich erhalte folgende Fehlermeldungen, wenn ich versuche die update to latest.php auszuführen. Wo liegt hier eigentlich der Fehler? Warum findet er die Pfade nicht?
Danke Euch für Eure Hilfe und noch ein schönes Neues Jahr!
| Code: |
Warning: main(./../extension.inc) [function.main]: failed to open stream: No such file or directory in /pages/d4/ba/d0004850/home/htdocs/line6forum/phpBB2/update_to_latest.php on line 46
Warning: main(./../extension.inc) [function.main]: failed to open stream: No such file or directory in /pages/d4/ba/d0004850/home/htdocs/line6forum/phpBB2/update_to_latest.php on line 46
Warning: main() [function.include]: Failed opening './../extension.inc' for inclusion (include_path='.:/usr/lib/php') in /pages/d4/ba/d0004850/home/htdocs/line6forum/phpBB2/update_to_latest.php on line 46
Warning: main(./../config.) [function.main]: failed to open stream: No such file or directory in /pages/d4/ba/d0004850/home/htdocs/line6forum/phpBB2/update_to_latest.php on line 47
Warning: main(./../config.) [function.main]: failed to open stream: No such file or directory in /pages/d4/ba/d0004850/home/htdocs/line6forum/phpBB2/update_to_latest.php on line 47
Warning: main() [function.include]: Failed opening './../config.' for inclusion (include_path='.:/usr/lib/php') in /pages/d4/ba/d0004850/home/htdocs/line6forum/phpBB2/update_to_latest.php on line 47
Please read: INSTALL.html before attempting to update. |
|
_________________ Liebe Grüße,
EwaldB |
|
     |
 |
|
|
|
|