Pages: Previous12345...LastNext
Current Page: 2 of 13
Results 31 - 60 of 388
12 years ago
c2dan
When running the php file make sure you're openning your web browser and going to
Forum: WampServer English
12 years ago
c2dan
What do you mean by Unfortunately still doesn't recognize the shtml. To run your .shtml files you'll need to go to . Opening your .shtml file directly into your web browser will not work.
Forum: WampServer English
12 years ago
c2dan
Just create a file called .htaccess in WAMP's WWW folder (eg: C:/wamp/www) and copy and paste the followings lines into that file. # Enable Server Side Includes Options +Includes # Configure file extensions for SSI AddType text/html .shtml AddOutputFilter INCLUDES .shtml NOTE: Make sure you create the .htaccess file through Notepad first. Just open Notepad and choose File > Save As.
Forum: WampServer English
12 years ago
c2dan
Wombat Wrote: ------------------------------------------------------- > > 2) Also can I name the web root as "htdocs" and > not www? > To change the default directory left click the WAMP tray icon and choose Apache > httpd.conf Scroll down and find the following directives DocumentRoot "c:/wamp/www/" <Directory "c:/wamp/www/">
Forum: WampServer English
12 years ago
c2dan
Go to C:/wamp/bin/apache/apache/apache2.2.11/bin and delete the file called php.ini Now restart all services.
Forum: WampServer English
12 years ago
c2dan
To upgrade simply go to and download the the latests ZIPPED package for php5.3.2. Make sure it is the VC6 Thread Safe build. DO NOT DOWNLOAD THE INSTALLER. Extract the downloaded zip to C:/wamp/bin/php/php5.3.2 Copy the files, php.ini, phpForApache.ini and wampserver.conf from your existing php5.3 (eg C:/wamp/bin/php/php5.3.1) folder to the new php5.3.2 folder. Now start wamp, OR if wa
Forum: WampServer English
12 years ago
c2dan
When WAMP is installed it doesn't setup any domains. Only the address will work. localhost.localdomain needs to be setup as a virtualhost and added to the hosts file in order for it work properly. It seems the issue is more to do with Wordpress or the web address you're using. You need to be more specific with what you're doing.
Forum: WampServer English
12 years ago
c2dan
Does this happen if you go to [12.0.0.1] too? (ip address equivalent to localhost). If it does what color is the wamp tray icon it should be white. If it is red/yellow then it means wamp is not running properly due to an error.
Forum: WampServer English
12 years ago
c2dan
Problem is by default short tags are disabled (tags such as <? ?> and <?= ?>. To enable these left click wamp tray icon and choose PHP > Settings > short open tag.
Forum: WampServer English
12 years ago
c2dan
Make sure wamp is running and you're save all your .php files in WAMPs www folder (eg C:/wamp/www). When running your php scripts you need to open your browser and go to Opening php files directly into your web browser will not work as web browsers do not understand PHP code.
Forum: WampServer English
12 years ago
c2dan
If you're using Linux you will be better off installing Apache, PHP and MySQL via your linux distros package repositories. SuPHP and SuHosin are usually installed automatically. I do not recommend you to try XAMPP or any other all in one package for linux. CentOS is the prefered OS for a Server. However you can use any linux distro of your choice.
Forum: WampServer English
12 years ago
c2dan
phpMyadmin can handle any file size. The problem is with PHP. By default PHP is configured to have a file size upload limit of 2MB. To change this left click the wamp taskbar icon and go to PHP > php.ini Now find this line upload_max_filesize 2M Change 2M to a higher value for example, 10M for a limit of 10MB
Forum: WampServer English
12 years ago
c2dan
>> But doesn't wamp clone what a unix server does anyway as it uses all the same software, apachef, php, mySQL etc.? Apache, PHP and MySQL are all available for Windows. WAMP does not emulate a linux server environment as such. >> As we are using the same php files on wamp as we do on our Linux host, I figured we could use these addons No this is not possible. SuPHP and SuHos
Forum: WampServer English
12 years ago
c2dan
2.0i comes with PHP5.3. The version on your desktop is probably an older version which came with PHP5.2.x
Forum: WampServer English
12 years ago
c2dan
SuPHP and SuHosin is for unix based systems only and is not available for Windows. Your PHP scripts will function the same on Windows as they would on your website.
Forum: WampServer English
12 years ago
c2dan
There is no wrong or right way. It is up to you how you setup your sites on WAMP. However for me I prefer to setup a virtualhost for each site I work on rather than using Aliases.
Forum: WampServer English
12 years ago
c2dan
You should start looking to upgrade your script so it works without register_globals. Register_globals has been disabled for years and is soon to be completely to be removed. You'll need to downgrade to PHP5.2.x. You can do this by clicking the Addons link in the menu and downloading the latest 5.2.x build.
Forum: WampServer English
12 years ago
c2dan
Make sure you're going to to run your php scripts, never open php files directly into your browser. If your script is using short tags eg <? ?> or <?= ?> then you will will enable this. To do so left click wamp tray icon and choose PHP > PHP Settings > short open tag
Forum: WampServer English
12 years ago
c2dan
1440556 Wrote: ------------------------------------------------------- > the mysql console is not working and i never made > a password for it > > Please Help If it asks for password just press enter. By default there is no password set for mysql.
Forum: WampServer English
12 years ago
c2dan
You should learn how to use the preg_*() based functions before using them. They have different syntax compared to ereg*() based functions. Link to function documentation ->
Forum: WampServer English
12 years ago
c2dan
Download and extract phpMyAdmin3.3.1 to C:/wamp/apps/phpmyadmin3.3.31 Now go to C:/wamp/apps/phpmyadmin and copy config.inc.php to phpmyadmin3.3.31 folder Next go to C:/wamp/alias/ and open phpmyadmin.conf in notepad (or another other text editor). Find where it says phpmyadmin to phpmyaddmin3.3.1 Save phpmyadmin.conf and restart the Apache service. When going to you should be using php
Forum: WampServer English
12 years ago
c2dan
If you have Apache, PHP and MySQL setup and running fine then there is no need for WAMP. If you want to use wamp then make sure you completely remove Apache, PHP and MySQL before you install WAMP.
Forum: WampServer English
12 years ago
c2dan
How are you accessing your javascript? Just make sure you're placing your javascript code within script tags eg <script type="text/javascript"> your code here </script> Or if you have your javascript in an external file then use <script type="text/javascript" src="path/to/your/ code.js"></script> Wampserver does not need to be configu
Forum: WampServer English
12 years ago
c2dan
How are you setting up the alias/virtualhost?
Forum: WampServer English
12 years ago
c2dan
Go to windows.php.net/download/ and download the zip package titled VC6 x86 Thread Safe under the PHP5.3.2 heading Extract the contents of the zip to C:/wamp/bin/php/php5.3.2 Copy php.ini, phpForApache.ini and wamserver.conf from the php5.3.0 folder to the php5.3.2 folder. Now left click the wamp tray icon and choose PHP > Version > 5.3.2. If you do not see 5.3.2 listed right c
Forum: WampServer English
12 years ago
c2dan
When installing the addon, stop all wamp services. Left click wamp tray icon and go to PHP > Versions and choose the addon you just installed. Wait for wamp tray icon to turn white again.
Forum: WampServer English
12 years ago
c2dan
Left click wamp tray icon and choose Put Online. Make sure you have allowed full access to port 80 in your firewall. If your using a router you'll need to configure it to forward all port 80 connections to your computers LAN address, eg 192.168.2.101 For port forwarding instructions go to All you should be able to do now is give your IP address to your friend and he should able to connect
Forum: WampServer English
12 years ago
c2dan
Just set error reporting to E_ALL
Forum: WampServer English
12 years ago
c2dan
It should do, but you may have to change the hostname/username/password your webhost requires when you upload.
Forum: WampServer English
12 years ago
c2dan
If you created a virtual host you need to go to instead of
Forum: WampServer English
Pages: Previous12345...LastNext
Current Page: 2 of 13