wamp

WAMP: How to show warning messages in browser?

Dear all, I have a WAMP installation on my machine and I am developing a PHP website in that. Can anyone tell me what settings to be changed in order to show all errors / warning messages in the browser? Thanks in advance ...

Wamp and file permssions using windows

Apologies if already answered. None of the listed answers seemed satisfactory. I'm using WAMP to build a site (obviously windows). Folder for images needs permissions turned on so they appear on the site. Everytime I use "Properties" on the folder, it reverts back to read only. Altering things in the advanced toolbars and trying to make...

Create an Installer package for Installation on WAMP

I have developed a PHP web application, now I am thinking about deploying it on Windows. To ease my deployment, I plan to create an installer for it. This installer should do the following: Check for Pre-requisites such as Apache, MySQL etc, install them if they are not available Put the PHP application on Application folder, and in t...

How to migrate from my WAMP environment to using MSSQL?

I have on my local PC installed WAMP environment (using WampServer OS). Now I would need to change one script from working with MySQL to MSSQL. I have no idea at all how to proceed, where to download MSSQL, how to install it and how to connect with PHP? Thank you very much ...

Wampserver Error

Ok http://localhost/ won't load now. Recently I installed skype and am aware of the skype port conflict error. I have removed 'use port 80 and 443 as alternatives for incoming connections' from options and still no luck. I have also uninstalled skype, reinstalled it and restarted my machine several times to no avail. Also, I just tried t...

PostgreSQL trouble on windows PHP

I'm using WAMP on windows, which installs PHP, Apache and MySQL. I'm now working on something new that requires PostgreSQL. The current install won't do it for me, as I keep getting these errors: Call to undefined function pg_query() Always undefined function I've installed PostgreSQL 8.3.7-1 for windows, added php_pgsql.dl...

good stand-alone svn client

Hi - I'm currently working with partner on a PHP project. We both edit directly to a local server (all files are stored on the server, which is also running a WAMP stack). I'm looking for an SVN client that will monitor and save all changes to the htdocs folder, and will update a remote SVN repository, through the web. It would be a g...

Trying to make an function call to an external file with PhP, MySQL using WAMP

Hello All, I'm sure there is a simple answer to this, but I have been fumbling with everything for almost a week now and surrender. I am trying to build a shopping cart app and every coding solution I build will work when I include the code on the same page, but when I try to use an external page to run the function it does not seem to r...

how to configure codeigniter mod_rewrite on wamp?

Hi guys could you please tell me how can I configure codeigniter mod_rewrite on wamp? I've tried enabling it through the wamp menu(wamp-->apache-->apache modules-->rewrite module) and restarting wamp but it's like nothing happened. I'm asking you guys this cause I need to get rid of the index.php in my codeigniter urls through .htacces...

my index.php was change by $loc.

hi guys, im using WAMP2 right now, but when i click the projects in my "Your Projects" under WAMP page. it change to $loc. Can you help me guys... ---- PHP Rules ---- ...

.NET developer looking to work on a LAMP stack, need help with workstation environment.

My main development, and workstation, is on an MS stack in .NET. I'm using IIS for my web endeavors, and everything works great. However, I have a need to be able to work on and test on a LAMP stack for various reasons. I have various clients that are running on LAMP stacks and need help with projects. My question is, given that I do...

Porting from WAMP to LAMP

Hi, Completely developed in WAMP and I need to deploy it on a LAMP setup in the organisation. I want to make sure the deployment goes of smoothly and takes as little time as possible. What are the thing I would need to change before deploying it in LAMP? Also is there any way I can test it in some simulated LAMP environment? Edit: I us...

How to make local server working after wamp installation?

Hi, I have just installed wamp and I copied all the projects inside www folder but when I browse http://localhost/project its displays error like this. Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster@loca...

Different types of WAMP's?

"WAMP" is an acronym formed from the initials of the operating system (Windows) and the package's principal components: Apache, MySQL and PHP (or Perl or Python). Personally I use XAMPP Lite, but thats because I haven't tried anything else. I've just been looking as to how to install SQLBuddy on it, and can't find out. I've heard about...

WAMP + RewriteRule : Copying site to subfolder

I've just installed WAMP, and now I'm trying to copy my files from my server to my local machine. I have a rewrite rule like RewriteRule .* /index.php?url=$0 [L,QSA] But that seems to redirect to http://localhost/index.php when I actually want http://localhost/mysite/index.php. So I figured RewriteBase /mysite Would do the trick, b...

wamp server is not working

i have downloaded some files which have .php extension.Then i installed wamp server on my pc. but couldnot be able to view those files.i have also turned off the IIS from the add/remove windows program.still i am not able to view the pages. ...

Stack Overflow on IIS 6.0

Hi, I am using WAMP as localhost on my pc, and upload all data to the hosting (using IIS 6.0). I am using lightbox gallery in one post, and in the sidebar, to show recent photos from that gallery (on the sidebar). my code on the sidebar as follows: echo do_shortcode('[gallery id="66" size="large" columns="4" num="12" pagenavi="0"]'); ...

Slow response to database write from php

Hello All, I have my PHP scripts running on the WAMP server. Here's what i am doing PHP script A that queries the database and gets a set of rows (I have set the set_time_limit (0) // unlimited time for the script to execute ) Based on the result set I execute a tcl script for each row of the result set The TCL script takes about a...

How to get CURL to work with PHP on Windows? (WAMP)

Update: The problem appears to have been corrupt DLLs somewhere in my PHP installation, or possibly a bug in PHP 5.2.9 on Win2k. I downloaded the windows (binaries-only) distribution of PHP 5.2.10 from php.net and extracted that to my c:\PHP directory. After doing that, everything worked fine. Update2: I undid everything that I tried ...

Can't create file using TCL,which is executed through PHP

Hello, I have a PHP script that executes a TCL script . The TCL script creates a file , but when I execute through PHP (from browser) , tcl is not able to create a file. Can anyone guide me . //PHP code <?php $app = 'tclsh84'; $descriptorspec = array( 0 => array("pipe","r"), 1 => array("file","C:/wamp/www/tcl/bin/out.txt","w"), 2 ...