wamp

Getting an error when starting WAMP - "VirtualHost *:80 -- mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with undefined results"

I'm running WAMP v2.0 on WindowsXP and I've got a bunch of virtual hosts setup in the http-vhosts.conf file. This was working, but in the last week whenever I try & start WAMP I get this error in the event logs: VirtualHost *:80 -- mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with ...

Can WampServer be used sucessfully in production?

See title. Is this a bad idea? So everyone knows, and I don't see how this mattered, we've paid for a windows dedicated box and we have existing IIS apps. We just wanted to use a PHP based CMS which installs easier on apache (since it has some dependencies). So, as the title indicated, windows, apache, php, and mysql are requirements. ...

Are there any all-in-one packages that help install wamp on a production server?

I need to install amp on a windows2003 production server. I'd like, if possible, an integrated install/management tool so I don't have to install/integrate the components of amp separately. Those that I've found are 'development' servers. Are there any packages out there that install amp in a production ready (locked down state)? I'm aw...

Is it dumb to develop for LAMP on WAMP?

After becoming somewhat estranged open source, and spending some years developing web applications in ASP.Net, I'm going to start doing quite a lot of PHP / MySQL development. I've quite painlessly installed WampServer to get a development environment up and running on my Windows machine, but the platform I'll be targeting will most li...

WAMP Server not working

Okay so a continuation from this question, where you experts intro'd me to WAMP, which can basically execute PHP within a Windows XP environment. So now I've got it installed, but the tray icon forever shows YELLOW, and when I visit any PHP page in my browser, it just shows me the PHP source! Also, when I visit "http://localhost/" in I...

Setting up Python on Windows/ Apache?

I want to get a simple Python "hello world" web page script to run on Windows Vista/ Apache but hit different walls. I'm using WAMP. I've installed mod_python and the module shows, but I'm not quite sure what I'm supposed to do in e.g. http.conf (things like AddHandler mod_python .py either bring me to a file not found, or a forbidden, o...

The Localhost of visual studio doesn't show up when I have WAMP server installed. How do you make it work?

I've first installed the WAMP server on my system. It used http://localhost to show my files in the www directory. But then I installed visual studio 2008. It too uses the http://localhost/ But it doesn't show up. What should I do? ...

Wampserver problem: Undefined variable: mywampfp

Can't get Wampserver running. Just installed it but get the following in php_error.log: [28-Jan-2009 10:13:17] PHP Notice: Undefined variable: mywampfp in C:\wamp\scripts\refresh.php on line 252 [28-Jan-2009 10:13:17] PHP Notice: Undefined variable: i in C:\wamp\scripts\refresh.php on line 252 Anyone know what's wrong? Thanks! ...

Mod Rewrite Question - forwarding parameters to new parameter names

Hi, I've tested the following Mod Rewrite on MAMP, but for some reason, it fails on LAMP. Any idea of what I am doing wrong? RewriteEngine on RewriteCond %{QUERY_STRING} ^newParamA=(.*)&newParamB=([0-9]*)$ RewriteRule ^newfolder/newsubfolder/$ oldfolder/oldsubfolder\.php?oldParamC=%1\&oldParamD=%2 [QSA,L] The idea is that a query suc...

character encoding seems to work on a MAMP server but not on a WAMP server?

Hi, I've working on a web application, that should be able to accept tags and search queries in multiple languages. That's not asking too much, is it? Now, on my development MAMP server everything is great. I add multilingual tags, search in any language I want etc. On the other hand, on the production WAMP server, multilingual characte...

Config problem with phpThumb on WAMP.

I'm having trouble getting phpThumb to generate thumbnails on WAMP. The problem seems to be that the path to the source image is be being constructed incorrectly, as indicated by this debug info: DEBUG phpThumb: ResolveFilenameToAbsolute() prepending $this->config_document_root (C:\Projects\WordPressTest\Site\wp-content\plugins\yet-anot...

question regarding wamp

(maybe not a programming question but related) if im on a local network is there a url that i can type that will allow all users on the local network to view a local hosted website? there is one feature called put online but i would need to be connected to the internet. can it be done another way? ps: i know this question is off subjec...

WAMP - PHP shell_exec() problem

I'm using WAMP as a server, and I have a need to execute svn, which can be found in my Windows directory: C:/Program Files/Subversion/bin/ The problem, is that when I launch the php program from the server, it won't produce output. It works from the command line, which makes me think this is a permissions problem with WAMP. However afte...

How to configure WAMP (localhost) to send email using Gmail ?

Hi, I'm learning PHP and I want to use the mail() function from my localhost. I have WAMP installed and a Gmail account. I know that the SMTP for Gmail is smtp.gmail.com and the port is 465 (more info from gmail). What I need to configure in WAMP so I can use the mail() function? Thanks!! ...

can't connect to mysql with php

I can't seem to connect to mysql with a php script, even though I can connect fine with phpmyadmin. I created a user with a password, and gave it the proper priveleges for the db, but everytime it connects it dies saying access denied. I am using xampp on a windows xp box. Firewalls are all disabled, and I've checked the username nad ...

CURL for WAMP

I’m new to PHP and I’m trying to learn how to parse information, I’m trying to use CURL but I’m not able to install it on my desktop WAMP on Windows Vista. How do I install CURL? ...

installing zend framework with wamp server

Im trying to install zend framework with wamp server but it is not working properly. I downloaded the zend framework and the create the folder in C:\wamp\library\Zend and then in php.inc I got something like this ; Windows: "\path1;\path2" ;include_path = ".;c:\php\includes:C:\wamp\library" Now when i try to run the sample blogger.ph...

Zend Framework very bad performance on WAMP

I am developing a project on windows with wamp installed using zend framework. Unfortunately it has very slow performance, although I did the things mentioned in the manual: remove require once added apc I recently installed Scienta ZF Debug Bar v1.3, and here is an example of results i get: Queries: 48 in 53.01 ms Memory: 9188...

Can IIS supporting ASP.NET and LAMP supporting PHP coexist on the same server?

Can IIS supporting ASP.NET and WAMP supporting PHP coexist on the same server? We already have a WAMP stack setup on a Windows Server 2003 box to support some internal PHP applications, and I want to also setup CI Factory on that box which will try to configure IIS to support it's ASP.NET based dashboard. I want to make sure that there...

Suggestions/Tricks for Throttling a PHP script

I have a scheduled task that runs a script on a regular basis (every hour). This script does some heavy interaction with the database and filesystem and regularly takes several minutes to run. The problem is, the server's cpu-usage spikes while the script is running and slows down normal operations. Is there a way to throttle this proces...