Questions tagged [wampserver]

Specific release of the WAMP stack for Windows.

This tag should be used when referring to the WAMP server stack WampServer. This is a bundled release of Apache, MySQL, and PHP for Windows. It allows you to easily setup a development environment for web applications and comes with PHPMyAdmin to manage databases. One unique thing about WampServer is that it allows you to download, install and activate older releases of Apache, MySQL, and PHP. This makes it possible to duplicate production servers.

WampServer Website

2561 questions
3
votes
1 answer

HTTP/2.0 with WampServer 3.0.6 doesn't work

I wanna try the new version of http protocol ( http2 ) and specially the server_push function on the last version of WampServer ( 3.0.6, with 2.4.23 Apache version and OpenSSL/1.0.2h ). I have activated the http2_module ( ssl module is activated by…
ExecAssa
  • 177
  • 11
3
votes
3 answers

CSS is refusing to update

My computer is having an error where the CSS stops working. For example before, when I modify the CSS and save it, it would work on the webpage and all would be fine. Now however, if I edit and save the CSS the webpage does not change at all, its…
DJ Wolf
  • 33
  • 3
3
votes
4 answers

SMTP Error (-1): Connection to server failed

I have installed Roundcube webmail in my WAMPSERVER and I can access my emails via localhost/roundcube url, But I can not send email via my roundcube. I get the alert with the following error. SMTP Error (-1): Connection to server failed I am sure…
Nawroz Salehi
  • 79
  • 1
  • 11
3
votes
3 answers

$_POST is empty in php5.6

I've tried almost all solutions related to empty $_POST after submitting form in stack overflow but none of them solved my problem.I'am using wamp server and using phpstorm. changed the values of post_max_size and upload_max_filesize in…
user6275035
  • 91
  • 2
  • 9
3
votes
1 answer

Wamp server 403 forbidden using a public ip (works with localhost and ipv4 address)

I have just installed wamp server and tried to set it up to allow people from other ip addresses to view my website. I have forwarded the port in my router and tested with http://www.yougetsignal.com/tools/open-ports/. In the httpd.conf file I have…
Max Wong
  • 31
  • 1
  • 3
3
votes
1 answer

You don't have permission to access /phpmyadmin/ on this server. To access another pc localhost in windows 7

I am trying to access another PC Localhost on my PC in same LAN using IP address of that PC, and I am use WAMP Server to connect phpmyadmin of another pc. I am successfully connected to WAMP server(e.g URL http://192.168.1.8/), but if I try to click…
Tushar Patil
  • 41
  • 1
  • 1
  • 6
3
votes
7 answers

Wamp icon is green but not reacting on click

I'm facing with the problem where my fresh installed WAMP 3.0 is running, icon is green, apache and MYSQL are up and running, localhost page is accessible but if I click on my WAMP icon to change any of the settings icon is not reacting at all.…
stvlada
  • 53
  • 1
  • 9
3
votes
3 answers

Unexpected PhpMyAdmin login screen after installing wamp server

I've installed wamp server in my system. Everything went fine.After installation when I clicked at phpmyadmin this login portal pops up.I don't know what is the username or password How I'm supposed to login without username and password.
3
votes
6 answers

WAMP in Windows 8 (64 bit) doesn't work

I've installed wampserver. Yet it is always as a red tray icon. Icon tooltip msg: local server - None of 2 services running. Port 80 is not occupied; checked with Apache ► Service ► Test port 80: Warning: chmod(): Permission denied in…
Igor Savinkin
  • 5,669
  • 8
  • 37
  • 69
3
votes
0 answers

Symfony2 App working with built in server but not under Apache Virtualhost

This question is a follow up from this one on Stackoverflow , i've an app setup on WAMP 2.5(64 bit) on Win 7 (64bit) with the following settings : Apache : 2.4.9 PHP : 5.5.12 MySQL : 5.6.17 Symfony 2.7 When ran under the Virtualhost only the page…
Raymond A
  • 763
  • 1
  • 12
  • 29
3
votes
4 answers

How can I SELECT data which in Arabic language in MYSQL?

the following doesn't works, how can I search in data which stored in Arabic SELECT * FROM `users` WHERE `name` LIKE = "%شريف%" that gave me Error sql query
Hussein Ahmed
  • 730
  • 2
  • 7
  • 17
3
votes
2 answers

Ajax is not working on wamp

this is my client side code.The server side php code is simply to echo statement. function load(){if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 …
Venkat
  • 351
  • 2
  • 10
3
votes
2 answers

php script with cron-like feature on Wamp windows

I need run script from Windows WAMP server. It should work like this: '; //Some magic here to wait 5 seconds echo 'End
'; } ?> What I want is automatic work: print out Start -> wait 5 seconds -> print…
Anchor_Chisel
  • 166
  • 1
  • 8
3
votes
1 answer

Laravel 5 route only works with slash

I wrote the following code in the Controllers. The code with the slash is working but the code with the reference is not working. I get 500 Internal Server Error whenever I am not using a slash Route::get('/',…
3
votes
3 answers

PHP/Windows Task Scheduler - How to create a new task from php?

I have the following code snippet which I have tried to modify to create a scheduled task in windows from php. I tried exec, then pclose(popen($cmd)) with no success. The php script executes but no command is invoked and I see no added scheduled…
Vahe
  • 1,699
  • 3
  • 25
  • 76