Fehlermeldung bei Schritt 4!?

Fragen zur Installation von ConPresso 3.x werden in diesem Forum diskutiert.
Antworten
SebastianSadowski

Fehlermeldung bei Schritt 4!?

Beitrag von SebastianSadowski »

Wenn ich zum 3.Schritt bei der Installation komme, kommt folgende Fehlermeldung:

Warning: Unterminated comment starting line 879 in /raid/domains/de/m/mesa-design/htdocs/www/scripte/HVNL/conpresso/_include/rfc822.php on line 879

Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /raid/domains/de/m/mesa-design/htdocs/www/scripte/HVNL/conpresso/_include/rfc822.php on line 879

Fatal error: Undefined class name 'mail_rfc822' in /raid/domains/de/m/mesa-design/htdocs/www/scripte/HVNL/conpresso/_setup/step4.inc.php on line 41

Komischerweise fehlte bei Schritt drei auch schon ein OK:
Schritt 3
Schreibe Datenbankkonfigurationsdatei... OK
Prüfen die Datenbankkonfigurationsdatei.
Die Datenbank-Konfiguration ist OK.
Erstelle Datenbanktabellen... OK.

Meine php-Version ist: 4.3.4
Ansonsten hat bis dahin alles gefunktz(mit Mysql Datenbank etc.)

Gruß
Sebatsian Sadowksi
Benutzeravatar
MarkusR
Handbuchversteher
Beiträge: 7362
Registriert: 01.01.1970 01:00
Hat sich bedankt: 111 Mal
Danksagung erhalten: 934 Mal
Kontaktdaten:

Re: Fehlermeldung bei Schritt 4!?

Beitrag von MarkusR »

Vorschlag: Lade _include/rfc822.php nochmal hoch... da scheinen ein paar Zeilen zu fehlen.

Von Zeile 879 bis zum Ende sollte das so aussehen:

Code: Alles auswählen

    /**
    * This is a email validating function seperate to the rest
    * of the class. It simply validates whether an email is of
    * the common internet form: <user>@<domain>. This can be
    * sufficient for most people. Optional stricter mode can
    * be utilised which restricts mailbox characters allowed
    * to alphanumeric, full stop, hyphen and underscore.
    *
    * @param  string  $data   Address to check
    * @param  boolean $strict Optional stricter mode
    * @return mixed           False if it fails, an indexed array
    *                         username/domain if it matches
    */
    function isValidInetAddress($data, $strict = false)
    {
        $regex = $strict ? '/^([.0-9a-z_-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,4})$/i' :
        '/^([*+!.&#$|'\%\/0-9a-z^_`{}=?~:-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,4})$/i';
        if (preg_match($regex, trim($data), $matches)) {
            return array($matches[1], $matches[2]);
        } else {
            return false;
        }
    }
}
?>

Ciao Markus
ConPresso-Module

Kein Support per PN!!! Für Fragen und Diskussionen ist das Forum da!

Succi recentis officinalis
Hochwertige Kräutersäfte und -Öle
SebastianSadowski

Re: Fehlermeldung bei Schritt 4!?

Beitrag von SebastianSadowski »

Danke erstmal für die schnelle Hilfe, da die Installation nun funktz. hat, jedoch kommich nicht in den admin bereich:
Parse error: parse error in /raid/domains/de/m/mesa-design/htdocs/www/scripte/HVNL/conpresso/_admin/index.php on line 549

Ich denke, dass da mal wieder was fehlt!
Zeile 535-549:
<?php

if ( $pw != 1 AND $System_Startnews == 1 )
{
?>
<table width="770" border="0" cellpadding="15" cellspacing="0">
<tr>
<td align="left" valign="top" class="text">
<SCRIPT language="JavaScript" type="text/javascript" src="http://www.conpresso.de/conpresso/de_ne ... "></SCRIPT>
</td>
<td align="left" valign="top" class="text">
<SCRIPT language="JavaScript" type="text/javascript" src="http://www.conpresso.de/conpresso/de_ne ... "></SCRIPT>
</td>
</tr>

Habe ich da eine kaputte Version heruntergeladen?
Habe ConPresso 3.4.8 [22.03.2004] heruntergeladen!

Gruß
Sebastian Sadowski
Antworten