Quantcast
Channel: WampServer - WampServer English
Viewing all 3227 articles
Browse latest View live

403 Forbidden (5 replies)

$
0
0
Hi,

I just install WAMPSERVER (64 BITS & PHP 5.6.15 & PHP 7) 3

I change the state of server to "Put online". I can visit the root page of wamp, but when I access the sub-folder I got 403 code.

Here's the error code of apache server.
[Thu Apr 28 00:06:31.349994 2016] [authz_core:error] [pid 6184:tid 872] [client xxx.xxx.xxx.xxx:58883] AH01630: client denied by server configuration: C:/wamp64/www/sample1


I don't modify the httpd.conf and create vitrual hosts.

I also tried to change "ServerName my.public.ip:80" but it doesn't work too, so I set back to "ServerName localhost:80"

How can I fix this problem? Thanks for your help

WAMP3 - PHP 5.3.10 (4 replies)

$
0
0
I have a web which uses a SAP RFC Connector. With this, it is required to use php 5.3.10. I saw at the "Secondary repository of Wampserver files" an 5.3.8. How can I get a 5.3.10 to run with WAMP3?

Cant access folder to display images. (1 reply)

$
0
0
I have wamp installed at c/www I a virtual host set up as hama so my browser shows it as [hama] the folder within www that has my project in it is called mi6 . within mi6 I have folder for images called uploads. so my structure is : www/mi6/uploads/ I code in php. I have a script that uploads images to the uploads directory without a problem. I can upload single or multiple images. All without problem. However, when I try and access the /uploads directory to display images within a script I get broken image icons. If I right click on the icon and say open image in new tab I get a 404 but can see that the image path is [hama] which is correct. So I am at a loss. I can write to the directory but not read from it. Any ideas would be appreaciated.

WAMP does not update my HTML page (1 reply)

$
0
0
Hi,

Windows 10, 32 bit
apache 2.24.9
mysql 5.6.17
php5.5.12

Icon is green, ,PHPAdmin page loads

I have a website -online school enrollment.index page loads -[localhost]

the changes(HTML, script or styles) are not being updated on the page. please help.

Connecting to nonwamp MySQL version (2 replies)

$
0
0
Several months ago I installed MySQL (version 5.6.29) from the Oracle website.

A few days agao I installed Wampserver, which includes MySQL version 5.6.1.7. The wampserver install went fine. See details below.

However, all my data is in the version I installed from the Oracle web site.

Can I get Wampserver to use/point to the non-wamp version? How?

Thanks in advance for the help!


* Windows version used -Windows 7 64 bit
* Version WampServer - 2.5 64 bit
* Apache Version - 2.4.9
* PHP Version - 5.5.1.2
* MySQL Version - 5.6.1.7 (Wampserver version)
* What color is the WampServer icon - Green when wampmysqld64 service is started. Yellow/orange when MySQL (version 5.6.29 service is started)
* Do you have access to localhost (Homepage WampServer)? - yes
* Do you have access to phpMyAdmin? - yes

testing php file (2 replies)

$
0
0
I have just downloaded the latest edition of wampserver. I made sure that all services were running and went to local host which gave me the presentation of all the option in wampserver which gave me the indication that everything was fine,now i have to admit i am i bit of a novice with wampserver which is why i am trying to use the program to gain knowledge. however i am unable to run a test php file. i went into www. directories opened up a new text file put the code<? echo hello world ?> i saved the text to all files and named the document test.php. So i went to my browser and typed in [localhost] and the correct reference to my documen which is test.php instead of displaying hello world this then took me to a page that was [localhost] on this page was a whole lot of sites on how to run a test php file so i decide to look at a few and they were suggesting to do the exact methods i was using if you have any suggestion please feel free to give me some advice cheers.

Site can't be reached. Server DNS address could not be found (2 replies)

$
0
0
Hello,

Here is my problem:

I am trying to access a file (index.php) that is in a folder (my-site) which is a subfolder of the www folder. I went to the wampserver homepage (by typing localhost into browser) and then clicking on the "my-site" folder that appears under the "Your Projects" title.

However, this appears: This site can’t be reached my-site’s server DNS address could not be found.
Also, don't know if this helps but the url that brings this error is just "my-site"

Important Information:

I am running wampserver 64-bit on my 64-bit Windows Machine.
The wampserver icon is green
I can access phpmyadmin.
When I type "localhost" into my browser, the browser does go to the wampserver homepage
I have downloaded both 32-bit and 64-bit versions of wampserver
(don't know if this helps but I have edited my hosts file and "activated"(removed the # sign) the line with 127.0.1)


Thanks,
Aaron

Downgrade PHP version (2 replies)

$
0
0
Hi
I need to test my apps with an older version of PHP (php 5.3) currently i have wamp with php 5.6 is there a way to do this downgrade ?

Manually Adding Newer Versions (2 replies)

$
0
0
What is the proper way, step by step, to add newer versions of PHP, mySQL, and phpMyAdmin? I've tried some processes I found online but they do not work properly. I figure the best answer should come the people who know WampServer inside out!

Thank you in advance for your help.

Mike

CakePHP MSSQL connection issue (1 reply)

$
0
0
Hello! This is basically my first time i'm trying to connect to a MSSQL, so i'm a little confused if i did everything correctly, because i'm getting this error:

Error: A Database connection using "Sqlserver" was missing or unable to connect.

The database server returned this error: SQLSTATE[08001]: [Microsoft][ODBC Driver 11 for SQL Server]Named Pipes Provider: Could not open a connection to SQL Server [53].

I have:

Wampserver 3 (32 bit)
OS: Windows 10 (64 bit)
PHP Version: 5.6.15
Apache Version: 2.4.17


I downloaded and added to "C:/wamp/bin/php/php5.6.15/ext" the files:

php_mssql.dll
php_pdo_sqlsrv_56_ts.dll
php_sqlsrv_56_ts.dll


I modified the file "php.ini" adding the lines:

extension=php_mssql.dll
extension=php_pdo_sqlsrv_56_ts.dll
extension=php_sqlsrv_56_ts.dll

And then i verified that the extensions were added correctly and they are.


In my database.php file i have the following lines:

class DATABASE_CONFIG {

public $default = array(
'datasource' => 'Database/Sqlserver',
'persistent' => false,
'host' => '.\SQLEXPRESS',
'login' => 'sa',
'password' => 'thePassword',
'database' => 'theDatabase',
'prefix' => ''
);
}

The database is a local database on SQL Server 2014 Manager Studio, i created the database recently but i still cant figure out why im still getting that error.

I have also tried to change the host to 'LOCALHOST\SQLEXPRESS' but its still the same.

I would really appreciate if someone could help me with this. :)

wamp reading a xampp database (2 replies)

$
0
0
Hello.

I've been using wamp for most of my web projects but I also have a xampp installation for a couple of them (don't ask me why). I've been working like this for a long time and everything worked fine.

I hadn't acced any of these projects for some time but today I needed to work on one of my sites and I find that, after running the wamp server, when I access phpmyadmin, the databases I see are the ones I have on the xampp installation.

I have been trying to access the ones in wamp but whatever I do I still get the xampp ones.

How can this even be possible and how can I fix it?

Thanks for your help.

P.S. I recently updated form Windows 7 to Windows 10, in case that has anything to do with this.

How to Delete Items from WampServer (2 replies)

$
0
0
Now that WampServer is using Adminer instead of phpMyAdmin, how do I delete them from the menu. I'm trying to cut down on the clutter and I have 2 phpMyAdmin entries in addition to Adminer. I'd like to remove phpMyAdmin completely the proper way so there are no left over issues.

Thank you in advance.

Mike

Phpmyadmin not working on wampserver (1 reply)

$
0
0
Hi guys :)

I have a problem. I installed wampserver on my computer and phpmyadmin, but when i try to connect to phpmyadmin it doesn't work. It appears a message saying it is a #2002 error - something about a forbidden atempt to access a socket. I have no idea how to solve this and my teacher told me to google the answer. Sadly that is not working :(

Hope you can help me.

Thanks :)

How to have Python script use values from database & display the script's output on a php file? (1 reply)

$
0
0
Hi All,

So I am using wampserver v 3.0.0. I have created a database using MySQL and I have a working index.php file. I was wondering if it was possible to have a python file (which does some computation that only python could [easily] do) that references values from the database I created and then displaying that output on the php file.

How would I reference the values in the database in the python file?
How would I take the output of the python file and display that on a php file?
What else needs to be done/configured?

Thanks,
Aaron

Oracle Instant Client for XE 11 (1 reply)

$
0
0
Hi,

I have just installed wamp because I had issues with XAMPP installing the OCI in order to connect to oracle database.

I hope this is possible in Wamp? can you please guide or send the step-by-step?


Thanks,
Jassim

run perl on wamp (1 reply)

$
0
0
How to config to run perl on wamp server. I configured as follows [phpflow.com]. But run perl then error 500 Internal Server Error
run: localhost/hello.pl
content file hello.pl
#!C:\Perl\bin
print "Hello";

Wamp icon is green but not reacting on click (no replies)

$
0
0
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. Either left or right mouse click are not working. Even if I want to shutdown WAMP I have to do that over Task manager. WAMP is running on Win7 x64 machine. Previous version of WAMP 2.2 has been working. I have tried uninstalling and installing again all Microsoft C++ packages but still no success.

I have tried Checks VC++ packages installed from Wamp backup page, and all packages are installed successfully.
At the same time, tooltip is visible when I cross over the Wamp icon.
All services are running and icon is green.

Upgrade from wampserver 2.5 to wampserver 3.0 (1 reply)

$
0
0
We have installed the 64 bit wampserver version 2.5; its current components are Apache 2.4.12; PHP 5.6.15; mySQL 5.6.17
We want to upgrade to 64 bit wampserver version 3.0; Apache 2.4.17; Mysql 5.7.9; PHP 5.6.16_7.0.0

Please point us to instructions as to how we can do this upgrade. Thanks.

bug wamp 3 64bits (15 replies)

$
0
0
Good Morning.
I'm sorry for my English.
Well, after checking an error in wamp 3 64 I tested four machines all with windows 7 pro clean and only with java netbeans and updates of the windows , and three with INTEL and AMD .
I tested with all current versions of the site and wampserver3_x64_apache2.4.17_mysql5.7.9_php5.6.16_php7.0.0
presents the error to a " var_dump " beyond the correct information , also displays the location and the line of command.

In other everything works properly.
I could not find a solution that was not the version 3 of 32 bits that do not contain php 7 .

Please confirm if you have the same error and if there is a solution

Put Online Button Dissapeared (1 reply)

$
0
0
Hi, I had installed Wamp server a while back and i remembered it having a put online option, i uninstalled Wamp server but reinstalled it but the option to put the server online has disappeared, how can i put my server online?
thank you.
Viewing all 3227 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>