Windows Server 2003 安装Wamp 2.5不成功
Wampserver 2.5 will not run on Windows XP

报错信息:C:\wamp\bin\apache\apache2.4.9\bin\httpd.exe 不是有效的 Win32应用程序
操作系统【Windows_Server_2003_Enterprise_Edition_R2_CH_x86】
软件环境:WampServer 2.5

原因:WampServer 2.5 一定要安装VC 11,但是The VC11 library will not run on Windows XP, even SP3 or Windows Server 2003(Windows Server 2003 不支持VC11)

顺便说一下,安装Wamp 2.4,一下就成功,省事儿!
如果您也是【Windows_Server_2003】的系统,还是安装Wamp 2.4吧!
wamp server 2.4 的下载地址:http://sourceforge.net/projects/wampserver/files/WampServer%202/

---------------------------------------------------------------
Requirements :

WampServer 2.5 includes, among others , Apache 2.4.9 and PHP 5.5.12 that are "compiled" with Visual C++ 2012, more commonly referred to as VC11.

The VC11 library will not run on Windows XP, even SP3 or Windows Server 2003, so the minimum system requirements to run WAMPServer 2.5 are:
Windows 7 SP1 ,
Windows 8/8.1 ,
Windows Vista SP2 ,
Windows Server 2008 R2 SP1 ,
Windows Server 2012/R2.

A binary compiled using VC11 can load modules compiled with VC11, VC10 or VC9, but is totally incompatible with modules compiled using VC6.
This means that only Apache, PHP or MySQL versions compiled with VC9+ can be retrofitted, which excluded PHP 5.2.x, Apache 1.3 and 2.0 branches.

WampServer 2.5 uses symbolic links and junctions and will only work with NTFS formatted disks or partitions and not with FAT32 drives.
You should also ensure that you have the latest versions of the VC11 C++ runtime: [ [www.microsoft.com] ]

Note: If you use a Windows 64-bit version, you must install both 32 and 64 bits versions of the VC11 (2012) runtime. The vcredist_arm.exe file only concerns ARM and Windows RT, for example the shelves SURFACE processors.

None of the addons available for download are compatible with WAMPServer 2.5
However it is perfectly possible to manually add versions of Apache, PHP and MySQL. See the forum for help on this.

http://forum.wampserver.com/read.php?2,123685
---------------------------------------------------------------

WampServer 2.5组件的版本:
- Apache 2.4.9
- PHP 5.5.12
- MySQL 5.6.17
- PhpMyAdmin 4.1.14
- SqlBuddy 1.3.3
- XDebug 2.2.5
- phpsysinfo 3.1.12
 
WampServer 2.4组件的版本:
- Apache 2.4.4
- PHP 5.4.16
- MySQL 5.6.12
- PhpMyAdmin 4.0.4
- SqlBuddy 1.3.3
- XDebug 2.2.3

windows sever2003安装Wamp 2.5不成功——VC 11不支持Windows Server 2003和win XP?的更多相关文章

  1. windows下安装wamp和wordpress

    安装wamp WAMP是一个windows上的php开发集成环境,一键安装php,apache和mysql,非常方便. 双击wampserver2.2exxxxxxxxxx.exe文件进行安装,安装过 ...

  2. 怎么在windows上安装 ansible How to install ansible to my python at Windows

    答案是不能再window上安装,答案如下: It's back! Take the 2018 Developer Survey today » Join Stack Overflow to learn ...

  3. 在windows上安装wamp时遇到apache无法启动,图标为橙色

    1.首先测试端口号是否被占用,如果端口号被占用,修改相对应文件的端口号,修改端口号的方法网上很容易搜到. 2.如果端口号没有被占用,cd到httpd.exe目录下,查看错误原因,这里我显示的错误是ht ...

  4. Windows下面安装和配置Solr 4.9(三)支持中文分词器

    首先将下载解压后的solr-4.9.0的目录里面F:\tools\开发工具\Lucene\solr-4.9.0\contrib\analysis-extras\lucene-libs找到lucene- ...

  5. windows 10安装和配置caffe教程 | Install and Configure Caffe on windows 10

    本文首发于个人博客https://kezunlin.me/post/1739694c/,欢迎阅读! Install and Configure Caffe on windows 10 Part 1: ...

  6. 【转】linux和windows下安装python集成开发环境及其python包

    本系列分为两篇: 1.[转]windows和linux中搭建python集成开发环境IDE 2.[转]linux和windows下安装python集成开发环境及其python包 3.windows和l ...

  7. Redis在windows下安装和PHP中使用

    1.redis简介redis是一个key-value存储系统.和Memcached类似,它支持存储的value类型相对更多,包括string(字符串).list(链表).set(集合).zset(so ...

  8. MySQL入门——在Windows下安装MySQL

    MySQL入门——在Windows下安装MySQL 摘要:本文主要说明了如何下Windows环境下安装MySQL. 查看电脑上是否安装了MySQL 打开cmd窗口,输入 services.msc 命令 ...

  9. windows下安装redis以及redis扩展,设置redis为windows自启服务

    windows下安装reids windows下redis下载地址:https://github.com/MSOpenTech/redis/releases. 启动redis服务:在redis目录下启 ...

随机推荐

  1. 菜鸟学Java(五)——JSP内置对象之request

    书接上回,上次跟大家概括的说了说JSP的九种常用内置对象.接下来就该聊聊它们各自的特点了,今天先说说request吧. 下面是request的一些常用方法: isUserInRole(String r ...

  2. 旧的flex

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...

  3. Lintcode: Sort Colors II 解题报告

    Sort Colors II 原题链接: http://lintcode.com/zh-cn/problem/sort-colors-ii/# Given an array of n objects ...

  4. 练习1 Just Java

    任务:做这样一个界面,选择数量,自动计算价格.超级简单.. <?xml version="1.0" encoding="utf-8"?> <a ...

  5. 把Java中\u格式的unicode编码转成中文

    使用org.apache.commons.lang.StringEscapeUtils#unescapeJava(String)方法. 当然用org.apache.commons.lang.Strin ...

  6. JAVA-JSP内置对象之request获得封装所有参数值的Map

    相关资料:<21天学通Java Web开发> 获得封装所有参数值的Map1.通过request对象的getParameterMap()方法来获得封装所有的参数值的Map对象.2.通过该Ma ...

  7. JAVA-JSP内置对象之移除属性

    相关资料:<21天学通Java Web开发> 移除属性1.只需调用相应对象的removeAttribute()方法就可以移除指定属性 RemoveAttributeDemo.jsp < ...

  8. 爬虫 Http请求,urllib2获取数据,第三方库requests获取数据,BeautifulSoup处理数据,使用Chrome浏览器开发者工具显示检查网页源代码,json模块的dumps,loads,dump,load方法介绍

    爬虫 Http请求,urllib2获取数据,第三方库requests获取数据,BeautifulSoup处理数据,使用Chrome浏览器开发者工具显示检查网页源代码,json模块的dumps,load ...

  9. [Linux]阿里云免费试用体验(在阿里云的ubuntu上部署个人服务)

    作为一个IT界的人,一般都希望有一个独立的博客,或者一部独立的机器.所以我一直在找机会,拥有一台自己可以独立控制的机器,自己想干嘛干嘛.当然这在虚拟机或者自己的PC上面也可以实现,但是这跟一台一直开着 ...

  10. # Writing your first Django app--part 3 about view

    添加更多的view 写actually有用的view 使用模版来设计view 使用模版设计view的捷径:render() 抛出异常404 抛出异常404-快捷方法: get_object_or_40 ...