首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在CentOs上安装squirrelmail

在CentOs上安装squirrelmail
EN

Stack Overflow用户
提问于 2014-04-15 17:21:04
回答 1查看 997关注 0票数 1

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

代码语言:javascript
复制
# 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,有人知道如何解决这个问题吗?

EN

回答 1

Stack Overflow用户

发布于 2015-03-09 15:18:47

我遇到了和你一样的错误,我通过以下步骤在CentOS 6上下载并安装了Squirrelmail来解决这个问题:

代码语言:javascript
复制
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';
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/23079494

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档