wamp

WAMP Curl installation

I have uncomment the following from the php.ini file ;extension=php_bz2.dll extension=php_curl.dll ;extension=php_dba.dll Also ,I have copied the php_curl.dll to windows\system32 and restart the apache server. I am testing the follwoing script <?php $curl_handle=curl_init(); curl_setopt($curl_handle,CURLOPT_URL,'http://example.c...

Eclipse for PHP

I have installed WAMP and enable some extension. After that i have installed eclipse for php. now my question how can i let eclipse now that i should use apache installation and the version of php which came with WAMP. I will be developing web apps on windows. ...

createing wamp server with cygwin ?

i notice that in cygwin we can install apache2. can we make a wamp with cgywin ? ( php mysql and apache ) better with phpmyadmin ? or we cant do that ? if we can, please give me a tutorial to learn on. Thanks Adam Ramadhan ...

Use PHP alternate syntax with WAMP

Is it possible to use PHP alternate syntax (as described in the CodeIgniter user guide), on WAMP? ...

Testing if gzip is working locally

I've a local wamp setup and installed the deflate_module in apache. I've also set up the following rule in .htaccess. <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript text/javascript application/javascript application/json </IfModule> But how can I test if ...

HTML Wamp - debugging required

Well I built a page which is working absolutely fine as you can see below: but when i copy my folder to C:\wamp\www\myFolder and run it through localhost using WAMP Server it look something like this the problem is that the attached Style Sheets are not working and the Java Script is not working. see below where you see the gre...

How to get Apache 2.2 to load *.php?

I've looked around for hours trying to get this to work. I'm not new to programming in general but I've never done anything with servers and PHP. I can't get Firefox to open any *.php pages in my root directory (c:/wamp/www). It tells me Foo is a PHP script, and gives me 2 options: open it with ... or save file. To start I downloaded a...

did wamp server supports ffmpeg in my windows local machine

Did wamp server supports ffmpeg in my windows local machiine. If so can I straight away run my code in wamp server to encode video (or) did I have to install the ffmpeg or any related thing to run it ...

ffmpeg setting up in wamp (in local) OR server

can anyone explain the procedure of installing ffmpeg in wamp. I got an answer to my previous question on ffmpeg and wamp that we have to interface the ffmpeg (here) with wamp. I need to have a step by step process of how to do this, as I am confused with the interfacing little bit I also want to know what is a way to install this ffm...

Is it Possible to use PHP HttpRequest in WAMP?

I am trying to use PHP HttpRequest Class and it seems that it's not installed with WAMP. Is it possible to have this extension available on Windows. I saw somewhere that "a DLL for this PECLis not available at this moment". Can someone confirm if it's possible to use PHP HttpRequest on Windows ...

PHP "parse error, expecting `T_STRING' " - Please help with code...

I'm trying to build a dynamic php site using MVC principles. I'm using WAMP on Win XP. Here's the code: Index.php: <?php require_once("User.php"); session_start(); include ("Header.php"); include ("Footer.php"); ?> Header.php: <?php echo '<?xml version="1.0" encoding="utf-8"?>' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML...

App wants to send email from localhost

Hi, I'm developing a php application and need to test the functionality of sending emails. Problem is I'm using a development environment (wamp on windows) so I'm guessing I don't have access to smtp or a mail server. It looks like I may need to install a separate application that would act as my mail server. What's the easiest way t...

devel WAMP stack with mail server and open SSL

I'm developing an application that requires testing email. I'm currently using wampserver, but it doesn't come with a mail server and setting one up has been a pain. Also if I use an external mail server like yahoo, I run into issues because wamp doesn't come with SSL which yahoo's mail server requires. So I'm trying to save myself...

I have just written over my WAMP index.php! Anyone know how I can get another copy without re-installing WAMP

I've just written over my WAMP index.php ! Anyone know how I can get another copy without re-installing WAMP ...

phpinfo() shows cURL enabled, I'm still unable to use it

I am in the process of making a page fetch script & I was using curl for it. I used the function: get_data($url); but I always get the error: Fatal error: Call to undefined function get_data() in D:\wamp\www\grab\grab.php on line 16 I am using WAMP server and I have enabled curl extentions in all the ini files, I have checked the ex...

How can I host multiple sites on WAMP and CodeIgniter?

Hi everyone, I am currently developing a CoeIgniter website on WAMP (in offline mode). However, I would like to develop two more: One CI site And one Wordpress site For the CI site, I've read that you can have multiple application folders (all pointing to the same system folder), but I'm not sure how to direct the request to one or ...

create folder from server on another machine

1) i have a server hosting web page ( intranet ) . Intent is to create folders on another machine. How is it possible. (using php). 2 ) As of now what i understand is only if the two machine's have wamp installed on each, then it is possible ( only in www folder ). I need the folder's created outside of www. Is it possible to do symbol...

web dev environment : cvs + localhost + server in sync : nusphere phped + wamp

Hello, I am a freelance web developer (php/js/xhtml/css etc). Currently: 1) I use wamp on windows 7 for local development (localhost) 2) I use nusphere phped. 3) then when I have to check it on server, I transfer all files through cuteftp to my server. 4) I dont use any kind of CVS at all. What I want is a development environment whe...

Source code for a WAMP stack

Can i get the source code for a WAMP stack installer somewhere? Any help appreciated ...

Setting up Apache Virtual Hosts and ProxyPass

I am trying to set up Virtual Hosts on my WAMPSERVER 2.0i installation. Currently it looks like that: http://domain/main http://domain/sub1 http://domain/sub2 I need to set it up so that 1) accessing http://domain/ would redirect to http://domain/main, but 2) http://domain/sub1 and http://domain/sub2 remain working as they are. When...