(11-06-2008 05:05 AM)andreas-1@hotmail.it Wrote: Hi,
i try ispCP 1.0.0 RC6 OMEGA for my servers...the installation is simple and work fine....beautiful layout, but 1 thing not work...filemanager...when i click the blank page opened. Also Choose dir not work...."Can not open directory !
Please contact your administrator !"...mmm...i think the problem is proftpd with mysql...is possible?because when i create a ftp accounts, these not work....but proftpd is installed with mysql modules...and ispCP overwrite the configuration....
/etc/proftpd/proftpd.conf
# ispCP SQL Managment
# Activate for proftpd >= 1.3
SQLBackend mysql
SQLAuthTypes Crypt Plaintext
SQLAuthenticate on
SQLConnectInfo ispcp@localhost:3306 vftp *****
SQLUserInfo ftp_users userid passwd uid gid homedir shell
SQLGroupInfo ftp_group groupname gid members
SQLMinUserUID 2000
SQLMinUserGID 2000
the OS is ubuntu server 8.04 hardy
where is the problem??ispCP or proftpd?
thanks
best regards
Your proftpd is not running with mysql module activated. Add this to you proftpd.conf after
Code:
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
# UseSendFile off
<Global>
RootLogin off
TransferLog /var/log/proftpd/xferlog
ExtendedLog /var/log/proftpd/ftp_traff.log read,write traff
PathDenyFilter "\.quota$"
</Global>
Code:
# Loading required modules
<IfModule !mod_sql.c>
LoadModule mod_sql.c
</IfModule>
<IfModule !mod_sql_mysql.c>
LoadModule mod_sql_mysql.c
</IfModule>
<IfModule !mod_quotatab.c>
LoadModule mod_quotatab.c
</IfModule>
<IfModule !mod_quotatab_sql.c>
LoadModule mod_quotatab_sql.c
</IfModule>