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
0
votes
1 answer

Warning (Code 1264): Out of range value for column 'HireDate' at row 1 in sql

insert into Employee values(2,"Brown","Barry",2011-08-12,1,11,null); Query OK, 1 row affected, 1 warning (0.00 sec) Warning (Code 1264): Out of range value for column 'HireDate' at row 1 what does this mean in sql guys???
0
votes
0 answers

Discover Wamp Server Absolute Path

I have searched all over google and cannot find out how to discover the absolute path for a php include my site is structured like wamp/www/MYSITE/resources/index-variables.php I am using wampserver 2.5 if that helps. MAYBE I can create some file to…
user3893380
  • 33
  • 1
  • 1
  • 6
0
votes
0 answers

FatalErrorException : Class 'MongoDB\Client' not found

I am using Laravel 5.4. I want use MongoDB. I installed mongodb version 3.4.4. And also add extension for wampserver and enabled mongodb extension for php. Also i tried many extension version for mongodb.dll, but i always get "Class 'MongoDB\Client'…
Mech
  • 79
  • 1
  • 13
0
votes
1 answer

Magento migration from live to wamp server

SO for development purpose I moved my live magento site to my local dev environment so that I can setup Angular Js in it. steps I followed are as follows: Migrated whole Db to local mysql server and also copied files in www folder of wamp chnaged…
Anudeep Gupta
  • 39
  • 3
  • 11
0
votes
1 answer

Apache vhost wildcard not working

This was working before but mysteriously doesn't work anymore. I'm trying to add a wildcard subdomain which points to the exact same folder as the main domain. Here is my vhost: ServerName leadbind.dev ServerAlias…
kjdion84
  • 9,552
  • 8
  • 60
  • 87
0
votes
0 answers

wamp server :Mysql service getting stopped automatically while accessing phpmyadmin

I use Wamp server. when we start wamp server first time, it show shows green icon. but when try to access phpmyadmin, the icon goes to orange color. Apache server working fine. only Mysql service is getting stop automatically. Even also their is no…
Dinesh Patil
  • 104
  • 2
  • 8
0
votes
1 answer

WAMP server Error: ERR_CONNECTION_REFUSED (local Wordpress site)

Looks like this error is very common on the internet. But sadly none of the solutions helped me.... All the websites are working fine in WAMP, but Wordpress doesn't!!! I think it's because its https so it's denying the connection... Here is what I…
Abdulrahman Mushref
  • 1,012
  • 2
  • 18
  • 40
0
votes
0 answers

form action=" " is sending me up one directory up instead of staying on the same page (PHP/Wamp)

Project Structure So I've just begun to learn about the MVC pattern and am adapting some of my current code to an MVC structure. Above is an image of my folder structure for reference. The outer index.php is inlcuding the view/index.php, which in…
user3176159
  • 1
  • 1
  • 3
0
votes
1 answer

How do your check for existing .pid before starting wamp?

I'm looking for a way to be sure it is not already running on some other machine before starting it. The best way I've figured out is to check for an existing .pid in the MySQL folder. The easiest thing would be to modify the shortcut but I don't…
Troy Hall
  • 9
  • 3
0
votes
0 answers

I have the following code for referencing but it doesn't work

//Create table 1 $sql = "CREATE TABLE manager_tel_no(manager_id VARCHAR(25) NOT NULL, tel_num VARCHAR(13) NOT NULL DEFAULT '+256000000000' PRIMARY KEY)"; $result = mysql_query($sql); //Create table 10 $sql = "CREATE TABLE…
Phillip Musumba
  • 71
  • 1
  • 2
  • 8
0
votes
0 answers

Cannot access https service from localhost WampServer64

I am using WampServer64 for web development and I have been having an issue with not being able to access web services, namely my own, using https. The same services will work when accessed via http and in production environments on a web server,…
Eric Brown
  • 1,312
  • 3
  • 15
  • 30
0
votes
1 answer

How to make php-debug extension for Atom work on wampserver

I have failed to install this on ubuntu before, now for Windows I don't understand this documentation properly. What I have done is: I set up WampServer, upgraded to 3.0.8, installed its own XDebug. When I phpinfo(), I see that XDebug is…
Yanek Yuk
  • 74
  • 3
  • 11
0
votes
0 answers

How to declare BASE tag in wamp project

my files structure is: c:\wamp64\www\my_project\my_file.php c:\wamp64\www\my_project\scripts\jquery.min.js when using on a real URL, I used to have and all works…
Atara
  • 3,523
  • 6
  • 37
  • 56
0
votes
1 answer

Connect to SQL Server for PHP: Connection could not be established

Connection could not be established. Array ( [0] => Array ( [0] => 08001 [SQLSTATE] => 08001 [1] => 10061 [code] => 10061 [2] => [Microsoft][ODBC Driver 11 for SQL Server]TCP Provider: No connection could be made because the target machine…
Kan Erythrias
  • 13
  • 1
  • 3
0
votes
0 answers

Ajax to wampserver localhost from cross domain website console

I'm using this code and it's not working: myURL = "http://localhost/index.html"; $.ajax({ type: 'GET', url: myURL, success: function(data) { console.log(data); }, async: false }); Or myURL =…