Current time: 07-01-2024, 12:13 PM Hello There, Guest! (LoginRegister)


Post Reply 
Fehler Installation
Author Message
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #11
RE: Fehler Installation
Quote:das die Gentoo Unterstützung nochmal überarbeitet werden sollte
Dito! Genau das soll ja jetzt dann passieren
Und vielleicht kann uns ja hotstuff dabei helfen. Oder gibt es noch andere gentoo anhänger ?

Greez BeNe
02-12-2008 06:39 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Zothos Offline
Release Manager
*****
Dev Team

Posts: 1,262
Joined: Feb 2007
Reputation: 10
Post: #12
RE: Fehler Installation
me?!? ^^
02-12-2008 07:33 PM
Find all posts by this user Quote this message in a reply
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #13
RE: Fehler Installation
Ups, da habe ich dich voll übersehen! Rolleyes
Sorry! Hast es ja aber auch noch nicht so lange, oder ?

Greez BeNe
02-12-2008 10:14 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Zothos Offline
Release Manager
*****
Dev Team

Posts: 1,262
Joined: Feb 2007
Reputation: 10
Post: #14
RE: Fehler Installation
Seit der revision 976 Tongue aber ja so lange noch nicht

Komischerweise funktioniert bei das automatische anlegen von subdomains/domains nicht. Kannst du mal schaun obs bei dir funktioniert hotstuff? Ich muss den rqst manager immer manuell anhaun XD Bin noch auf der suche warum.

Kann mal irgendwer net-dns/libidn zu den packages bei gentoo dazumachen? Ich hab leider keinen svn account Sad
02-12-2008 11:19 PM
Find all posts by this user Quote this message in a reply
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #15
RE: Fehler Installation
Quote:Kann mal irgendwer net-dns/libidn zu den packages bei gentoo dazumachen?
Am besten machst du ein Ticket auf! Wink

Greez BeNe
02-13-2008 12:01 AM
Visit this user's website Find all posts by this user Quote this message in a reply
hotstuff Offline
Junior Member
*

Posts: 53
Joined: Nov 2007
Reputation: 0
Post: #16
RE: Fehler Installation
Hal[/align]lo

Habe jetzt folgende Fehler noch!

Warning: session_start() [function.session-start]: open(/var/www/ispcp/gui/phptmp//sess_0b835342b7c5495118126aaa27c8afe6, O_RDWR) failed: Permission denied (13) in /var/www/ispcp/gui/include/ispcp-lib.php on line 27

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /var/www/ispcp/gui/include/ispcp-lib.php:27) in /var/www/ispcp/gui/include/ispcp-lib.php on line 27

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/ispcp/gui/include/ispcp-lib.php:27) in /var/www/ispcp/gui/include/ispcp-lib.php on line 27

Fatal error: Call to undefined function preg_replace() in /var/www/ispcp/gui/include/i18n.php on line 160

Warning: Unknown: open(/var/www/ispcp/gui/phptmp//sess_0b835342b7c5495118126aaa27c8afe6, O_RDWR) failed: Permission denied (13) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/www/ispcp/gui/phptmp/) in Unknown on line 0


Gruss Dave[/b]
02-13-2008 04:56 AM
Find all posts by this user Quote this message in a reply
joximu Offline
helper
*****
Moderators

Posts: 7,024
Joined: Jan 2007
Reputation: 92
Post: #17
RE: Fehler Installation
Rechte überprüfen auf /var/www/ispcp/gui/phptmp ?
die Cookie-Meldungen sind klar
preg_replace(): vielleicht nicht installiert? http://ch2.php.net/manual/de/ref.pcre.php
02-13-2008 07:20 AM
Visit this user's website Find all posts by this user Quote this message in a reply
hotstuff Offline
Junior Member
*

Posts: 53
Joined: Nov 2007
Reputation: 0
Post: #18
RE: Fehler Installation
Hallo



Ich habe mich für emerge dovecot entschieden. Kannst du mir helfen anzupassen.
Code:
/etc/init.d/dovecot start
* Starting dovecot ...
Warning: mail_extra_groups setting was often used insecurely so it is now deprecated, use mail_access_groups or mail_privileged_group instead
Error: Can't use mail executable /usr/libexec/dovecot/pop3: No such file or directory
Fatal: Invalid configuration in /etc/dovecot/dovecot.conf



Install dovecot

Code:
emerge dovecot


Code:
> mysql -u root -p mysql
mysql> GRANT SELECT ON ispcp.* to 'ispcp_dovecot'@'localhost' identified by 'mypass';
mysql> FLUSH PRIVILEGES;
mysql> quit;

/etc/dovecot/dovecot.conf
Code:
base_dir = /var/run/dovecot/
protocols = imap pop3 imaps pop3s
ssl_disable = no
disable_plaintext_auth = no
listen=*
syslog_facility = mail
login_greeting = Dovecot ready.
mail_location = maildir:/var/mail/virtual/%d/%n
mail_extra_groups = mail
protocol imap {
}
namespace private {
  prefix = INBOX.
  inbox = yes
}
protocol pop3 {
  pop3_uidl_format = %u-%v
}
protocol lda {
  postmaster_address = postmaster@yourdomain.tld
  auth_socket_path = /var/run/dovecot/auth-master
}
auth default {
  mechanisms = plain login digest-md5
  passdb sql {
   args = /etc/dovecot/dovecot-sql-domain.conf
  }
  userdb sql {
   args = /etc/dovecot/dovecot-sql-domain.conf
  }
  passdb sql {
    args = /etc/dovecot/dovecot-sql-aliasdomain.conf
  }
  userdb sql {
    args = /etc/dovecot/dovecot-sql-aliasdomain.conf
  }
  passdb sql {
   args = /etc/dovecot/dovecot-sql-subdomain.conf
  }
  userdb sql {
   args = /etc/dovecot/dovecot-sql-subdomain.conf
  }
  socket listen {
   client {
    path = /var/spool/postfix/private/auth
    mode = 0660
    user = postfix
    group = postfix
   }
   master {
    path = /var/run/dovecot/auth-master
    mode = 0660
    user = vmail
    group = mail
   }
  }
  user = vmail
}
plugin {
}
/etc/postfix/main.cf


Betsen Dank

Gruss Dave
(This post was last modified: 03-25-2008 03:17 AM by hotstuff.)
03-25-2008 12:53 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)