Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support

IPBSupport News

Mitglied
  • Content count

    891
  • Joined

  • Last visited

Posts posted by IPBSupport News


  1. Ein gibt neues Sicherheitsupdate für die Version 1.3, sollte aber auch für Version 1.1.x und 1.2 gelten. Bei den älteren Versionen sollte man jedoch die Änderung per Hand einbauen. Die entsprechende Stelle wird unten genau beschrieben.

    Weitere Infos im Originalbeitrag von Matt findet ihr hier.

    Einfach die alte Search.php durch die neue Version ersetzen.

    Downloadlink

    Für alle, die Änderungen bzw. Modifikationen eingebaut haben, einfach folgende Stelle suchen

       	 $this->lib = new search_lib(&$this);
    
    
       	 if (isset($ibforums->input['st']) )
    
       	 {
    
          $this->first = $ibforums->input['st'];
    
       	 }
    und durch folgendes ersetzen
       	 $this->lib = new search_lib(&$this);
    
    
       	 $ibforums->input['st'] = intval($ibforums->input['st']);
    
    
       	 if ( $ibforums->input['st'] )
    
       	 {
    
          $this->first = $ibforums->input['st'];
    
       	 }
    
       	 

    Vorheriges Securityupdate:

    ssi.php (Feb 19 2004)


  2. Matt schrieb:

    It has come to our attention that there may be a small exploit in "ssi.php" which is distributed as part of the IPB 1.x download.

    The main update package has been updated and all you need to do in order to update your board is download the attached file, unzip it and upload "ssi.php" to your board installation overwriting the copy on the server.

    The attached file is for IPB 1.3 but should work with all 1.x versions.

    Hier geht's zum Topic und download der ssi.php, die Ihr auswechseln solltet.


  3. Neuerungen auf IPBSupport: IRC Chat

    Hallo liebe treue Boardgemeinde :)

    wir haben uns nun dazu entschlossen einen Chatraum für Euch bereit zu stellen, allerdings möchten wir nochmal ausdrücklich darauf hinweisen das dieser Chatraum nicht dazu da ist, daß man sofort Support erhält bzw. Supportanfragen stellt, sondern das ganze ist dazu gedacht das man auch neben dem Support evtl. über dies und das nett plaudern kann etc. ;)

    Invisionboard Support gibt es weiterhin ausschliesslich nur im Forum. Dies hat unter anderem den Grund das es eben anderen Hilfesuchenden nichts bringt wenn man im Chanel Supportet, da diese es ja schliesslich nirgendswo nachlesen können usw.

    Wir hoffen das wir einigen damit einen kleinen Gefallen getan haben :)

    Hier mal die Daten für unseren IRC Channel:

    Server irc.euirc.net

    Channel #ipbsupport

    Port 6660-6667

    Auf http://www.mirc.com könnt Ihr Euch den aktuellen mIRC Client herunter laden.

    Alternativ könnt Ihr natürlich auch über ein applet den Chatraum joinen, dazu dann einfach nur ein "Mausklick" oben auf den "Chat" Link :D

    Also joint den Chan und habt Spaß :D


  4. Und hier noch die Änderung im Detail.

    Betroffen ist die Datei, wie oben erwähnt, calendar.php im Verzeichnis sources.

    Folgende Stelle

            $this->chosen_month = ( ! intval($ibforums->input['m']) ) ? $this->now_date['mon']  : $ibforums->input['m'];
    
            $this->chosen_year  = ( ! intval($ibforums->input['y']) ) ? $this->now_date['year'] : $ibforums->input['y'];
    ersetzen durch
            $this->chosen_month = ( ! intval($ibforums->input['m']) ) ? $this->now_date['mon']  : intval($ibforums->input['m']);
    
            $this->chosen_year  = ( ! intval($ibforums->input['y']) ) ? $this->now_date['year'] : intval($ibforums->input['y']);

    Das waren schon alle Änderungen, sieht man vom Headerkommentar ab. :)


  5. An update has been prepared to ensure security and safety of your Invision Power Board.

    We have received notification of a minor issue that although require some URL crafting and a specific version of MySQL in use to occur but we feel it's always best to address any and all issues to ensure the very best security.

    The update is very simple to apply, simply go to the download center and download the " 1.3 Security Patch 02-01-04" package, unzip and upload "sources/calendar.php" overwriting the copy on your installation.

    The main download files have been updated.

    Quelle: Invisionpower.com

    Download: Link


  6. Die einzelnen Änderungen im Detail für Leute, die Modifikationen drin haben.

    functions.php

    Suchen:

        /*-------------------------------------------------------------------------*/
    
        // Makes incoming info "safe"              
    
        /*-------------------------------------------------------------------------*/
    
        
    
        function parse_incoming()
    
        {
    
       	 global $HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_CLIENT_IP, $REQUEST_METHOD, $REMOTE_ADDR, $HTTP_PROXY_USER, $HTTP_X_FORWARDED_FOR;
    
       	 $return = array();
    
       	 
    
      if( is_array($HTTP_GET_VARS) )
    
      {
    
     	 while( list($k, $v) = each($HTTP_GET_VARS) )
    
     	 {
    Direkt darunter einfügen:
        if ( $k == 'INFO' )
    
        {
    
       	 continue;
    
        }
    
        
    Forums.php Suchen:
    if ( (!isset($sort_keys[$sort_key])) and (!isset($prune_by_day[$prune_value])) and (!isset($sort_by_keys[$sort_by])) )
    
      {
    
          $std->Error( array( LEVEL=> 5, MSG =>'incorrect_use') );
    
         }
    Ersetzen mit:
      if ( (!isset($sort_keys[$sort_key])) or (!isset($prune_by_day[$prune_value])) or (!isset($sort_by_keys[$sort_by])) )
    
      {
    
          $std->Error( array( LEVEL=> 5, MSG =>'incorrect_use') );
    
         }

    Ansonsten hat sich laut WinMerge nur der Kommentarheader geändert. :)


  7. An update has been prepared to ensure security and safety of your Invision Power Board.

    We have received notification of two minor issues that although require some URL crafting and a specific set of circumstances to occur we feel it's always best to address any and all issues to ensure the very best security.

    The update is very simple to apply, simply go to the download center and download the "IPB 1.3 Security Update 12-16 (1.3)" package, unzip and upload "sources/functions.php" and "sources/Forums.php" overwriting the copies on your installation.

    The main download files have been updated.

    Download Center

    My thanks to those that contacted us in private about these issues.

    -> Ladet das Update herunter und ersetzt mit den enthaltenen Dateien die entsprechenden Eures Forums.


  8. Übersetzung der Ankündigung:

    Wir freuen uns, zeigen zu können, wie weit wir mit der nächsten Generation unserer Forum Software fortgeschritten sind. Wir haben auf das stabile Fundament, dass wir mit der 1.0 Version des Forums erschaffen haben, aufgebaut, um die Funktionen zu realisieren, die wir schon immer schaffen wollten.

    Invision Power Board 2.0 ist bereits heute kompatibel zu PHP5.0, um sicher zu stellen, dass der Code aufwärts-kompatibel bleibt. Das Forum wird natürlich weiterhin  auf jeder PHP Version > 4.1 lauffähig sein. Unter der Haube haben große Veränderungen stattgefunden. Eine wiederverwendbarere Struktur wurde geschaffen und redundanter Code entfernt.

    Es gibt viele neue Features und Add-Ons, hier die bisher wichtigsten:

    Unbeschränkte Anzahl Unterforen

    Dieses von vielen gewünschte Feature ist bereits fertig.

    Es ist einer der größten Veränderungen in v2.0 und der daraus resultierende neue Code ist so effizient, dass v2.0 sogar mit den neuen Features schneller ist als v1.3!

    Wir haben die alte Kategorie->Forum Struktur verworfen und ein flexibleres Design geschaffen. Wenn bei einem Forum eingestellt wird, dass es kein Über(/Eltern) Forum besitzt, wird es zu einem Wurzel-Forum. Da es ein Forum ist, kann man die Zugriffsrechte und Skin Einstellungen wie bei normalen Foren bearbeiten.

    Mehrere Anhänge mit auto-Thumbnail

    Ebenfalls ein viel gewünschtes Feature und man kann es funktionierend in diesem Post sehen. Man kann nicht nur mehrere Dateien an ein Post anhängen, IPB wird ausserdem automtisch eine Miniaturansicht der Grafik generieren die kleineren Umfang hat und deren Dateigröße kleiner ist - großartig für 56k Nutzer!

    Mehrfach Zitat

    Du wirst einen kleinen "+QUOTE" Button rechts unten an jedem Post finden (neben dem "Hoch" Button). Wenn man diesen anklickt, wird er rot und wenn man auf den "Antwort erstellen" Button klickt, erscheint das so markierte Post als Zitat im Post-Fenster! Du kannst Posts durch ein weiteren Klick auf den Button wieder unmarkiert machen. Dieses feature funktioniert auch über Seiten, Beiträge, Themen und sogar über Foren hinweg.

    Mitglieder ignorieren

    Jedes Mitglied hat eine eigene "Ignorieren" Liste, die ihm erlaubt, Beiträge der auf der List befindlichen anderen Mitglieder "einzuklappen". Ein Link wird angezeigt, um den eingeklappte Beiträge wieder "auszuklappen", so dass man sie bei bedarf lesen kann. Der Administrator kann bestimmen, welche Usergruppen immun gegen die Ignorier-Funktion sind.

    Online/Offline

    Eine kleine Anzeige, die bei jedem Beitrag angezeigt wird, zeigt an ob ein Mitglied noch im Forum aktiv ist. Diese Funktion ist praktisch, wenn Du jemandem eine PN schicken willst, Dir aber unsicher bist, ob der/diejenige noch im Forum ist, oder schon längst weg ist. Natürlich erscheinen als anonym eingeloggte User als "Offline"

    Relative Datumsangaben

    Der Administrator hat die Möglichkeit, relative Datumsangaben zu wählen, wodurch die entsprechenden Datumsangaben in Themen und Beiträgen in "Heute" und "Gestern" verändert werden. Dies macht einen wesentlich angenehmeren Eindruck und es wird einfacher, aktuelle Themen und Beiträge zu finden.

    Weiterhin wirst Du verbesserte Zitat und Code Tags bemerken. Diese verwenden das neue CSS System, dadurch werden alte Zitat und Code Tags nicht aktualisier, bis der Beitrag editiert wird. Da die neuen Tags zwei CSS kontrollierte

    Tags benutzen, wird es Dir wesentlich leichter gelingen, das aussehen dieser zu verändern.

    Wir hoffen, Ihr habt Freude daran unsere bisherige Arbeit zu testen, aber bitte denkt daran, dass noch vieles in Arbeit ist. Wir sind uns dessen bewusst, dass System noch Fehler enthält. Bitte postet wie immer Bugs in dem entsprechendem Forum.

    Wie Ihr sehen könnt, verwenden wir bereits eine frühe Version des neuen v2.0 Skin, dass von OneLotus gemäß unserer Sepzifikationen und in unserem Auftrag erstellt wurde. Bitte denkt daran, dass noch an vielem gearbeitet wird und Ihr könnt noch viele Änderungen erwarten, bis zu Finalen Version.

    Wir wollten es so früh wie möglich mit Euch teilen, um so viel Feedback wie nur möglich zu erhalten. Wir haben extra ein Skin-Ratschläge Thema eröffnet, dass genutzt werden soll, um jegliche Änderungen / Verbesserungen zu diskutieren, die Ihr Euch wünscht.

    Wir planen, den ersten öffentlichen Release im Januar fertig zu haben, dieses Datum kann noch variieren.


  9. Matt hat gerade die erste Alpha des neuen Invision Power Board 2.0 Alpha auf Invisionpower.com der öffentlich vorgestellt.

    Man kann diese Version noch nicht downloaden da es sich noch um eine Alpha Version handelt, aber sie scheint schon recht stabil zu sein.

    Als Release Termin wird Januar 2004 genannt.

    Welcome to Invision Power Board v2.0!

    We're very pleased to be able to show you how much we've achieved with our next generation board software. We've taken what we started with v1.0 and built on that strong foundation to realize the feature set we've always been striving for.

    Invision Power Board 2.0 already sports PHP5.0 compatibility to ensure that the new code base is forward compatible. It of course will still run on any PHP version greater than 4.1. Under the hood are huge changes, seeing a more reusable structure which cuts down on redundant code.

    Already packed with new features and additions, here are the biggest to date:

    Unlimited Subforums

    This very popular request has already been added. This is one of the biggest changes in v2.0 and the resulting re-code has actually saved us resources which means that v2.0 even with the new features is more efficient than v1.3!. We've done away with the old categories -> forums structure and built a more liquid design. If you set a forum to have no parent, it becomes a root forum. As it is a forum, you can edit the access permissions and skin accordingly.

    Multiple Attachments with auto-thumbnail generated

    Another popular request and it can be seen in action in this very post. Not only can you attach more than one item to a post, IPB will automatically generate a thumbnail that is smaller in physical dimensions and in filesize - great for 56k modem users!

    MultiQuote

    Again, another feature request inspired from the great customer based suggestion system we're lucky to have. You'll notice a little "+QUOTE" button to the bottom right of your post area (next to the "up" arrow) when viewing a topic. Clicking on this will turn the button red and when you next hit "Add Reply", the clicked posts will be added to the post window as quotes! You can click again to turn them off and this feature works across pages, posts, topics and even forums.

    Ignore User

    Not surprisingly another popular request. Simply put, each member can edit and maintain their own "ignore" list which allows them to "collapse" posts made by a member on their list. A link is provided to expand the post to allow it to be read if desired. The administrator can select which member groups are immune from the ignore list.

    Online/Offline

    Yet another popular request from our community. This is a little indicator that is displayed with each post to indicate if the member is still active. This is great for when you wish to PM someone and you're not sure if they're still on the board or long since gone. Naturally, anonymous users appear as offline.

    Relative Dates

    Another popular request. The admin can choose to set up a relative date format to allow posts and topics to be marked as "Yesterday" and "Today". This gives a much more natural feel and is easier to find active topics and recent postings.

    You'll also notice improved quote and code tags. These are using the new CSS system so older quote tags and code tags won't be converted until the post is edited. As the new system uses two CSS controlled

    tags, you'll find it much easier to achieve a new look.

    We hope you enjoy testing out our work so far but please keep in mind that this is very much work in progress. We're aware that there are some bugs in the system at present and these are to be expected. As always, please keep all bug reports in the bug reports forum.

    As you can see, we're already using a very early version of the new v2.0 skin designed for us by OneLotus to our specification and brief. Please keep in mind that it's still very much work in progress and expect a lot to change before we get near the final versions. We wanted to share it with you as early as possible to get as much feedback as we can. We have a special skin suggestions topic that should be used to discuss any changes / improvements that you would like to see.

    We're planning to have the first public release ready during January although this date is subject to change.

    (Übersetzung des Textes folgt)

    Quelle: Invisionpower.com

    Der Screenshot ist von invisionpower und zeigt die neue Quote und Code Anzeige, sowie die Möglichkeit, mehrere Dateien anzuhängen und die Thumbnail Funktion.


  10. Changed files for this release

    Please note that these files are only relevant to update from the last release. If you are updating from an older version, please visit our website for more information.

    Source Files

    index.php (very important)

    admin.php (very important)

    sources/Admin/ad_member.php

    sources/Admin/ad_settings.php

    sources/lib/post_parser.php

    sources/Login.php

    sources/mod_cp.php

    Language Files

    Other Files

    * Denotes a new file

    Bug fixes for this release

    Please note that these bug fixes are only relevant to update from the last release.

    #101515 Pagination incorrect in Mod CP when using IP address tools

    #101569 Integ msg edit function missing in ACP / Edit Member

    #101728 Some emoticons showing when using tags

    #101879 Pipe in username causes problem when logging into ACP

    #102092 PHP notice when logging out

    Changed files between versions 1.3 Pre Final 1 and 1.3 Final

    Source Files

    admin.php

    index.php

    admin.php

    modules/ipb_member_sync.php

    sources/Admin/ad_emaillogs.php

    sources/Admin/ad_forums.php

    sources/Admin/ad_help.php

    sources/Admin/ad_index.php

    sources/Admin/ad_member.php

    sources/Admin/ad_mysql.php

    sources/Admin/ad_prefs.php

    sources/Admin/ad_settings.php

    sources/Admin/ad_skinfix.php

    sources/Admin/ad_stylesets.php

    sources/Admin/ad_warnlogs.php

    sources/Admin/skin_info.php

    sources/calendar.php

    sources/Forums.php

    sources/functions.php

    sources/lib/emailer.php

    sources/lib/post_edit_post.php

    sources/lib/post_parser.php

    sources/lib/post_q_reply_post.php

    sources/lib/search_mysql_ftext.php

    sources/lib/search_mysql_man.php

    sources/lib/usercp_functions.php

    sources/Login.php

    sources/Memberlist.php

    sources/misc/stats.php

    sources/Moderate.php

    sources/mod_cp.php

    sources/Post.php

    sources/Register.php

    sources/Search.php

    sources/Topics.php

    sources/Usercp.php

    Language Files

    lang_csite.php

    lang_error.php

    lang_online.php

    lang_ucp.php

    Skin Files

    skin_poll.php

    skin_profile.php

    skin_subscriptions.php

    skin_topic.php

    skin_ucp.php


  11. Gerade ist die Final Version des Invision Power Board 1.3 erschienen!

    We're pleased to announce that the final production release of 1.3 has been released to the download area.

    This release fixes up the last few issues found in our pre release version. This version is fully supported by our technicians and if you require an upgrade, please go into your client center and start a new ticket requesting an upgrade. Please allow us a little extra time to complete your order as there is always a large influx of orders around a final release.

    There are no skin or language changes from the pre final release. If you are upgrading from earlier versions of Invision Power Board, you may wish to log into your download area (use the same username and password as you use here) and view the "docs" section to compile a list of changed files.

    If you are upgrading from 1.2, we recommend that you upload ALL of the IPB source files EXPECT conf_global.php - it's very important that you don't upload that file from the download zip. You will also need to run "upgrade6.php" if you are upgrading from 1.2 - this can be found in the "Tools and Scripts" folder of the download zip.

    If you get stuck and require assistance and you are a registered customer, please either start a ticket or request help in the customer forums. Otherwise you can take advantage of our hosting community knowledge base and free member-to-member support area.

    Download Now!

    Weitere Infos folgen :)


  12. Hallo Liebe Mitglieder und Benutzer auf IPBsupport.de,

    Wir haben den erledigt / nicht erledigt Mod von Anfang an hier im Forum eingebaut und aktiviert, der es einem ermöglicht Themen als erledigt oder nicht erledigt zu definieren.

    Den Status kann entweder der Ersteller des Themas ändern, oder unser Team.

    Dazu gibt es bei den Themen die folgenden Buttons:

    button_off.gif

    wenn man auf diesen Button klickt, wird das Thema als noch nicht erledigt in der Forumsübersicht markiert.

    Sichtbar wird das dann durch dieses Symbol:

    forumstatus_off.gif

    das ist auch die Standardanzeige in bestimmten Forenbereichen wenn ein neues Thema erstellt wurde.

    ...und weiter gehts :D

    button_on.gif

    dieser Button markiert das Thema in der Übersicht als erledigt, zu sehen an diesem Symbol:

    forumstatus_on.gif

    einen haben wir noch, und zwar:

    button_none.gif

    wenn dieser Button betätigt wird, sieht man in der Übersicht gar kein Symbol, das symbolisiert das es zu diesem Thema keinen Status gibt

    (könnte z.B. eine allgemeine Erklärung sein etc.)

    Bitte achtet darauf wenn Ihr ein Thema gestartet habt und es im laufe der Zeit für euch zufriedenstellend beantwortet wurde, das ihr dann den Status setzt bzw. ändert. Damit helft ihr anderen User wenn sie einmal Hilfe brauchen. Und erleichtert es uns, zu sehen, wo noch Fragen offen sind.

    Btw.: Zur Information,

    im Moment wird dieser Mod nur exklusiv hier auf dieser Seite eingesetzt.

    Der Grund liegt darin, das es noch einige Veränderungen daran geben wird und zum anderen,

    daß Stefan der diese Modifikation geschrieben hat, im Moment nicht die Zeit findet eine Einbauanleitung zu schreiben.

    Liebe Grüsse

    Andy


  13. Einen wunderschönen guten Morgen :)

    bevor ich mich nun gleich ins Bettchen lege,

    wollte ich Euch noch kurz mitteilen das ich soeben das Sprachpaket von Webarche hier im Forum aktiviert habe und wir dieses nun ab sofort im Einsatz haben :)

    Ein herzliches Dankeschön an dieser Stelle nochmal vom gesammten Team an Thomas - Webarche, der hier auf IPBsupport.de seine Sprachdateien zur Verfügung gestellt hat. Da wir (das Team) sehr von dieser Übersetzung überzeugt sind, wollten wir diese auch aus diesem Grund hier auf unserem Board einsetzen.

    Liebe Grüße,

    und ein schönes Wochenende :)

    Andy


  14. Beitrag von Matt (Programmier) auf InVisionpower.com

    Es wurde auch extra nochmals ausdrücklich betont, daß es keinerlei Pläne geben würde das die Boardsoftware kostenpflichtig werden würde. Registrieren ist also nach wie vor optional und steht jedem User frei. Natürlich haben registrierte User einen Anspruch auf einen besseren Support als unregistrierte User.

    Hier der Original Beitrag von Matt :)

    We're very pleased to announce that Invision Power Board 1.3 Pre Final 1 has been released to the download area.

    I would like to take a moment to re-enforce that Invision Power Board is still available at no cost via our trial service and we have absolutely no plans to change this. We're still committed to the original vision we had for Invision Power Board and we're proud for it to remain part of Invision Power Services' product line.

    Registration is optional but recommended as it covers your installation with the very best support from our technicians via phone, ticket and live chat.

    This release is production quality and is very stable. We are now starting official support for 1.3 Pre Final 1 which means that registered customers can now take advantage of our full range of support options with 1.3 Pre Final 1.

    This release is primarily a bug fixing release and adds no new features. There are no skin changes or language changes and an upgrade script is not required.

    We recommend that you download the "full package" and read the supplied "readme.html" file in the download zip for a list of changed files. Alternatively you can log into your new download center and click on the "Docs" tab to read the documentation supplied with the release and to generate a list of changed files from different releases. The 'upgrade' section is still being worked on and should be operational after the weekend.

    Registered customers who wish for us to upgrade their forum should submit a ticket from their client center requesting an upgrade. If we do not have your FTP information or you have changed your FTP password, please include this information in the ticket along with a link to the board you wish to be upgraded. Please note that we are unable to support modifications and special requirements should be noted within the ticket to avoid confusion. Also, please allow at least 48 hours for your upgrade to be processed due to the initial demand for this service.

    We do not expect any further skin or language changes before the final release due next week.

    Download Now!

    Changed files for this release

    Please note that these files are only relevant to update from the last release. If you are updating from an older version, please visit our website for more information.

    Source Files

    • index.php (very important)
    • admin.php (very important)
    • sources/Admin/ad_prefs.php
    • sources/Admin/ad_warnlogs.php
    • sources/calendar.php
    • sources/Forums.php
    • sources/Topics.php

    Language Files

    Other Files

    • modules/ipb_member_sync.php

    * Denotes a new file

    Bug fixes for this release

    Please note that these bug fixes are only relevant to update from the last release.

    #98963 Calendar showing incorrect end date

    #98963 Ranged events not showing on day view

    #100668 SQL error when leaving search field blank in ACP warn logs section

    #100776 ACP prefs show incorrect setting when defaulting to not show macro previews

    #100973 Search highlighting in topics not working with punctuation


  15. Willkommen bei IPBSupport.de

    "We do Support!"

    Dies ist die neue Supportplattform für das Invision Power Board im deutschsprachigen Raum.

    Wir bieten Euch Hilfe bei der Installation, Pflege und Erweiterung Eures Forums, sowie aktuelle News und Infos zum Invision Power Board ( Updates, Patches etc.)

    Unser Ziel ist es, eine Community zu schaffen in der User sich gegenseitig helfen und dadurch jeder von dem Wissen des anderen profitieren kann. Wir möchten eine Plattform schaffen, damit User gemeinsam an Problemlösungen arbeiten können und sich gegenseitig qualifiziertes Feedback geben und unterstützen.

    Wenn Du bereits ein eigenes Forum hast, kannst Du dies hier vorstellen. Somit hast Du die Möglichkeit, kostenlos Werbung für Dein Forum / Deine Seite zu machen und gleichzeitig Feedback zu bekommen.

    Wenn Du noch kein eigenes Forum hast, dies aber ändern möchtest, kannst Du Dir einige Infos in unserem Tutorials anlesen und Fragen zur Installation in das entsprechende Forum posten.

    Das Team von IPBSupport.de (Andy, Christian, Stefan, Rigo)


  16. Soeben erschien das neueste public development release, und zwar v.1.3 pdr 3 ;)

    Dies ist laut Ankündigung die letzte Version vor der "pre final" Version :)

    hier geht es zum IPB Download Center

    Hier einige Wichtige Infos:

    Updating your IPB

    If you're updating your IPB, then please do the following:

    Read the changed files section and update the specified files.

    Update your skin files by doing the following.

    Log into your Admin CP

    Click on the Skins & Templates Menu and then "HTML Templates"

    If you want to back up the templates first, click on the "Export" link underneath each HTML template set name.

    Resynchronise the HTML template database by using the resynchronise tool at the bottom of the page.

    Repeat the resynchronization for each skin you have to make sure that your database is fully up-to-date.

    Click on "Skin Version Controller" in the left hand menu

    Follow the instructions to update your skins to the latest versions

    Remove any sm_install.php and upgrade.php files you may have used.

    Changed files for this release

    Please note that these files are only relevant to update from the last release. If you are updating from an older version, please visit our website for more information.

    Source Files

    • index.php (very important)
    • admin.php (very important)
    • sources/Admin/ad_help.php
    • sources/Admin/ad_index.php
    • sources/Admin/ad_member.php
    • sources/Admin/ad_mysql.php
    • sources/Admin/ad_skinfix.php
    • sources/Admin/ad_stylesets.php
    • sources/Admin/skin_info.php
    • sources/functions.php
    • sources/lib/emailer.php
    • sources/lib/post_edit_post.php
    • sources/lib/post_parser.php
    • sources/lib/post_q_reply_post.php
    • sources/lib/search_mysql_ftext.php
    • sources/lib/usercp_functions.php
    • sources/Memberlist.php
    • sources/misc/stats.php
    • sources/Moderate.php
    • sources/Post.php
    • sources/Register.php
    • sources/Search.php
    • sources/Usercp.php

    Language Files

    • lang_online.php
    • lang_ucp.php

    Other Files

    * Denotes a new file

    Bug fixes for this release

    Please note that these bug fixes are only relevant to update from the last release.

    #92979 If BBCode is off, smilies are not unconverted upon post edit

    #93649 ACP: Editing help titles with single quote gets truncated

    #93780 Incorrect javascript in header of download profile card

    #94257 Incorrect HTML output when showing payment ticket in SM

    #94356 Member list incorrect pagination

    #94514 Simple search results show incorrect pagination details

    #94914 HTML entity #064; not converted in emails

    #94915 Incorrect instructions for photo when upload removed

    #94990 Stop quote embedding not working properly

    #95094 When moderators allowed to post in closed topics can't edit post

    #95873 Missing code to update sync_module when editing signature

    #96090 Typo in ACP skin friendly names

    #96097 Incorrect user agent for search engine spider

    #96108 Incorrect mime settings when uploading png files

    #96154 Deactivating SM gateways causes 'requires valid email' error

    #96658 Incorrect form element in ACP - Index javascript

    #96915 Group moderators not showing on moderator's page

    #97051 Incorrectly linked category in uCP - forum subs

    #97070 Topic sub: Not sub to topic when using auto-track and quick reply

    #97662 Disabled categories still appear in search results / search box

    #98226 Last post info not updating when deleting topic w/link

    #98251 ACP: MySQL toolbox strips '+' in queries

    #98619 Mod Q topics appear in Active Topics list

    #99006 Macro exporting as part of a skin pack corrupts with newlines

    #99018 Incorrect wording when printing a topic in the online list

    #99032 Inaccurate IP address matching when looking for banned addresses

    #99095 LIST wrapped in a SIZE tag shows error upon edit

    #99113 Using single quote in bulk email title causes it to truncate

    #100011 Bad logic when pruning members from the ACP

    #100383 Quote tag corrupts with embedded code tag in name area

    Hier der Beitrag von Matt:

    We're proud to announce that our third public development release is now available in the new download center.

    This release has been proved very stable and we expect the next release will be a "pre final" release which will be officially supported and labelled as production ready. Until then, our stable product and officially supported product is still IPB v1.2.

    This release is the first to be made available from our new download center. You can optionally log into access more information and track what files you've downloaded. This also allows you to choose from different compression techniques and content styles. This new download center is being trialled with our pre-release development scheme and if proved successful will be rolled out to our stable and officially supported release area.

    IPB Pre-Release Mini Site

    IPB Download Center


  17. Neueste IPB Version derzeit ist die Beta v1.3 pdr2

    Allerdings sollte jeder beachten das es eine Beta Version ist, und sich noch einiges ändern kann was mit ständigen Updates verbunden sein könnte.

    Daher wird derzeit immer noch empfohlen, die Boardversion 1.2 zu verwenden.

    Download auf invisionpower.com

    Beitrag von Matt:

    We are pleased to announce that we have rolled out our new public development release program to everyone and invite you to take part!

    Simply put, we have created a resource to enable us to release and maintain pre-release versions of Invision Power Board for testing and bug fixing. Your help is, as always, greatly appreciated and vital to IPB's continual development and success.

    As this is a pre-release, we are not able to officially support this release and 1.2 remains our stable version with full support.

    Upgrading from 1.2

    You will need to run "upgrade6.php" found in the "Tools and Scripts" directory of the download zip package. Usage instructions are included.

    Please read the new "readme.html" file found in the root zip directory for more information.

    Errata

    IPChat customers, you'll need to upload "sources/lib/chat_functions.php" to the relevant directory on your installation. This is missing from the upgrade notes and will be added shortly.

    Neue Funktionen:

    IPB Pre-Release: New Features

      This section will give you an overview of the new features in this release.

    Skin Version Controller

    This new feature will put an end to the upgrade blues which in the past has caused older skins to break and potentially hours of hand-coding in the updates to put right.

    From the ACP you'll be able to download up-to-date skin pack lists from our remote server to compare against existing HTML template sets and discover missing sections and bug fixes that can be applied in seconds.

    Member IP Address Tools

    At last you'll be able to compile a comprehensive list of IP addresses used by a member and discover who else has used the IP address or even how many accounts are registered to an IP address. You can also opt to list detailed statistics based on an IP address or look up all known addresses for a single member.

    Email notifications of moderation queue topics

    You won't forget another topic in the moderation queue again now that you can enter email addresses to receive email notification when a new topic is entered into the moderation queue. This can be switched on per forum and you decide how many people you want to notify. A very easy to use and effective feature.

×