syscp Einrichtung - proftpd - Fatal: unknown configuration directive

Plesk, Confixx, Froxlor, SysCP, SeCoTo, IspCP, etc.
Post Reply
Anonymous
 

syscp Einrichtung - proftpd - Fatal: unknown configuration directive

Post by Anonymous »

Hi leute,

ich habe folgendes Problem mit syscp bei der proftpd config. wenn ich es so mache wie es in der anleitung steht kommt dann folgender fehler.

proftpd.conf

Code: Select all

erverName                      "XXX FTP Server"
ServerType                      standalone
DeferWelcome                    off

MultilineRFC2228                on
DefaultServer                   on
ShowSymlinks                    on
AllowOverwrite                  on

TimeoutNoTransfer               600
TimeoutStalled                  600
TimeoutIdle                     1200

DisplayLogin                    welcome.msg
DisplayFirstChdir               .message
ListOptions                     "-l"

DenyFilter                      *.*/

Port                            21
MaxInstances                    30

# Set the user and group that the server normally runs at.
User                            nobody
Group                           nogroup

<Directory /*>
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
  Umask                         022  022
# Normally, we want files to be overwriteable.
  AllowOverwrite                on
</Directory>

DefaultRoot ~
RequireValidShell off

SQLAuthTypes Crypt Plaintext
SQLAuthenticate users* groups*
SQLConnectInfo syscp@127.0.0.1 syscp PASSWORT^^
SQLUserInfo ftp_users username password uid gid homedir shell
SQLGroupInfo ftp_groups groupname gid members
SQLUserWhereClause "login_enabled = 'y'"

SQLLog PASS login
SQLNamedQuery login UPDATE "last_login=now(), login_count=login_count+1 WHERE username='%u'" ftp_users

SQLLog RETR download
SQLNamedQuery download UPDATE "down_count=down_count+1, down_bytes=down_bytes+%b WHERE username='%u'" ftp_users

SQLLog STOR upload
SQLNamedQuery upload UPDATE "up_count=up_count+1, up_bytes=up_bytes+%b WHERE username='%u'" ftp_users

<IfModule mod_delay.c>
  DelayEngine off
</IfModule>
Fehler

Code: Select all

proftpd - Fatal: unknown configuration directive 'SQLAuthTypes' on line 38 of '/etc/proftpd/proftpd.conf'
 - unknown parameter: '-'
Kennt jemand das Problem und kennt evtl abhilfe ?
duergner
Posts: 923
Joined: 2003-08-20 11:30
Location: Pittsburgh, PA, USA
 

Re: syscp Einrichtung - proftpd - Fatal: unknown configuration directive

Post by duergner »

Du hast das proftpd-mysql Packet nicht installiert.
Anonymous
 

Re: syscp Einrichtung - proftpd - Fatal: unknown configuration directive

Post by Anonymous »

Das Paket ist Installiert
Roger Wilco
Posts: 5923
Joined: 2004-05-23 12:53
 

Re: syscp Einrichtung - proftpd - Fatal: unknown configuration directive

Post by Roger Wilco »

Dein proftpd sagt etwas anderes. Installiere das Paket nochmal.
Post Reply