在CentOs上安装squirrelmail

时间:2014-04-15 09:21:04

标签: php linux centos squirrelmail

我正在尝试在CentOs 6.5中安装squirrelmail,我收到以下错误。

# yum install squirrelmail -y
.....
---> Package tmpwatch.x86_64 0:2.9.16-4.el6 will be installed                        
--> Running transaction check                                                        
---> Package php.x86_64 0:5.3.3-27.el6_5 will be installed                           
--> Processing Dependency: php-common(x86-64) = 5.3.3-27.el6_5 for package: php-5.3.3
--> Processing Dependency: php-cli(x86-64) = 5.3.3-27.el6_5 for package: php-5.3.3-27
---> Package php-mbstring.x86_64 0:5.3.3-27.el6_5 will be installed                  
--> Processing Dependency: php-common(x86-64) = 5.3.3-27.el6_5 for package: php-mbstr
---> Package php-pear.noarch 1:1.9.4-4.el6 will be installed                         
--> Finished Dependency Resolution                                                   
Error: Package: php-5.3.3-27.el6_5.x86_64 (updates)                                  
           Requires: php-common(x86-64) = 5.3.3-27.el6_5                             
           Installed: php-common-5.4.27-1.el6.remi.x86_64 (@remi)                    
               php-common(x86-64) = 5.4.27-1.el6.remi                                
           Available: php-common-5.3.3-26.el6.x86_64 (base)                          
               php-common(x86-64) = 5.3.3-26.el6                                     
           Available: php-common-5.3.3-27.el6_5.x86_64 (updates)                     
               php-common(x86-64) = 5.3.3-27.el6_5                                   
Error: Package: php-mbstring-5.3.3-27.el6_5.x86_64 (updates)                         
           Requires: php-common(x86-64) = 5.3.3-27.el6_5                             
           Installed: php-common-5.4.27-1.el6.remi.x86_64 (@remi)                    
               php-common(x86-64) = 5.4.27-1.el6.remi                                
           Available: php-common-5.3.3-26.el6.x86_64 (base)                          
               php-common(x86-64) = 5.3.3-26.el6                                     
           Available: php-common-5.3.3-27.el6_5.x86_64 (updates)                     
               php-common(x86-64) = 5.3.3-27.el6_5                                   
Error: Package: php-5.3.3-27.el6_5.x86_64 (updates)                                  
           Requires: php-cli(x86-64) = 5.3.3-27.el6_5                                
           Installed: php-cli-5.4.27-1.el6.remi.x86_64 (@remi)                       
               php-cli(x86-64) = 5.4.27-1.el6.remi                                   
           Available: php-cli-5.3.3-26.el6.x86_64 (base)                             
               php-cli(x86-64) = 5.3.3-26.el6                                        
           Available: php-cli-5.3.3-27.el6_5.x86_64 (updates)                        
               php-cli(x86-64) = 5.3.3-27.el6_5                                      
 You could try using --skip-broken to work around the problem                        
 You could try running: rpm -Va --nofiles --nodigest                                 
[root@ioi ~]#                                                              

我不明白错误出现的原因。

我已尝试使用--skip-brokerpm -Va --nofiles --nodigest,但它没有解决问题。我有PHP-FPM php-common和php-cli运行任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我遇到了和你一样的错误,我设法通过下载&按照以下步骤在CentOS 6上安装Squirrelmail:

1- yum -y update
// Downloading the file 
2- wget http://downloads.sourceforge.net/project/squirrelmail/stable/1.4.22/squirrelmail-webmail-1.4.22.zip
// unzip the file
3- unzip squirrelmail-webmail-1.4.22.zip -d /var/www/html/
// copy this to your project main path, you can also make a vhost
4- mv /var/www/html/squirrelmail-webmail-1.4.22/ /home/www.mywebsite.com/public_html/squirrelmail
// Set the correct permissions
5- chown -R apache: /home/www.mywebsite.com/public_html/squirrelmail/
// Create the configuration file
6- cd /home/www.mywebsite.com/public_html/squirrelmail/config 
    cp -p config_default.php config.php
// example of minimum configuration that you will need
$domain = 'mywebsite.com';
$data_dir = '/home/www.mywebsite.com/public_html/squirrelmail/data/';
$attachment_dir = '/home/www.mywebsite.com/public_html/squirrelmail/attach/';
$smtpServerAddress = 'localhost';
$imapServerAddress = 'localhost';