Xylene Posted September 13, 2004 Share Posted September 13, 2004 Running a webserver on Windows.. :x :no: Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584551802 Share on other sites More sharing options...
Large Posted September 13, 2004 Share Posted September 13, 2004 Running a webserver on Windows.. :x :no: Whats so wrong with a webserver running on Windows, I have often used WAMP servers, theres nothing wrong with running a webserver on Windows !!! Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584551834 Share on other sites More sharing options...
raider360 Posted September 16, 2004 Share Posted September 16, 2004 (edited) hi all :) I have one question about MySQL. When I am installed it, I have already some users. There are: "@%", "@localhost", "root@%", "root@localhost". What is this means? :huh: Can I make only 1 user with all privileges? Edited September 16, 2004 by RaiderOnline Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584569936 Share on other sites More sharing options...
Ultra Frosty Posted September 16, 2004 Author Share Posted September 16, 2004 What is that program you took at screenshot of called? Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584572634 Share on other sites More sharing options...
Garry Posted September 16, 2004 Share Posted September 16, 2004 Isn't the PHP asapi module for Apache 2 still experimental? I know when I tried it (over a year ago now) it didn't work too well. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584572656 Share on other sites More sharing options...
Large Posted September 16, 2004 Share Posted September 16, 2004 Apache 2 works fine now, I have installed an Apache 2, MySQL and PHP webserver and they all work fine together on Windows ! Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584572840 Share on other sites More sharing options...
vhane Posted September 17, 2004 Share Posted September 17, 2004 hi all :)I have one question about MySQL. When I am installed it, I have already some users. There are: "@%", "@localhost", "root@%", "root@localhost". What is this means? :huh: Can I make only 1 user with all privileges? The format is this: user@hostmask "%" is a wild card. A blank username and a wildcard after the "@" means that "@%" is an anonymous user that can connect to your server from any host. I'd advise deleting the account. I'd advise deleting the anonymous user that can connect from localhost too. So, delete "@localhost" also. "root@%" Means that root can connect from any host. You may or may not want this. Consider allowing root to connect from localhost only, or only from a box on the LAN. For example: "root@192.168.0.%" I would advise you to create a user for your own use, with priviledges granted for specific databases only. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584575295 Share on other sites More sharing options...
lefty Posted September 18, 2004 Share Posted September 18, 2004 This is an awesome guide. Good job :) Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584582061 Share on other sites More sharing options...
Ultra Frosty Posted September 25, 2004 Author Share Posted September 25, 2004 I'm looking at PostgeSQL, as it now supports Windows. I'll do some tests and write a setup guide along with a comparison between the two as soon as I can. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584621206 Share on other sites More sharing options...
Ultra Frosty Posted November 2, 2004 Author Share Posted November 2, 2004 Okay. I updated the guide and Redid the MySQL install for the new MySQL 4.1. It should be a lot easier for people to setup with the installer and not needing to use the command line for everything. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584850567 Share on other sites More sharing options...
Jervous Posted November 8, 2004 Share Posted November 8, 2004 Is there a way to do the same thing for PHP 5? Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584883037 Share on other sites More sharing options...
Ultra Frosty Posted November 10, 2004 Author Share Posted November 10, 2004 Is there a way to do the same thing for PHP 5? 584883037[/snapback] I don't recommend using PHP5 to any novice users, as the only feature that catches my eye is very good OOP support. But, just change the code in httpd.conf to: LoadModule php5_module "C:/PHP/php5apache2.dll" AddType application/x-httpd-php .php and copy php5ts.dll to your C:\WINDOWS\system32 directory. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584894120 Share on other sites More sharing options...
Jervous Posted November 10, 2004 Share Posted November 10, 2004 PHP 5 is actually better to start learning now, as it is still in an early age, so by the time you have learned some of the things needed in scripts a stable release will be out and you can. Also, since you install PHP, you want Apache to recognize index.php and make it the first page you see when you visit the directory, so you would have to do this aswell: Open C:/Apache2/conf/httpd in Wordpad or Notepad or whatever you use and find: DirectoryIndex and after that you have to add index.php If you use home.php or something different just add home.php, etc. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584894727 Share on other sites More sharing options...
msg43 Posted November 10, 2004 Share Posted November 10, 2004 Might give this a try was using a preinstalled but I like learning new things. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584894745 Share on other sites More sharing options...
raider360 Posted November 10, 2004 Share Posted November 10, 2004 What is that program you took at screenshot of called? 584572634[/snapback] It's a MySQL Control Center ;) Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584896075 Share on other sites More sharing options...
raider360 Posted November 10, 2004 Share Posted November 10, 2004 The format is this: user@hostmask"%" is a wild card. A blank username and a wildcard after the "@" means that "@%" is an anonymous user that can connect to your server from any host. I'd advise deleting the account. I'd advise deleting the anonymous user that can connect from localhost too. So, delete "@localhost" also. "root@%" Means that root can connect from any host. You may or may not want this. Consider allowing root to connect from localhost only, or only from a box on the LAN. For example: "root@192.168.0.%" I would advise you to create a user for your own use, with priviledges granted for specific databases only. 584575295[/snapback] wow :woot: thanks :D Now I can understand all this stuff :p Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-584896100 Share on other sites More sharing options...
DrRip Posted December 1, 2004 Share Posted December 1, 2004 (edited) Somehow it does not work for me...apache works fine....then on to step 2 PHP .... i cant'get that to work... I did all that is listed in the guide get this error LoadModule takes two arguments, amodule name and the name of a shared object file to load it from Edited December 1, 2004 by DrRip Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585022388 Share on other sites More sharing options...
gringo Posted December 2, 2004 Share Posted December 2, 2004 :woot: nice guide??? downloaded!!! thanks1!! :D Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585026125 Share on other sites More sharing options...
[ timko ] Posted December 6, 2004 Share Posted December 6, 2004 Guide good. However, I've started using... http://www.apachefriends.org/en/xampp.html :) Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585052204 Share on other sites More sharing options...
Nelsinho Posted December 16, 2004 Share Posted December 16, 2004 good job dude. awesome guide (Y) Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585110361 Share on other sites More sharing options...
Ultra Frosty Posted January 29, 2005 Author Share Posted January 29, 2005 Now updated - Modified some wording. - Added some screenshots to help beginners. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585376521 Share on other sites More sharing options...
littleman Posted January 31, 2005 Share Posted January 31, 2005 Nice tutorial!!! Although after i downloaded the php (installer exe) i found that none of the directories such as sapi and files such as php.ini-recommended were in the c:\php directory so i just downloaded the Zip file and extracted it in and all was well. Thanks again! Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585386938 Share on other sites More sharing options...
timsweb Posted February 27, 2005 Share Posted February 27, 2005 nice, going to try this, is it easy to add phpmyadmin into it as well? Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585541548 Share on other sites More sharing options...
konstantinos Posted March 3, 2005 Share Posted March 3, 2005 how about using the foxserv project software? it has a funky panel too. Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585562715 Share on other sites More sharing options...
iron2000 Posted March 6, 2005 Share Posted March 6, 2005 Was trying to install the trio for a project. Found tutorial on this site and followed it: http://www.webmasterstop.com/48.html But theres a nice tutorial at Neowin too. :D Link to comment https://www.neowin.net/forum/topic/208285-installing-apache-php-mysql/page/2/#findComment-585575519 Share on other sites More sharing options...
Recommended Posts