search
HomeBackend DevelopmentPHP Tutorialecshop能装在Win764位系统中吗?

  我的电脑是Win7 64位 i5  8G 内存 想要装一个ecshop装不了,ecshop是32位的,有很多人给了我很多建议,说要换32位的系统,我觉得不妥当,我想要两全其美的方法,一是装了ecshop,二是不影响我的电脑本身的配置。
  火速紧急,我都失眠多天了,就是为了装ecshop;在这里非常谢谢大家为我解答难题。


回复讨论(解决方案)

能装 ,我啥都没管就装上了!!

呵、、我装的时候不支持ecshop32位的呀,是不是要设置php配置环境呢?

无稽之谈。环境装好就行了,不存在的问题



终于有一个比我还菜的人了,哈哈!!

ecshop不存在32位和64位的,同学,只要你电脑能运行PHP程序就可以安装ecshop程序

我的电脑不能运行PHP程序该怎么解决呢?谢谢大家为我解答

你装个win64的php环境就是了。
http://download.cnet.com/WampServer-64-Bit/3000-10248_4-75544590.html

呵、、我装的时候不支持ecshop32位的呀,是不是要设置php配置环境呢?


兄弟 你真是个神啊

我是一个女女

我是一个女女



你怎么不早说呢,早说了N多人帮你远程协助了。哈!



^^ 那你能 帮助我吗?


我是一个女女



你怎么不早说呢,早说了N多人帮你远程协助了。哈!

PHP版本问题
ecshop 是5.1到5.3版本的,大于5.3以上的就出现错误,比如,PHP5.4 或者PHP5.5 直接报错,因为他的程序老了。。。

^^ 那你能 帮助我吗?



我是一个女女



你怎么不早说呢,早说了N多人帮你远程协助了。哈!

还没解决么,如果还没请PM 扣扣号给我,很简单的,

楼主是来卖萌的 鉴定完毕

64位系统一样可以安装32位wamp

ecshop没有听说还有32位64位之分,不过我知道可能是能装的

兄台,我这里是WIN8 我都可以的
先下个apmsever5.2.6 然后安装到无中文目录下的文件夹内
然后把ecshop安装到网站目录中,然后运行

这个是基于环境的和系统没有直接的关系。
环境就是apache+php+mysql之类的

PHP版本问题
ecshop 是5.1到5.3版本的,大于5.3以上的就出现错误,比如,PHP5.4 或者PHP5.5 直接报错,因为他的程序老了。。。


网上可以搜ecshop支持php5.5的
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor