wampserver

how to access phpmyadmin with password

how do I access phpmyadmin/Wampserver(interface) if I have assigned it a password, is there any page where you can input the password? ...

Pear error messages with PHP5.3.0

Hi! The shit really hits the fan when i Open up a newly installed PEAR package on a WAMP server. Here's the error messages. What can i do? Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\PEAR\PEAR\Config.php on line 650 Deprecated: Assigning the return value of new by reference is deprecated i...

fill textbox with mysql data

How do I fill an inputbox with mysql data. So that I can update the database? I have this code that will show the table corresponding to the users request. But I don't know the syntax on how I can fill an inputbox with mysql data. $result = mysql_query("SELECT * FROM t2 WHERE STAT='{$_POST["stat1"]}'"); echo "<table border='1'>...

Connecting to SQL Server in Php - Extension Err

<html> <head> <title>Connecting </title> </head> <body> <?php $host = "*.*.*.*"; $username = "xxx"; $password = "xxx"; $db_name = "xxx"; $db = mssql_connect($host, $username,$password) or die("Couldn't Connect"); $selected = mssql_select_db($db_name, $db) or die("Couldn't open database"); ?>...

PHP Extension Not working

I am using WampServer 2.0 on Php 5.3.0 When I check the extensions, php_mssql is Checked. I also checked the php.ini file to make sure it is not commented out. I have my file dbase.php saved in C:\wamp\www\php. I have tried stopping the service, closing everything, and running it again. I know the problem is that the extension file is ...

creating alias in wamp

I have wamp site on port 81 ( i use IIS alot which is on port 80) Currently my site is http://localhost:81/MySite/ "C:\wamp\www\MySite" How can i set up "MySite" profiles so that is "MySite" is the root. ie "/css/style.css" works. When i use the wizard in wamp to create alias directory i get the following error "Directory does not e...

PHP unable to open folder for writing. permission denied. Using wampserver2

Anybody know how to get around this with wampserver2? I'm trying to use this thumbnail generator http://phpthumb.gxdlabs.com/ ...

Local host WAMP server is not working?

HEllo, I have download the wordpress at my local machine. and designing my website using wordpress. i have download the wanp server and it working fine at loca server last 2 months. 2 days back i run the registry cleaner software for maintenance purpose. but after that when i tries to open wordpress logine details at local server (my ...

php file creation and how to run my php program

I'd like if someone could give me some advice on creating the php file, i know to php language.but where to write it.i have followed some tutorial to run php file in netbeans but its pathethic to download xamp server,apache http server.can u give me the direct of how make configuration and all.i have window7 ultimate and will file i hav ...

mysql database that can be accessed over a vpn?

I have 2 computers. Both with w7 as os. I have installed wampserver on one of them. I have mysql database on wampserver. Then I have made a vb.net program to connect to mysql database. I have put the program on both computers. What I want to do is for those two programs to see the same database that is on one computer. For them to be abl...

vb.net program cannot connect to wampserver

I have a vb.net program that uses mysql as its database. And it works when the computer has wampservr installed. But the program gets an unhandled exception error when the computer where its running does not have a wampserver. The only thing that is installed in it is the mysql connector net. How do I make it work. I just want the two pr...

Wamp Server: Multiple Virtual Hosts are not working on Windows.

I have two virtual hosts on windows(for example: test1.dev and test2.dev). But it always load content of test1.dev for both virtual hosts. Following are my files: hosts: 127.0.0.1 localhost 127.0.0.1 test1.dev 127.0.0.1 test2.dev httpd.conf: <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin ...

How XAMPP 1.7.3 can support PHP 5.3 and PHP 5.2 and other lower PHP

Hi, I would like to know how to setup XAMPP Server with multiple PHP versions (eg PHP 5.3, 5.2, 5, and 4), I know WAMP can easily do this, But I have problem with a WP Plugin using WAMP. Now if XAMPP can support PHP version, It would make my life easy and organize; Compare to installing both WAMP and XAMPP (that I did last time, before ...

wamp server error

I downloaded wamp server, then went to the phpMyAdmin panel and messed around with the privileges of my database, and I gave a new password and username, and now I am getting this message MySQL said: Documentation 1045 - Access denied for user 'root'@'localhost' (using password: NO) I cannot acces my server anymore. ...I tried to rein...

wampserver installation

Hi. I'm trying to install wampserver on my windows xp pc. It is throwing this error: C:\wamp\wampmanager.exe An error occurred while trying to rename a file in the destination directory: MoveFile failed; code 2. El sistema no puede hallar el archivo especificado. Click Retry to try again, Ignore to skip this file (not recommended),...

Why my tables' names are converted into lowercase in phpmyadmin ?

I am using wamp server 2.0 on Windows XP. Whenever I create a table with some uppercases in name, it is converted to lowercase. For example: I create: UserInfo phpmyadmin convert it to: userinfo I am using ubuntu/phpmyadmin in office but this problem does exists there. from where can I fix this. Thanks ...

PHP WAMP install php_tidy

i have installed on my computer WAMP with PHP 5.2.9-2. I want to install php_tidy and i have read some tuts over the internet and i found out that i have to uncomment this extension=php_tidy.dll in php.ini, the problem is that i can't find that line. ...

mysql: how do i get a list of databases available?

i am using wampserver i opened the mysql prompt i would like to know which databases i am able to connect to/view. how do i do this? ...

Use WampServer's MySQL as a real MySQL for going on the net.

Is this a right thing to do? I am using the Apache/Tomcat that comes with the liferay portal bundle and I used the MySQL that comes with WampServer at home but now I want to transfer my portal to a real Server and I wanted to know whether I could still use the Wamp's MySQL or should I install a real MySQL (What's the difference?) Thanks ...

Stopping and Starting Apache Using PHP (!)

Hello all, I have two problems which are related. 1) I have a batch file that contains this: net stop wampapache net start wampapache Which tries to stop and start my wamp server. When I double click the stop.bat file with the above it works successfully. When I try to run that from my PHP script, it stops the server but doesn't sta...