wampserver

WAMP server doesn't work properly on Windows 10

空扰寡人 提交于 2019-11-27 09:45:15
I just upgraded my OS to Windows 10 and I have an atypical problem. I use WAMP server and PHP doesn't work, although no error is displayed anywhere. I tried to update vcredist or to change ports, but the problem persists. Windows 10 does not come with all the older MSVC Runtimes installed. You will also have to install any of these that are missing. Microsoft Visual C/C++ Redistributable 2008 (VC9) 32bit / 64bit Microsoft Visual C/C++ Redistributable 2010 (VC10) 32bit / 64bit Microsoft Visual C/C++ Redistributable 2012 (VC11) 32bit & 64bit selectable on this page Microsoft Visual C/C++

XAMPP / WAMP / whatever it is: Apache is running super slow [closed]

て烟熏妆下的殇ゞ 提交于 2019-11-27 09:16:10
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . I've got my Windows PC (localhost) running XAMPP. It loads the pages sometimes really quick or sometimes really slow. So, I figured and searched and was recommended to get WAMP. I got that and installed it. Still, the pages load so damn slowly. No heavy CPU load or anything, all my ports are open too. Any ideas?

WAMPServer phpMyadmin Maximum execution time of 360 seconds exceeded

99封情书 提交于 2019-11-27 08:01:58
I just installed WampServer. It works when I visit my project page but when I try to navigate phpMyAdmin i get this error: Maximum execution time of 360 seconds exceeded What is the problem? RiggsFolly A better solution here is to change the config that controls phpMyAdmin and not the php.ini file. If you change the php.ini file you effect everything in PHP and should you write that infinite loop that we all do from time to time it will take longer to terminate your infinite loop than is sensible. Note: If you are using the 64bit WAMPServer the base folder name will be wamp64 instead of wamp

How can I access localhost from another computer in the same network? [duplicate]

情到浓时终转凉″ 提交于 2019-11-27 07:35:52
This question already has an answer here: Accessing localhost (xampp) from another computer over LAN network - how to? 22 answers I just recently downloaded WAMP Server to view and edit php webpages but now I would also like other people in my network (connected to the same wifi) to be able to access localhost and all the files that I have saved. I have already tried to access localhost and my WAMP server was already online, however that didn't work. Can someone help me out? Thanks in advance! Tri Hoang You need to find what your local network's IP of that computer is. Then other people can

How to use .htaccess in WAMP Server?

谁都会走 提交于 2019-11-27 06:30:14
I searched in web for 2 days and I try to use htaccess in my local wamp but I can't! I know there is something wrong but I don't know where... First: I activated " rewrite_module " in the apache menu, then I checked the phpinfo page and I saw that module added to its " Loaded Modules " part. Second: I checked the httpd.conf and made some changes, it is the result (just important parts): ServerRoot "c:/program Files/wamp/bin/apache/apache2.2.11" Listen 80 ServerName localhost:80 DocumentRoot "c:/program Files/wamp/www/" <Directory /> Options FollowSymLinks # AllowOverride None # Order deny

Can't import database through phpmyadmin file size too large

≡放荡痞女 提交于 2019-11-27 06:10:16
I have been trying to import Database through phpMyAdmin. My database file is a.sql and it's size is 1.2 GB I am trying to import this on local and phpMyAdmin is saying: You probably tried to upload too large file. Please refer to documentation for ways to workaround this limit. Please help I really need this to work. Its due to PHP that has a file size restriction for uploads. If you have terminal/shell access then the above answers @Kyotoweb will work. one way to get it done is that you create an .htaccess/ini file file to change PHP settings to get the sql file uploaded through PHPmyAdmin.

Could not execute menu item (internal error)[Exception] - When changing PHP version from 5.3.1 to 5.2.9

我只是一个虾纸丫 提交于 2019-11-27 05:27:43
问题 I have installed two PHP versions in my WAMP server. When I am using 5.3.10, my wamp server is running just fine. But when I switch to older version of PHP (5.2.9) my wamp server tray icon is showing orange icon. If you click on Put Online I am getting following error. I tried to change the port in httpd.conf to 8855 and still I am getting same error. How can I resolve this error? Could not execute menu item (internal error)[Exception] Could not perform service action:The service has not been

Access virtual host from another machine over LAN

廉价感情. 提交于 2019-11-27 05:13:03
问题 I am using Windows 7 with Wamp 2.2 server. I have setup 2 virtual hosts: www.project1.com and www.project2.com . I have modified the " hosts ", the httpd.conf, and the httpd-vhosts.conf files, to the changes I mentioned below. Using my browser, when I type www.project1.com or www.project2.com , I successfully get my web pages opened on the laptop that has the server installed on. Changes in the " hosts file ": I've appended the followings to the end of the file:- 127.0.0.1 localhost 127.0.0.1

WAMPServer wont start because api-ms-win-crt-runtime-l1-1-0.dll is missing

守給你的承諾、 提交于 2019-11-27 03:57:40
问题 I try to install wampserver3.0.6_x64 and I get the following message the program can't start because api-ms-win-crt-runtime-l1-1-0.dll is missing from your computer I have installed all the things I read in StackOverflow that I need to install Universal C Runtime, but I can't install this. I'd love to know how to fix it. 回答1: UPDATE: Simplest Solution Download a full set of MSVC runtimes from the WAMPServer alternate repo which can be found here Look at the bottom of the page, there is a

Windows Batch Script to backup local MySQL databases & only keep N latest FOLDERS with backup files

我怕爱的太早我们不能终老 提交于 2019-11-27 03:00:46
问题 I am using adityasatrio's batch file to backup local MySQL dbs and like to be able to only keep the 30 latest backup files. Using root:root for this example. @echo off set dbUser=root set dbPassword=root set backupDir="D:\MySQLDumps\dbs\" set mysqldump="C:\wamp\bin\mysql\mysql5.6.17\bin\mysqldump.exe" set mysqlDataDir="C:\wamp\bin\mysql\mysql5.6.17\data" set zip="C:\Program Files\7-Zip\7z.exe" :: get date for /F "tokens=2-4 delims=/ " %%i in ('date /t') do ( set yy=%%i set mon=%%j set dd=%%k