Tutorial : Installing Apache 2.2.11, PHP 5.3, MySQL 5.1.36 & PhpMyAdmin 3.2 in Windows 7/Vista/XP
This tutorial will teach you how to install and configure Apache 2.2.11 + PHP 5.3 + MySQL 5.1.36 and PHPMyAdmin 3.2.0.1 for Windows Vista & Windows 7 in a step by step manner. There is also a screencast available.
This tutorial is a textual version complementing “Screencast #1 : Installing Apache 2.2, PHP 5.3, MySQL 5.1 & PHPMyAdmin 3.2 for Windows 7/Vista”
The Tutorial is the modified version found at Vision Master Designs.
Index :
- Step 1 : Install Apache
- Step 2 : Install & Configure PHP 5.3
- Step 3 : Configure Apache 2.2.11
- Step 4 : Testing our Apache + PHP
- Step 5 : Installing and Configuring MySQL5
- Step 6 : Installing and Configuring PhpMyAdmin 3 Optional
- Step 7 : Making Windows recognize myserver.dev Optional
The Pre-Requisites :
- Apache HTTP Server (2.2.11)
The best open source webserver. You need this to turn your humble computer to a powerful webserver to execute your applications.
Download Apache 2.2.11 (with no mod ssl) (36613) - PHP 5.3 – Download PHP 5.3.0 (VC6 Thread safe) (33193)
- MySQL 5.1.36 – Goto Download page
- PHPMyAdmin 3.2.0.1
PHPMyAdmin Download Page | Direct Download PHPMyAdmin 3.2.0.1 (7287)
The above downloads are compatible with Windows 7/Vista/Vista SP1 (32 bit OS).
Before starting this tutorial. Please Turn off UAC (User Access Control) in Vista. Trust me you will get fed up on how many times it`ll popup while installing this environment.
Step 1 : Install Apache
- First create a
New FolderinC:\and name it asserver. - Start the installation, and follow the onscreen instructions as shown in the screencast.
The settings for Server Information are given below.
- Choose Custom Installation and specify the install path as
C:\server\apache\ - Once Installation is complete, verify the installation by clicking on the Apache Icon in the taskbar, as shown in the screencast. You can also verify your installation of Apache by opening http://localhost/ in your browser.
- Congratulations for a successful installation of Apache. We still have to configure Apache, we will do it in the coming steps.
STEP 2 : Install & Configure PHP 5.3
-
Extract PHP package
Now to install PHP5. Open the zip file & Extract all your files to
C:\server\php. Navigate toC:\server\php -
Rename php.ini- file
Search for the file,
php.ini-developmentand rename it tophp.iniEDIT php.ini
Open up
php.iniusing any text-editor. (Notepad, Wordpad, Preferrably Dreamweaver). There are 2 edits in this file -
Edit 1
Find
extension_dir = "./"and replace it with (Please note the slashes)
extension_dir = "C:/server/php/ext"Edit 2
Now in the following edit, you just have to uncomment (by removing the “; – semicolon”) from the extension to activate it. So here are the extensions to be uncommented. Search for each one them and remove the semicolon
;
;extension=php_gd2.dll
;extension=php_mbstring.dll
;extension=php_mysql.dll
;extension=php_mysqli.dll
The First extension enables the Image GD library of PHP.
The Second enables mbstring.
The Third and forth enables us to use MySQL database.Save the php.ini file.
-
Adding PHP Environmental Variables in the System path
Great ! Now we have to add tell the computer to start php everytime the computer reboots. So, Navigate to your
Start->Control Panel->System->Advanced System Settingsthen go to the advanced tab, Click on theEnvironmental Variablesbutton, then scroll down in system variables to findPATH, Edit it Add the following Code to it, as shown below in the image,C:\server\php; - You MUST MUST MUST reboot a windows box after setting the Path variable (step 2). If you move on past that point without rebooting – logging off is NOT enough – apache will have trouble finding your mySQL extensions.
- Finally, Step 2 is over !. Now we have PHP configured. Lets move on to configuring Apache.
STEP 3 : Configure Apache 2.2.11
- Now navigate to
C:\server\Apache\conf
Edit httpd.conf
Some users had reported that they weren`t able to edit httpd.conf in VISTA using Notepad. Try using Dreamweaver or any other editor to edit the *.conf files. If you are still not able to open httpd.conf file in any text editor, you can try the following solutions
- Try different text editor
- Stop Apache server from the taskbar and then try to edit
- You should have administrative previliges. Try disabling UAC
- If none of the above work. Reboot your computer in safe mode and then try to edit httpd.conf
The above is applicable for all *.conf files
Okay, brace yourself, we got 5 Edits in this file. No big deal, pretty simple search and replace text.
Edit 1
Search for
#LoadModule rewrite_module modules/mod_rewrite.so
Replace with
LoadModule rewrite_module modules/mod_rewrite.soEdit 2
Add the following below the previous edit
#PHP5 LoadModule php5_module "C:/server/php/php5apache2_2.dll" PHPIniDir "C:/server/php"Edit 3
Search
AddType application/x-gzip .gz .tgz
Add the following below the searched line
AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phpsEdit 4
Search for
DirectoryIndex index.html
Replace with
DirectoryIndex index.html index.phpEdit 5
Search for
#Include conf/extra/httpd-vhosts.conf
Replace withinclude conf/extra/httpd-vhosts.conf - Now navigate to
C:\server\Apache\conf\extra
Edit httpd-vhosts.conf
-
Replace all the text inside with
<virtualhost *:80> DocumentRoot "C:/Server/www/myserver.dev/public_html" ServerName myserver.dev ServerAlias www.myserver.dev <directory "C:/Server/www/myserver.dev/public_html"> AllowOverride All Options Indexes FollowSymLinks Order allow,deny Allow from all </directory> </virtualhost>
-
Restart the Apache Webserver
If you have followed perfectly you`ll see that Apache has restarted perfectly.
Step 4 : Testing our Apache + PHP
-
Create Directories to store your web files
- Firstly lets make the required Directories. Create a
New FolderinsideC:\server. - Inside the
C:\serverfolder, create folder calledwww - inside
C:\server\www\createmyserver.dev - and then finally create
public_htmlfolder inside yourC:\server\www\myserver.dev\
Follow this structure
C:\server\www\myserver.dev\public_html\
This is where you will be putting all your html,script etc files to be accessed by your webserver. - Firstly lets make the required Directories. Create a
-
Create index.php
Open up notepad, type in the following code and save the file as
index.phpinsideC\:server\www\myserver.dev\public_html\as shown in the above picture.<?php //index.php phpinfo(); ?>
Please note the file name, it is
index.php. Many a times, Notepad saves it asindex.php.txt, while saving, don`t forget to mention the type as All Files, this way Notepad will save it asindex.php.
STEP 5 : Installing and Configuring MySQL5
- Lets start by unpacking the zip & start the installation. Select Typical, click Next
- Click Next after reviewing where you are installing
- Skip the Sign-up.
- Install SQL, Now time to configure SQL. Its pretty simple, if you follow the onscreen instructions.
- Now just follow the following images.
- Finally click on Execute and let mysql configure everything.
During the MySQL installation and configuration,if you have missed any step or have not configured properly, then you can run the MySQL Server Instance Config Wizard which can be accessed via ‘Start->All Programs->MySQL’.
*If MySQL Instance Wizard does not complete the final step, reboot your computer and configure again.* -
Test MySQL along with Apache+PHP
Now to test whether MYSQL & PHP along with APACHE are working fine, restart the webserver, i.e click on the apache icon in your taskbar (near time in the taskbar/startbar) and restart the webservice.
After it has restarted (green play icon will be displayed), point your favourite web browser to http://localhost.
If you are able to see the above page, then you have successfully configured Apache+PHP5. To verify whether MySQL5 has been installed, scroll down the page until you come across mysql & mysqli heading as shown below.
- Woohoo ! Congratulations ! You have successfully installed Apache2.2.11+PHP5.2.9+MySQL5.1.34 on your system. *sigh*
STEP 6 : Installing and Configuring PhpMyAdmin 3
-
Extract the PhpMyAdmin 3 package
This is an optional ! You can use your webserver without it as well.
Extract all the files inside thephpMyAdmin-3.2.0.1-all-languages.zipto aC:\phpmyadmin. Now navigate insideC:\phpmyadminyou`ll see another folder namedphpMyAdmin-3.2.0.1-all-languages(even if the name is something else), rename this folder topma. Cut this renamedpmafolder and paste it insideC:\server\www\myserver.dev\public_html - Now If you have followed everything properly, when you point your web browser to http://www.myserver.dev/pma/index.php you will see a login screen or the following screen.
If you get the login screen, the username | password isroot | root.
STEP 7 : Making Windows recognize myserver.dev Optional
Editing hosts file
Navigate to C:\Windows\System32\drivers\etc
Open up hosts in notepad/wordpad/dreamweaver any text editor and add the following
127.0.0.1 myserver.dev 127.0.0.1 www.myserver.dev
Conclusion
Thank you for reading this tutorial, hope you guys enjoyed ![]()
There is a screencast based on this tutorial, so do check it out Screencast #1 : Installing Apache 2.2, PHP 5.3, MySQL 5.1 & PHPMyAdmin 3.2 for Windows 7/Vista
If you are having any trouble, feel free to post a comment.


















This instillation goes fairly well until you get to the instillation of MYSQL. Then there are no pictures to follow. Forget phpMy Admin. The instructions are just incorrect.
Do not use more modern version so f php, apache, MYSQL or phpMyAdmin. It only works for older versions. If you cannot get these older versions, forget the suggested installation.
Really very very nice post. Very Helpful.
sucess … thx,… much…
The image links for Sql configuration is dead… can u pls give alternative links???? thank you
After examine just a few of the weblog posts in your web site now, and I truly like your means of blogging. I bookmarked it to my bookmark web site record and shall be checking again soon. Pls take a look at my web site as nicely and let me know what you think.
Thanks for the ideas shared on your own blog. Yet another thing I would like to say is that losing weight is not information on going on a dietary fad and trying to lose as much weight as you’re able in a few days. The most effective way to shed weight is by taking it bit by bit and using some basic guidelines which can allow you to make the most from a attempt to shed weight. You may understand and already be following many of these tips, nonetheless reinforcing knowledge never affects.
Dear,
I've configured my server how you did, but I'll become the message "403 Forbidden".
Why? Can you help me?
Bye
Thank you for every other magnificent article. Where else may just anybody get that kind of information in such a perfect approach of writing? I’ve a presentation next week, and I’m at the search for such info.
Thankyou so much – your assistance has been invaluable!
hi …all the mysql images do not appear.
It's clear that you've researched this project in detail. After reading other like articles, I learned from reading this. I'm intrigued by your ideas and am in agreement with you.
I was suggested this website by my cousin. I’m now not certain whether or not this put up is written by him as no one else know such unique approximately my problem. You’re amazing! Thanks!
That is very fascinating, You are an excessively skilled blogger. I’ve joined your feed and look ahead to searching for extra of your great post. Also, I have shared your website in my social networks
I don’t even know how I stopped up right here, however I believed this post used to be great. I do not recognise who you are however definitely you’re going to a well-known blogger for those who aren’t already. Cheers!
Hey $author, this is exactly what i always told them. I am enlighted to see that there are others, likeminded people out there! Thanks for this awsome post
I’ve been browsing on-line more than three hours as of late, yet I never found any interesting article like yours. It?s pretty price sufficient for me. In my opinion, if all webmasters and bloggers made good content material as you did, the net can be much more useful than ever before.
The blog is good and answers all that the vistor would need for this subject.
I take pleasure in, lead to I found just what I used to be taking a look for. You’ve ended my 4 day lengthy hunt! God Bless you man. Have a great day. Bye
you’re actually a just right webmaster. The website loading speed is incredible. It sort of feels that you are doing any distinctive trick. Also, The contents are masterpiece. you’ve performed a great process in this topic!
Wonderful work! This is the kind of info that are supposed to be shared around the internet. Disgrace on Google for no longer positioning this put up higher! Come on over and discuss with my site . Thank you =)
Hello, Neat post. There’s a problem with your website in internet explorer, might test this? IE still is the marketplace leader and a big component to other people will miss your wonderful writing because of this problem.
Thanks for some other informative website. The place else may I am getting that type of info written in such an ideal manner? I have a undertaking that I am simply now operating on, and I have been at the glance out for such info.
Hey there, You’ve performed an excellent job. I will certainly digg it and individually suggest to my friends. I’m confident they will be benefited from this site.
Heya i am for the primary time here. I found this board and I find It truly helpful & it helped me out a lot. I’m hoping to present something back and aid others such as you helped me.
Inside Feb . the year just gone, the federal government exposed your Making Property Cost-effective Program, which consists of 2 main software programs: a single pertaining to loan modifications and another regarding re-finance financial products. The money customization percentage is known as this Hamp Personal loans (HAMP). It’s built to decrease house loan repayments dealing with homeowners pay out regular in order to eco friendly quantities. The actual re-finance plan’s called the household Reasonably priced Re-finance Plan (HARP). Beneath the HAMP, home loan modifications is going to be consistent, along with even loan mod referrals made use of by Fannie in addition to Freddie Mac, plus they are going to be executed car home loan business.
I have fun with, result in I discovered exactly what I was looking for. You have ended my four day long hunt! God Bless you man. Have a great day. Bye
advertising and *********** with Adwords. Well I am including this RSS to my e-mail and could glance out for a lot more of your respective intriguing content. Ensure that you update this once more soon..
Excellent beat ! I wish to apprentice whilst you amend your site, how could i subscribe for a weblog website? The account helped me a acceptable deal. I had been a little bit familiar of this your broadcast provided bright clear concept
I like the helpful information you supply to your articles. I’ll bookmark your blog and test once more right here regularly. I’m fairly certain I will learn plenty of new stuff proper here! Best of luck for the next!
Hello, Neat post. There’s an issue together with your website in web explorer, would check this? IE nonetheless is the market chief and a large element of folks will omit your wonderful writing due to this problem.
Software akuntansi dari PT zahir lumayan bagus dan komplit, Mereka yang memiliki wirausaha menengah tetap dapat menggunakan karena harganya murah
I take pleasure in, result in I found exactly what I used to be having a look for. You have ended my 4 day long hunt! God Bless you man. Have a nice day. Bye
I used to be suggested this web site through my cousin. I am now not certain whether or not this submit is written via him as nobody else recognise such detailed about my problem. You’re incredible! Thanks!
Hi there, You’ve performed an incredible job. I’ll certainly digg it and in my view recommend to my friends. I’m sure they’ll be benefited from this site.
Fantastic information, fantastic content, will add your website to be able to our blog site pertaining to my personal readers to see!
check out this cure gout naturally http://www.goodforyou.biz/cure-gout.html
Thanks for some other informative web site. Where else may I am getting that kind of info written in such a perfect way? I have a project that I am just now running on, and I have been at the glance out for such information.
Hey There. I discovered your weblog the use of msn. That is an extremely neatly written article. I’ll make sure to bookmark it and return to read more of your helpful information. Thank you for the post. I’ll certainly return.
Excellent issues altogether, you just received a new reader. What could you recommend in regards to your publish that you just made some days in the past? Any certain?
Thank you for the auspicious writeup. It actually was a amusement account it. Glance complicated to far delivered agreeable from you! However, how could we keep in touch?
{{Hi|Hey} there. {I’m|My name is Oliver} from Realize. {I usually don’t throw in my 2 cents|I’m usually not much of a commenter} but {you’re spot on with this post.|you’re right on the money here|you hit the nail on the head with this one.} I’d {consider|be open|love} to have you guest {write|post} on {the Realize Blog|my blog} Our {main|usual} topics are {SEO|Search Engine Optimization} and {Social Media|Email Marketing}
Wonderful items from you, man. I have consider your stuff previous to and you are just too wonderful. I actually like what you’ve got here, really like what you’re saying and the way in which by which you assert it. You make it enjoyable and you continue to take care of to stay it smart. I can not wait to read much more from you. That is actually a great web site.
Got period to read every one of the comments, however I genuinely really liked your article. This showed clearly that they are Worth finding out about to me plus I am bound to all the commenters at this website! It’s usually good when you might not alone turn out to be knowledgeable, but interested! I know everyone had exciting creating this unique write-up.
Margo Cosmetics este o firma de vanzare directa de produse cosmetice,parfumuri si
You could certainly see your enthusiasm in the paintings you write. The world hopes for more passionate writers such as you who aren’t afraid to mention how they believe. All the time go after your heart.
eyes side effects coumadin red
effects coumadin urine in side blood
http://www.accentschool.com/blog/node/4623 – WANT TO BUY COUMADIN / WARFARIN WITHOUT PRESCRIPTION ONLINE
side effects coumadin vitamin coumadin foods k
side of off coumadin coming when effects
http://theknappes.us/drupal/?q=node/11531 – COUMADIN / WARFARIN WITHOUT PRESCRIPTION
coumadin effects foods vitamin coumadin side k ;coumadin side coumadin foods k effects vitamin
Allergies can become more serious with repeated exposure to allergen. Be careful!
… http://theknappes.us/drupal/?q=node/11495 — DISCOUNT GENERIC COUMADIN / WARFARIN CHEAPEST PRICE
foods k coumadin vitamin effects coumadin side
Every man wants to have ultimate sexual power as long as possible. But life is tricky!
http://circleofjerksguild.com/drupal/node/18166 – GET CHEAPEST COUMADIN / WARFARIN 1/2/5mg ONLINE IN U.K.
coumadin icd code 9 therapy
cranberry warfarin juice and
side when off of effects coming coumadin
– http://circleofjerksguild.com/drupal/node/18142 – BUY COUMADIN / WARFARIN GENERIC ONLINE
effects k foods coumadin vitamin side coumadin
You can prevent catching infections and taking antibiotics by practicing good hygiene.
coumadin comprehensive a side effects view
When you take your antibiotics incorrectly, you increase your chance of getting an illness.
http://www.accentschool.com/blog/node/4148
vitamin foods k side coumadin coumadin effects
http://circleofjerksguild.com/drupal/node/18255 – OVERNIGHT COUMADIN / WARFARIN SHIPPING
epocrates effects coumadin side
view side a comprehensive effects coumadin
http://circleofjerksguild.com/drupal/node/18232 – GENERIC COUMADIN / WARFARIN WITHOUT PRISCRIPTION
with alcohol warfarin ;effects vitamin coumadin coumadin k foods side
I wish I were young enough to prevent my impotence. But I was too careless at that time.
>>> http://circleofjerksguild.com/drupal/node/18207 >> GET DEPAKOTE GENERIC ONLINE
of coumadin coming effects when side off
Fleas and ticks can be found not only on the pet but also in the pet’s environment!
http://circleofjerksguild.com/drupal/node/18176 – BUY CHEAP COUMADIN / WARFARIN WITHOUT PRESCRIPTION
tablets warfarin mg 5
eat coumadin not to what
testing self coumadin
when coumadin effects off side of coming
>>> http://www.accentschool.com/blog/node/4495 – GENERIC COUMADIN / WARFARIN 1/2/5mg WITHOUT PRESCRIPTION
off of side when coumadin effects coming
Don’t use antibiotics every time you feel unwell! It is not a universal panacea. It’s dangerous!
effects side 7.5 coumadin mg
When you are depressed it is difficult to see a light of hope on the scene buy don’t give up!
http://circleofjerksguild.com/drupal/node/17822
when coming effects coumadin of off side
http://circleofjerksguild.com/drupal/node/18239 – ONLINE GENERIC COUMADIN / WARFARIN
as warfarin poison rat used
icd coumadin 9 therapy code
http://www.accentschool.com/blog/node/4594 – DISCOUNT COUMADIN / WARFARIN 1/2/5mg IN CANADA ONLINE
effects coumadin diet side coumadin ;off side when coumadin of coming effects
Learn how antihistamines work and how to choose the most appropriate medication for you!
– http://theknappes.us/drupal/?q=node/11513 … BUY CHEAP COUMADIN / WARFARIN IN UK ONLINE
coumadin mg daily 4
Asthma is a severe disease affecting people of all ages, but most often starting in childhood.
http://www.accentschool.com/blog/node/4521 – GET CHEAPEST COUMADIN / WARFARIN 1/2/5mg ONLINE IN USA
coming effects side off when of coumadin
>>> http://www.accentschool.com/blog/node/4504 – COUMADIN / WARFARIN 1/2/5mg ORDER IN USA CHEAPEST
2 mg tablet warfarin
The aim of obesity treatment is to achieve a healthier weight and avoid health problems.
effects rectal coumadin side bleeding
At what age do you suppose to lose your sexual power and start your never-ending struggle?
http://www.accentschool.com/blog/node/4308
what to eat not warfarin
http://theknappes.us/drupal/?q=node/11562 – http://oem-discount.com/cart/www31.jpg
stopped coumadin when side effects – coumadin effects k coumadin foods side vitamin
It’s easy to control your mood if you use trusted medicine and sleep well at night!
http://www.accentschool.com/blog/node/4592 ?? ONLINE COUMADIN / WARFARIN ONLINE WITHOUT RX
I couldn’t control my mood before I learned about this antidepressant!
1917 warfare
off coumadin when side effects coming of
warfarin weeks 6
of coming coumadin off side effects when
http://kitlab.pef.czu.cz/1112zs/ete32e/08/content... – BY COUMADIN / WARFARIN ONLINE IN
off coumadin effects coming when of side
> http://circleofjerksguild.com/drupal/node/18183 >> BUY DISCOUNT COUMADIN / WARFARIN GENERIC INFORMATION
effects coming side of coumadin off when off of when effects coming coumadin side effects side mg 6 warfarin effects off coming of side when coumadin ,k coumadin foods vitamin side coumadin effects ,side effects foods vitamin coumadin coumadin k
http://circleofjerksguild.com/drupal/node/18149 – COUMADIN / WARFARIN WITHOUT PRESCRIPTION CASH ON DELIVERY – BUY ONLINE COUMADIN / WARFARIN PRESCRIPTIONS
Numerous depressive conditions start with a stress or with serious health disorder. Are you ok?
http://theknappes.us/drupal/?q=node/11334
coumadin off effects side coming when of
http://www.accentschool.com/blog/node/4619 – CHEAPEST COUMADIN / WARFARIN IN CANADA ORDER
view side coumadin effects comprehensive a
treatment coumadin effects side
http://circleofjerksguild.com/drupal/node/18220 – BUY COUMADIN / WARFARIN CHEAP ONLINE
4 effects side mg warfarin ;in warfarin effects men side
Thousands of people all over the world have conquered depression. Become one of them!
… http://kitlab.pef.czu.cz/1112zs/ete32e/08/content... >> BUY DISCOUNT COUMADIN / WARFARIN GENERIC INFORMATION
k effects coumadin coumadin side foods vitamin
Learn everything about asthma including asthma causes, risk factors, and prevention.
http://www.accentschool.com/blog/node/4543 – COUMADIN / WARFARIN WITHOUT PRESCRIPTION CASH ON DELIVERY
joint replacement warfarin
coumadin effects vitamin coumadin k foods side
2 coumadin 1 life
coumadin effects off coming of when side
>> http://www.accentschool.com/blog/node/4511 – CHEAPEST PRICE COUMADIN / WARFARIN
of coumadin when off effects side coming
Over 33000 of adult people in the United States commit suicide every year due to depression.
foods coumadin effects side vitamin coumadin k
Thirsty for sex? It’s normal, know how to quench your desire!
http://theknappes.us/drupal/?q=node/11188
awesome blog, very insightful. I like it in deed. I come acoss your blog by ASK search engine. I shall read your site monthly and forward it to my schoolmates. Please keep it updated. Keep on the good work. – A hockey fun
Hi there, just changed into alert to your blog through Google, and located that it is really informative. I’m gonna watch out for brussels. I will be grateful should you continue this in future. Numerous folks will probably be benefited out of your writing. Cheers!
I’ve been surfing on-line greater than three hours as of late, yet I never discovered any fascinating article like yours. It is beautiful worth enough for me. Personally, if all website owners and bloggers made just right content as you probably did, the web might be a lot more helpful than ever before.
It is truly a great and helpful piece of information. I’m glad that you shared this helpful information with us. Please stay us up to date like this. Thank you for sharing.
Definitely consider that which you stated. Your favorite reason seemed to be on the net the easiest thing to have in mind of. I say to you, I definitely get irked even as other people consider worries that they just don’t understand about. You managed to hit the nail upon the top as well as defined out the whole thing without having side effect , other people can take a signal. Will likely be again to get more. Thanks
Excellent issues altogether, you simply gained a new reader. What might you recommend in regards to your submit that you simply made a few days in the past? Any certain?
Excellent blog here! Additionally your web site a lot up fast! What web host are you the usage of? Can I am getting your associate hyperlink on your host? I want my site loaded up as quickly as yours lol
of course like your web site however you have to take a look at the spelling on quite a few of your posts. A number of them are rife with spelling problems and I to find it very bothersome to tell the reality nevertheless I will surely come back again.
Thought about cherished your blog!
Nice website, sensible information, great style on your site, added you to my favorites thus I can return back once you post again
Hello There. I found your weblog the use of msn. That is an extremely well written article. I will be sure to bookmark it and return to learn extra of your useful info. Thank you for the post. I’ll definitely comeback.
Attractive section of content. I just stumbled upon your website and in accession capital to claim that I acquire in fact enjoyed account your weblog posts. Anyway I will be subscribing in your augment and even I fulfillment you get right of entry to consistently quickly.
Undeniably consider that which you said. Your favourite justification seemed to be on the internet the easiest factor to have in mind of. I say to you, I certainly get irked at the same time as people think about issues that they plainly do not know about. You managed to hit the nail upon the highest and also defined out the entire thing with no need side effect , other people can take a signal. Will probably be back to get more. Thank you
Fantastic publish, very informative. I ponder why the opposite experts of this sector don’t realize this. You should proceed your writing. I’m sure, you have a great readers’ base already!|What’s Happening i am new to this, I stumbled upon this I’ve discovered It absolutely useful and it has helped me out loads. I’m hoping to give a contribution & assist other users like its aided me. Good job.
It’s actually a great and useful piece of info. I am glad that you shared this helpful information with us. Please keep us up to date like this. Thanks for sharing.
It is really a nice and helpful piece of info. I am happy that you shared this useful information with us. Please keep us informed like this. Thanks for sharing.
I was very pleased to find this web-site.I wanted to thanks for your time for this wonderful read!! I definitely enjoying every little bit of it and I have you bookmarked to check out new stuff you blog post.
Can I just say what a relief to find someone who actually knows what theyre talking about on the internet. You definitely know how to bring an issue to light and make it important. More people need to read this and understand this side of the story. I cant believe youre not more popular because you definitely have the gift.
very nice post, i certainly love this website, keep on it
It�s hard to find knowledgeable people on this topic, but you sound like you know what you�re talking about! Thanks
You should take part in a contest for one of the best blogs on the web. I will recommend this site!
An interesting discussion is worth comment. I think that you should write more on this topic, it might not be a taboo subject but generally people are not enough to speak on such topics. To the next. Cheers
Hello! I just would like to give a huge thumbs up for the great info you have here on this post. I will be coming back to your blog for more soon.
This really answered my problem, thank you!
There are some interesting points in time in this article but I don�t know if I see all of them center to heart. There is some validity but I will take hold opinion until I look into it further. Good article , thanks and we want more! Added to FeedBurner as well
you have a great blog here! would you like to make some invite posts on my blog?
When I originally commented I clicked the -Notify me when new comments are added- checkbox and now each time a comment is added I get four emails with the same comment. Is there any way you can remove me from that service? Thanks!
The next time I read a blog, I hope that it doesnt disappoint me as much as this one. I mean, I know it was my choice to read, but I actually thought youd have something interesting to say. All I hear is a bunch of whining about something that you could fix if you werent too busy looking for attention.
Spot on with this write-up, I truly think this website needs much more consideration. I�ll probably be again to read much more, thanks for that info.
Youre so cool! I dont suppose Ive read anything like this before. So nice to find somebody with some original thoughts on this subject. realy thank you for starting this up. this website is something that is needed on the web, someone with a little originality. useful job for bringing something new to the internet!
I�d have to check with you here. Which is not something I usually do! I enjoy reading a post that will make people think. Also, thanks for allowing me to comment!
This is the right blog for anyone who wants to find out about this topic. You realize so much its almost hard to argue with you (not that I actually would want�HaHa). You definitely put a new spin on a topic thats been written about for years. Great stuff, just great!
Aw, this was a really nice post. In idea I would like to put in writing like this additionally � taking time and actual effort to make a very good article� but what can I say� I procrastinate alot and by no means seem to get something done.
I�m impressed, I must say. Really rarely do I encounter a blog that�s both educative and entertaining, and let me tell you, you have hit the nail on the head. Your idea is outstanding; the issue is something that not enough people are speaking intelligently about. I am very happy that I stumbled across this in my search for something relating to this.
Oh my goodness! an amazing article dude. Thank you However I am experiencing issue with ur rss . Don�t know why Unable to subscribe to it. Is there anyone getting identical rss problem? Anyone who knows kindly respond. Thnkx
WONDERFUL Post.thanks for share..more wait ..
There are certainly a lot of details like that to take into consideration. That is a great point to bring up. I offer the thoughts above as general inspiration but clearly there are questions like the one you bring up where the most important thing will be working in honest good faith. I don?t know if best practices have emerged around things like that, but I am sure that your job is clearly identified as a fair game. Both boys and girls feel the impact of just a moment�s pleasure, for the rest of their lives.
An impressive share, I just given this onto a colleague who was doing a little analysis on this. And he in fact bought me breakfast because I found it for him.. smile. So let me reword that: Thnx for the treat! But yeah Thnkx for spending the time to discuss this, I feel strongly about it and love reading more on this topic. If possible, as you become expertise, would you mind updating your blog with more details? It is highly helpful for me. Big thumb up for this blog post!
After study a few of the blog posts on your website now, and I truly like your way of blogging. I bookmarked it to my bookmark website list and will be checking back soon. Pls check out my web site as well and let me know what you think.
Your place is valueble for me. Thanks!�
This web site is really a walk-through for all of the info you wanted about this and didn�t know who to ask. Glimpse here, and you�ll definitely discover it.
There is noticeably a bundle to know about this. I assume you made certain nice points in features also.
You made some decent points there. I looked on the internet for the issue and found most individuals will go along with with your website.
Nice post. I learn something more challenging on different blogs everyday. It will always be stimulating to read content from other writers and practice a little something from their store. I�d prefer to use some with the content on my blog whether you don�t mind. Natually I�ll give you a link on your web blog. Thanks for sharing.
I discovered your blog site on google and check a few of your early posts. Continue to keep up the very good operate. I just additional up your RSS feed to my MSN News Reader. Seeking forward to reading more from you later on!�
I am often to blogging and i really appreciate your content. The article has really peaks my interest. I am going to bookmark your site and keep checking for new information.
I am extremely inspired with your writing abilities and also with the structure in your weblog. Is that this a paid theme or did you modify it yourself? Either way keep up the nice high quality writing, it?s rare to look a great blog like this one today..
Wow, marvelous weblog structure! How lengthy have you been blogging for? you make blogging glance easy. The overall glance of your site is magnificent, as smartly as the content material!
Wow, incredible blog layout! How long have you been blogging for? you make running a blog glance easy. The full look of your web site is great, as neatly as the content material!
I think this is among the so much important information for me. And i’m glad studying your article. But want to observation on some general things, The website style is great, the articles is really nice : D. Excellent job, cheers
I just like the helpful information you supply to your articles. I will bookmark your blog and take a look at again here regularly. I am quite sure I will learn plenty of new stuff right right here! Best of luck for the next!
Great goods from you, man. I have be aware your stuff prior to and you are just extremely fantastic. I actually like what you’ve obtained right here, certainly like what you’re stating and the way by which you assert it. You’re making it enjoyable and you continue to take care of to keep it smart. I cant wait to read far more from you. That is actually a terrific web site.
Its such as you learn my thoughts! You seem to understand a lot about this, like you wrote the book in it or something. I believe that you can do with some percent to drive the message home a little bit, however other than that, that is wonderful blog. A fantastic read. I will definitely be back.
I have read a few just right stuff here. Certainly worth bookmarking for revisiting. I wonder how a lot effort you put to create one of these fantastic informative site.
It?s actually a great and useful piece of info. I am satisfied that you just shared this helpful info with us. Please keep us up to date like this. Thank you for sharing.
Thank you for every other informative website. The place else could I get that type of information written in such a perfect way? I’ve a venture that I am just now working on, and I have been at the glance out for such information.
Thanks for the good writeup. It if truth be told was a entertainment account it. Look complex to more brought agreeable from you! By the way, how can we be in contact?
Awesome issues here. I’m very happy to peer your post. Thank you so much and I’m looking ahead to contact you. Will you kindly drop me a mail?
We are a gaggle of volunteers and opening a brand new scheme in our community. Your web site offered us with helpful information to work on. You’ve performed a formidable job and our whole group might be grateful to you.
Very great post. I simply stumbled upon your blog and wished to say that I have really enjoyed browsing your weblog posts. In any case I will be subscribing on your feed and I hope you write again very soon!
It’s really a cool and helpful piece of information. I am satisfied that you shared this helpful info with us. Please stay us up to date like this. Thank you for sharing.
I wish you Merry Christmas and a happy new year, and further development of the blog.
F*ckin? tremendous things here. I am very satisfied to peer your post. Thanks so much and i am having a look forward to contact you. Will you kindly drop me a mail?
I enjoy, cause I found exactly what I used to be looking for. You’ve ended my 4 day lengthy hunt! God Bless you man. Have a great day. Bye
I’ve suffered from hemorrhoids for quite awhile and I was lucky to find out about a treatment that was able to heal me in no time. The pain went away in a matter of a few days and I no longer had to suffer.
Hemorrhoids has been one of the worst battles I’ve ever had to fight. The condition was causing too much pain and stress for me. I was so glad to find a treatment for it.
Never had I suffered so much from an embarassing conditioning. I felt that hemorrhoids would be the death of me because the pain was so horrible. Luckily I stumbled upon a treatment that was able to heal me in no time.
I like the valuable information you supply to your articles. I will bookmark your weblog and test again here frequently. I am somewhat certain I will learn plenty of new stuff right right here! Good luck for the next!
I’ve suffered from hemorrhoids for quite awhile and I was lucky to find out about a treatment that was able to heal me in no time. The pain went away in a matter of a few days and I no longer had to suffer.
Hemorrhoids has been one of the worst battles I’ve ever had to fight. The condition was causing too much pain and stress for me. I was so glad to find a treatment for it.
Never had I suffered so much from an embarassing conditioning. I felt that hemorrhoids would be the death of me because the pain was so horrible. Luckily I stumbled upon a treatment that was able to heal me in no time.
Great post. I used to be checking continuously this weblog and I’m inspired! Very helpful info particularly the last phase
I maintain such information much. I was looking for this particular info for a very long time. Thanks and good luck.
Thank you for another magnificent article. Where else may anybody get that kind of info in such an ideal manner of writing? I’ve a presentation next week, and I am on the look for such information.
Hey there, You’ve performed a fantastic job. I will certainly digg it and for my part recommend to my friends. I’m confident they’ll be benefited from this site.
I like the helpful info you provide in your articles. I will bookmark your weblog and take a look at once more right here regularly. I am fairly sure I will learn lots of new stuff proper right here! Best of luck for the next!
Nice one for sharing This one.
I’ve been exploring for a little for any high-quality articles or weblog posts on this sort of space . Exploring in Yahoo I at last stumbled upon this web site. Reading this information So i am satisfied to convey that I have an incredibly good uncanny feeling I found out exactly what I needed. I so much no doubt will make sure to do not overlook this site and provides it a look regularly.
I can't find "DirectoryIndex index.html" in my httpd.conf configuration file.
What i do not understood is actually how you’re now not actually much more neatly-preferred than you may be now. You are very intelligent. You realize thus significantly on the subject of this subject, made me in my opinion imagine it from so many various angles. Its like men and women are not interested except it is one thing to accomplish with Girl gaga! Your individual stuffs outstanding. At all times handle it up!
You can certainly see your enthusiasm within the work you write. The arena hopes for even more passionate writers such as you who aren’t afraid to mention how they believe. Always follow your heart.
A person necessarily lend a hand to make severely articles I might state. This is the first time I frequented your articles and up to now? Great task! I surprised with the analysis you made to create this actual articles.
I am not a supporter of India, but they were amazing in this tournament. Will be interesting to see if they can win away from home next time around.
A person essentially assist to make significantly posts I would state. That is the very first time I frequented your web page and to this point? I amazed with the analysis you made to make this actual post amazing. Great task!
Hello! This is a test forum
Dear administration, If u do you see this message, please delete this topic.
thank you
I like the helpful info you provide in your articles. I will bookmark your weblog and check again here frequently. I’m reasonably certain I?ll be informed a lot of new stuff proper here! Good luck for the following!
You can definitely see your expertise within the paintings you write. The world hopes for even more passionate writers such as you who aren’t afraid to say how they believe. Always go after your heart.
Remarkable issues here. I’m very satisfied to look your article. Thanks a lot and I’m looking forward to touch you. Will you please drop me a mail?
Useful information. Fortunate me I discovered your site accidentally, and I am surprised why this accident did not came about in advance! I bookmarked it.
Helpful information. Fortunate me I found your web site by chance, and I am surprised why this twist of fate did not came about earlier! I bookmarked it.
In the usual course of affairs I do not comment on articles but this is a very praiseworthy one, well done.
It is appropriate time to make some plans for the long run and it is time to be happy. I’ve learn this put up and if I may I want to counsel you some attention-grabbing things or tips. Maybe you could write subsequent articles relating to this article. I want to read more things approximately it!
It’s really a cool and useful piece of information. I’m happy that you shared this helpful info with us. Please keep us informed like this. Thanks for sharing.
Tutorial : Installing Apache 2.2.11, PHP 5.3, MySQL 5.1.36 & PhpMyAdmin 3.2 in Windows 7/Vista/XP Web Development Codex you’ve gotten an awesome weblog here! would you like to make some invite posts on my weblog? Regards, Teak Furniture catalog
I must express appreciation to the writer just for rescuing me from this scenario. As a result of surfing around through the internet and seeing thoughts which are not beneficial, I assumed my life was done. Living devoid of the strategies to the difficulties you’ve sorted out as a result of this article is a crucial case, and the kind which might have badly damaged my career if I had not encountered your website. Your personal skills and kindness in handling all things was very helpful. I’m not sure what I would’ve done if I hadn’t encountered such a solution like this. I’m able to now relish my future. Thank you so much for the expert and results-oriented guide. I will not be reluctant to recommend your blog post to any person who requires tips on this issue.
Nice post. I used to be checking constantly this weblog and I am inspired! Extremely helpful info specifically the remaining section
I deal with such info much. I was seeking this particular info for a long time. Thank you and good luck.
I am now not sure where you’re getting your info, but great topic. I needs to spend some time finding out more or understanding more. Thank you for wonderful info I was on the lookout for this info for my mission.
Hello, i feel that i saw you visited my weblog so i got here to return the prefer?.I am attempting to to find things to enhance my website!I assume its adequate to use some of your concepts!!
nice writing, very insightful. I like it in deed. I come acoss the site by ASK search engine. I shall read your site monthly and recommend it to my schoolmates. Please keep it updated. Keep on the good work. – A blog lover
interesting site, very articulate. I like it very much. I come acoss the site by Bing search engine. I may read your site weekly and recommend it to my classmates. Please keep it fresh. Keep on the good work. – A ipad lover
awesome blog, very well written. I like it in deed. I come acoss your blog by MSN search engine. I shall visit your site daily and share it to my friends. Please keep it updated. Keep on the good work. – A sweet girl
amazing writing, very well written. I like it a lot. I come acoss this website by baidu search engine. I will read your site monthly and recommend it to my schoolmates. Please keep it fresh. Keep on the good work. – A hockey fun
wonderful sharing, very well written. I like it in deed. I come acoss the blog by baidu search engine. I could read your site frequently and forward it to my gangs. Please keep it updated. Keep on the good work. – A blog lover
My brother suggested I might like this web site. He was once totally right. This submit truly made my day. You cann’t consider simply how so much time I had spent for this information! Thank you!
Magnificent issues altogether, you just gained a new reader. What may you suggest in regards to your publish that you simply made some days in the past? Any sure?
Nice weblog right here! Additionally your web site so much up fast! What host are you using? Can I am getting your affiliate link on your host? I want my web site loaded up as fast as yours lol
Great website. Lots of helpful information here. I’m sending it to some pals ans additionally sharing in delicious. And of course, thanks for your sweat!
It is actually a great and useful piece of information. I’m happy that you shared this helpful information with us. Please stay us up to date like this. Thanks for sharing.
I just couldn’t go away your site before suggesting that I really loved the standard information an individual supply on your visitors? Is going to be back steadily to check up on new posts
This awesome article poses no questions and leave no questions unanswered.
It is perfect time to make some plans for the future and it is time to be happy. I have read this publish and if I could I wish to suggest you few fascinating issues or suggestions. Perhaps you could write next articles referring to this article. I wish to learn more issues about it!
Its like you read my thoughts! You appear to know a lot approximately this, like you wrote the book in it or something. I think that you just can do with a few percent to drive the message house a bit, however instead of that, that is fantastic blog. A fantastic read. I’ll certainly be back.
I Have trouble : Cannot load mysql extension. Please check your PHP configuration. – Documentation
Hey! This is kind of off topic but I need some advice from an established blog. Is it difficult to set up your own blog? I’m not very techincal but I can figure things out pretty fast. I’m thinking about setting up my own but I’m not sure where to begin. Do you have any ideas or suggestions? Thank you
I liked up to you’ll obtain carried out proper here. The sketch is attractive, your authored material stylish. however, you command get bought an impatience over that you want be handing over the following. in poor health surely come further beforehand again since precisely the similar nearly a lot steadily inside of case you defend this increase.
It is in point of fact a nice and useful piece of information. I’m satisfied that you just shared this helpful info with us. Please stay us informed like this. Thanks for sharing.
They are beautiful pictures. You do beautiful work. I know the whole family is proud of Silas and your pictures.
Thank you!
what if i have 64-bit OS? phpmyadmin doesnt work, please help..thanks
Thanks for the information I value you create a local site successful thanks to these instructions
And you install the following programs:
httpd-2.2.21-win32-x86-no_ssl.msi
mysql-5.0.22-win32.msi
phpMyAdmin-3.4.8-all-languages.zip
But I have a problem!!
This letter in phpmyadmin
Vous devez ajouter dans le fichier de configuration une phrase de passe secrète (blowfish_secret).
Le stockage de configurations phpMyAdmin n'est pas complètement configuré, certaines fonctionnalités ont été désactivée. Pour en connaître la raison, cliquez
I’ll immediately seize your rss feed as I can not in finding your e-mail subscription link or e-newsletter service. Do you have any? Please allow me understand so that I may just subscribe. Thanks.
Sweet blog! I found it while browsing on Yahoo News. Do you have any suggestions on how to get listed in Yahoo News? I’ve been trying for a while but I never seem to get there! Thanks
You really make it seem really easy together with your presentation however I find this matter to be really one thing that I believe I might by no means understand. It kind of feels too complicated and extremely vast for me. I am having a look forward in your next publish, I’ll try to get the hang of it!
Helpful info. Lucky me I found your web site unintentionally, and I’m shocked why this accident didn’t happened in advance! I bookmarked it.
The next time I read a blog, I hope that it doesnt disappoint me as much as this one. I mean, I do know it was my choice to read, however I truly thought youd have one thing interesting to say. All I hear is a bunch of whining about one thing that you might repair when you werent too busy in search of attention.
I love your blog.. very nice colors & theme. Did you create this website yourself or did you hire someone to do it for you? Plz reply back as I’m looking to create my own blog and would like to know wheere u got this from. thanks
Thanks for any other wonderful article. The place else may anybody get that kind of information in such a perfect approach of writing? I’ve a presentation next week, and I am at the search for such information.
I enjoy, lead to I found exactly what I used to be looking for. You’ve ended my four day long hunt! God Bless you man. Have a great day. Bye
Definitely consider that which you said. Your favourite justification appeared to be on the internet the easiest thing to take into accout of. I say to you, I certainly get irked whilst other folks think about concerns that they plainly do not recognise about. You controlled to hit the nail upon the top and also outlined out the entire thing with no need side-effects , people can take a signal. Will probably be back to get more. Thanks
We’re a gaggle of volunteers and starting a brand new scheme in our community. Your website provided us with helpful info to work on. You’ve done a formidable process and our entire group might be thankful to you.
Unquestionably believe that that you said. Your favorite justification seemed to be on the web the simplest factor to have in mind of. I say to you, I definitely get irked at the same time as folks think about concerns that they plainly don’t realize about. You managed to hit the nail upon the highest and also outlined out the whole thing with no need side effect , other people could take a signal. Will probably be again to get more. Thank you
after following STEP 3 : Configure Apache 2.2.11..my apache failed to restart. i'm using windows XP..
Thank you for creating this website so easy to find info. good stuff. Saving this one for later.
We are a group of volunteers and opening a brand new scheme in our community. Your web site provided us with useful information to paintings on. You have done a formidable activity and our whole neighborhood might be thankful to you.
Thank you for any other informative blog. Where else may I get that type of info written in such an ideal manner? I have a mission that I’m just now working on, and I’ve been at the glance out for such info.
Its such as you learn my thoughts! You appear to understand so much about this, such as you wrote the book in it or something. I think that you simply could do with some percent to pressure the message house a bit, but other than that, this is fantastic blog. A fantastic read. I’ll certainly be back.
Hello there, just was aware of your weblog thru Google, and found that it is truly informative. I’m gonna watch out for brussels. I’ll be grateful for those who proceed this in future. A lot of folks can be benefited from your writing. Cheers!
Hello there, simply turned into aware of your blog thru Google, and found that it is really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. A lot of other folks will be benefited from your writing. Cheers!
Hello there, simply turned into aware of your blog thru Google, and found that it is really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. A lot of other folks will be benefited from your writing. Cheers!
Hello there, simply turned into aware of your blog thru Google, and found that it is really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. A lot of other folks will be benefited from your writing. Cheers!
Hello there, simply turned into aware of your blog thru Google, and found that it is really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. A lot of other folks will be benefited from your writing. Cheers!
You actually make it seem really easy along with your presentation but I in finding this matter to be really something which I think I might by no means understand. It seems too complicated and very extensive for me. I am taking a look forward for your next post, I’ll try to get the hang of it!
Hi there, You’ve performed a great job. I will certainly digg it and individually suggest to my friends. I’m sure they will be benefited from this website.
Pretty component of content. I just stumbled upon your website and in accession capital to assert that I get in fact loved account your weblog posts. Any way I’ll be subscribing for your feeds and even I achievement you get entry to constantly rapidly.
A good work done by putting the heart in compiling it. Thanks man
I don’t even know how I finished up right here, however I believed this submit was great. I do not recognise who you might be however definitely you’re going to a well-known blogger if you happen to aren’t already. Cheers!
Woah this blog is fantastic i love reading your posts. Stay up the great paintings! You understand, a lot of persons are hunting round for this information, you could aid them greatly.
Hello there, simply turned into aware of your blog thru Google, and found that it is really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. A lot of other folks will be benefited from your writing. Cheers!
I am not certain where you are getting your info, however great topic. I must spend a while learning much more or understanding more. Thanks for fantastic information I used to be in search of this info for my mission.
Some truly fantastic posts on this internet site , appreciate it for contribution.
I liked up to you will receive carried out proper here. The comic strip is tasteful, your authored subject matter stylish. nevertheless, you command get got an shakiness over that you want be turning in the following. in poor health without a doubt come further before again since exactly the similar just about a lot ceaselessly inside of case you shield this increase.
I really appreciate this post. I’ve been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thanks again
advertising
Hi my friend! I want to say that this article is awesome, great written and include approximately all significant infos. I would like to see more posts like this .
Helpful information. Fortunate me I found your web site accidentally, and I am shocked why this coincidence did not took place earlier! I bookmarked it.
Youre so cool! I dont suppose Ive learn anything like this before. So good to seek out any individual with some original thoughts on this subject. realy thank you for starting this up. this website is one thing that’s wanted on the net, someone with slightly originality. useful job for bringing one thing new to the internet!
Excellent blog right here! Additionally your website quite a bit up fast! What host are you the usage of? Can I am getting your affiliate hyperlink for your host? I want my website loaded up as quickly as yours lol
Thank you for some other informative web site. The place else may just I am getting that kind of information written in such an ideal manner? I’ve a mission that I am just now working on, and I have been on the look out for such info.
I must express appreciation to the writer for bailing me out of this particular matter. Because of surfing through the world-wide-web and coming across advice which are not powerful, I believed my entire life was done. Existing devoid of the strategies to the difficulties you’ve solved by means of your entire review is a critical case, as well as the kind which could have adversely affected my career if I had not noticed your website. Your own capability and kindness in handling every part was useful. I’m not sure what I would’ve done if I hadn’t come across such a step like this. I’m able to now look forward to my future. Thanks so much for your specialized and results-oriented help. I will not hesitate to propose your web page to any individual who needs tips about this problem.
I am experiencing a problem with your rss feed . Don’t know why I am not able to subscribe to it. Is there anyone getting equivalent rss problem? Anyone who is aware of kindly respond. Thanks
Great post. I used to be checking constantly this weblog and I am inspired! Very useful info particularly the ultimate part I maintain such information a lot. I used to be looking for this particular info for a lengthy time. Thanks and best of luck.
I’ve been exploring for a little bit for any high-quality articles or blog posts on this kind of space . Exploring in Yahoo I finally stumbled upon this site. Studying this information So i am happy to convey that I have an incredibly excellent uncanny feeling I came upon just what I needed. I so much indubitably will make sure to don?t overlook this web site and provides it a look regularly.
In case you are really a real internet marketing guru, SEO skilled or profitable webmaster who’s in search of a passionate and enthusiastic internet marketing learner who, after having made some money on account of working with you, is completely satisfied to unfold a word about it to everyone I do know, then I wish to kindly invite you to e mail me from here. Offered you will not cost me a dime for your generous One to One tutorial, I look ahead to working with you forever. Many Thanks in advance.
Hello there, simply turned into aware of your blog thru Google, and found that it is really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. A lot of other folks will be benefited from your writing. Cheers!
Hi, i feel that i saw you visited my weblog so i came to return the desire?.I am attempting to find issues to enhance my site!I guess its ok to make use of some of your ideas!!
I think this is among the such a lot vital info for me. And i’m satisfied reading your article. However want to statement on some normal issues, The website style is perfect, the articles is actually excellent : D. Good task, cheers
Martin needs to look at every possible team because MWR is EGR with differnet sticker of chevy or toyota. RCR would be a good fit him maybe SHR but You got Brad from JR motorsports in that ride Roush has to lose a team this year and the 07 isn’t up to par as it was last year. That is driver based fall back. But money talks and his little brother is there already so watch for the #55 in the top 15 next year.
I’ve been exploring for a little bit for any high-quality articles or weblog posts on this kind of space . Exploring in Yahoo I eventually stumbled upon this site. Reading this info So i’m satisfied to exhibit that I’ve an incredibly just right uncanny feeling I found out exactly what I needed. I so much surely will make sure to don?t overlook this site and provides it a look regularly.
advertising
Hello there, I discovered your site by way of Google while looking for a related matter, your website got here up, it seems good. I have added to my favourites|added to my bookmarks.
Apache2+php5 + Mysql +phpmyadmin (one setup file)
https://sites.google.com/site/dalmacomnet/zagruzk...
I’ve read several good stuff here. Definitely worth bookmarking for revisiting. I surprise how so much attempt you place to make one of these fantastic informative web site.
Nice post. I used to be checking continuously this blog and I’m inspired! Extremely helpful information specifically the closing part
I handle such information a lot. I was looking for this certain information for a very long time. Thank you and best of luck.
The crux of your writing while sounding agreeable in the beginning, did not really sit perfectly with me personally after some time. Someplace within the sentences you actually managed to make me a believer but just for a while. I nevertheless have a problem with your leaps in logic and one would do well to help fill in those gaps. When you actually can accomplish that, I could certainly end up being fascinated.
Hello there, simply turned into aware of your blog thru Google, and found that it is really informative. I’m gonna watch out for brussels. I will appreciate if you continue this in future. A lot of other folks will be benefited from your writing. Cheers!
Man you really help me a lot!!!!….thank you man!!!!
These excellent instructions include important steps for Windows & users that werent required on XP.
Like Adding PHP Environmental Variables in the System path (step 4)!!!!!!
Thanks you for all the help Vaishnavi.
hi there.. i already got step1 through 5 right and displayed the above mentioned php display when i opened localhost on my browser.. but i am stuck on step 6.. this error
" The mysqli extension is missing. Please check your PHP configuration. <img class="icon" src="./themes/pmahomme/img/b_help.png" width="11" height="11" alt="Documentation" title="Documentation" /> "
displays when i go to
http://www.myserver.dev/pma/index.php
in my browser..
please help me with this.. i really need it..
Can you please post the entire PATH for the Advanced system settings?
I made a mistake there..
apache not starting after doing change……
Fantastic video and tutorial, I followed each step including step 5 from the
video and everything is working fine. I have a HP Windows 7 and selected all
the software for 32 bits. Use the followings software for a correct installation
and proceed with every step carefully. mysql-essential-5.1.59-win32, php-
5.2.17-Win32-VC6-x86, httpd-2.2.21-win32-x86-no_ssl.msi and
phpMyAdmin-3.4.7.1-english
Hello Webmaster, I noticed that http://webdevcodex.com/tutorial-installing-apache2-php5-mysql5-phpmyadmin3-windows-7-vista/ is ranking pretty low on Google and has a low Google PageRank. Now the Google PageRank is how Google is able to see how relevant your webpage is compared to all the other webpages online, if you cannot rank high at the top of Google, then you will NOT get the traffic you need. Now usually trying to get to the top of Google costs hundreds if not thousands of dollars and very highly optimized targeted marketing campaigns that takes a team of experts months to achieve. However, we can show you how to get to the top of Google with no out of pocket expenses (free traffic), no stupid ninja tricks, no silly mind control techniques, and this will be all white hat with no blackhat software or tactics that could possibly land you on bad terms with Google and put you in the dreaded “Google Sandbox”. We’ll show you how to easily capture all the targeted traffic you need, for free, multiple ways to land fast (not months) first-page rankings in Google and other major search engines (Bing, Yahoo, Ask, etc), even show you strategies on how to earn daily commissions just try Ranking Top of Google, please check out our 5 minute video.
I have installed apache version "httpd-2.2.21-win32-x86-no_ssl"and php version "php-5.3.8-Win32-VC9-x86" on my windows 7 system……a error massage is giving for the php test files "404 Not Found
The requested URL /test.php was not found on this server."
but the html files are running smoothly on the server along with the server…..but not the php file ……please suggest me some solution for me I am stuck for 2 days with it ,
Regards
Subhra Sankha Saha.
Thanks for the great tutorial! I'm having trouble viewing step #5:Installing and configuring MySql5. When I click on "MySQL 1" under step #1, i get the following:
nginx error!
The page you are looking for is not found.
Website Administrator
Something has triggered missing webpage on your website. This is the default 404 error page for nginx that is distributed with Fedora. It is located /usr/share/nginx/html/404.html
You should customize this error page for your own site or edit the error_page directive in the nginx configuration file /etc/nginx/nginx.conf.
If you could fix this it would be great, as I am looking forward to using these technologies. Thanks again for a great tutorial!
bluebody
while clicking on monitor apache server i get apache monitor is already started.
Please help me.
I'm not sure which os you are using.I'm also unsure of the proper terminology to use here. I'm running windows 7. There is a small up arrow on the bottom right of my screen.When I click it it shows me a bunch of program icons. Here is what you need to do, I think:right click the apache icon and click Open Apache Monitor. I hope this helps,
john mcculloch
thank you
I din’t find php5apache2_2.dll file in the zip,so had downloaded it from
some other website & kept it in under C:/sever/php,but when I try to start
my Apache server it says could not load php5apache2_2 into the
server.What could be the possible reason?
hello, the links to the images that show how to configure mysql are broken, i already installed apache + php.
Thank you for this tutorial, you did a great job here
Hi, thanks for providing the steps for configuring PHP. I have installed PHP along with MySQL but the screenshot that you provided for confirming the MySQL installation (mysql and mysqli ), i am getting mysqlnd instead of that you provided. I have installed MySQL from mysql-essential-5.1.36-win32.msi . Is this fine or i am wrong on this part.
thanks
Config success ! no problem man
thank.
I am a bit stuck without the MySQL images, but i can work that out.
Thanks very much for a clear guide
Very well done. Thank you.
Nice weblog right here! Also your web site loads up fast! What web host are you the usage of? Can I get your associate hyperlink in your host? I desire my web site loaded up as fast as yours lol
a couple of slight tweaks for the current versions but still a great tutorial
Thanks
Vivek
All the picture link in the step 5 ""STEP 5 : Installing and Configuring MySQL5"" is dead. The picture links are not open. please upload those picture. otherwise i can,t complete the installation process. please help as soon as possible.
After completing the step 3: Configure apache 2.2.11 ……When I restart the apache server from the icon tray , it saya "the request operation is failed" .Even I can't start my apache server. After edit "httpd.conf" and ""httpd-vhost.conf". I have edit this two file as per as mention you.
I replace all the content in "httpd-vhost.conf" with…..
<virtualhost *:80>
DocumentRoot "C:/Server/www/myserver.dev/public_html"
ServerName myserver.dev
ServerAlias http://www.myserver.dev
<directory "C:/Server/www/myserver.dev/public_html">
AllowOverride All
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
</directory>
</virtualhost>
…….
If u kindly solve my problem I will be thankful to u….
waiting for ur reply
I have the same problem.
I found out that it originate from the following entries in the httpd.conf
file:
#PHP5
LoadModule php5_module “C:/php/php5apache2_2.dll”
PHPIniDir “C:/php”
But after that I’m stuck regarding what to do about it.
fuck u!
php5.3.x have not php5apache2_2 mother fucker
Grow up mate.
Hi, I see all the MySql images are lost
Great work. Thanks a lot.
can you help me?
i follow all the steps, but when i'll make mysql connection
this code:
mysql_connect("localhost", "adsa", "bdad");
show this error:
Fatal error: Call to undefined function mysql_connect()
in my php.ini I removed the semicolon of
extension=php_mysql.dll
extension=php_mysqli.dll
and in phpinfo() only have
mysqlnd
do you know what can be?
by the way, i changed the PATH var and the drivres/host in windows/sys…
ty
e92S8S http://wnbUj5n0mXqpcvm27Hms.biz
FOR THOSE OF YOU HAVING PROBLEMS WITH THE APACHE SYNTAX ERROR AFTER YOU FINISH THE PHP PART, THE LINE ERROR IS THIS:
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
PHPIniDir "C:/server/php"
If you put the 2nd line in there it may not work, it didn't for me. All I had to do was comment that 2nd line out, to where the final product looks like this:
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
#PHPIniDir "C:/server/php"
When I changed it to that, saved, and started Apache, Apache worked beautifully. Just in case that helps anyone.
Your tutorial is really excellent,is one of few that really helped me,but I still have a problem,in the STEP 3 – Configure Apache 2.2.11 >
Edit 2
Add the following below the previous edit
#PHP5
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
PHPIniDir "C:/server/php"
when I put it code,the apache show a erro message,and stop work. Thank you for your attention. =)
This tutorial is very good,but I´m having a problem with the code of STEP 3 > Edit 2
#PHP5
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
PHPIniDir "C:/server/php"
when I put this code the apache stop work.Please can u help me?Thanks
Hi Michael,
I am self teaching myself how to use PHP and MySQL and using your tutorial and screencast, helped me to get everything I need installed without a problem. I even installed PHPMyAdmin just to get a feel of programing in a GUI also. Thank you for making it easy for even an extreme newbie like me.
Cheers,
Nan
I had used MySql 5.5.15, Apache 2.2.19, PHP 5.2.17 & PHPMyAdmin 3.4.3.2, it was a smooth installation, only tricky thing is when u install MySql for the second time
thank u for the tutorial, really very helpful and smooth
thank you, excelent tutorial
create myserver.dev at step 4 testing Apache + php. I have issue on how to dev file ?
You create the folder myserver.dev
Thanks for this wonderful sharing. I have also visited a tutorial which provides more depth of information for installing php on windows 7 with IIS 7 via FastCGI
<a target="_blank" href="http://nice-tutorials.blogspot.com/2011/07/installing-php-on-windows-7-with-iis-7.html">Install php on windows 7 with iis 7 via fastcgi
Keep up the good work
Thanks for this wonderful sharing. I have also visited a tutorial which provides more depth of information for installing php on windows 7 with IIS 7 via FastCGI
<a target="_blank" href="http://nice-tutorials.blogspot.com/2011/07/installing-php-on-windows-7-with-iis-7.html">Install php on windows 7 with iis 7 via fastcgi
Keep up the good work
Brilliant tutorial – it all worked first time – thanks heaps
Excellent! Thanx a ton for this tutorial. I followed it from from end to end and voila! smooth!
But readers please note that in the section – Edit httpd-vhosts.conf the document root has "Server" capital 'S'. Please take note of this and change to small or keep it in caps according to the folder you have created
Hi
the link to PHP 5.3 – Download is broken
Regards
Michiel
Hey i know this tutorial is a little bit too old but the same concept still applies to our
rela environment may probllem is all the same as the others LoadModule php5_module
“C:/webserver/php/php5apache2_2.dll”
does not exit and this is wht causes the apache server to reject restart plz anyone with
an idea of how to solve this i will be gratfull for that. Am using Window7 proff….32bit
the images dont seem to be loading
First I say – Thank you very much.
I am new bee for this PHP. I wanted to set up the develop environment in my pc.
Finally after all solving all problem/error. I did it with your help.
Once again thank you.
will this work on xp- tried for 2 days to install php 5(msi installer)
mysql(msi installer) and apache 2.2+ . did it according to the books (wrox
press – beginning apache 6 and other books) but the web server
kept crashing and php couldnt connect to mysql.only time it workd
was when i used an older apache server (still php couldnt talk to mysql)
Yes, it will work on XP–my installation is on XP (the message preceding yours) and it should be fine. But you need to check that PHP is using the correct folder: run phpinfo() and make sure that PHP knows where the ini file is.
Thank you for this fine tutorial–I have a couple of suggestions that will perhaps save some folks some time.
At first my installation worked, then the next day it didn't–I think this is why. In the Step 3 Apache Configuration editing the httpd-vhosts.conf file, you state "Replace all text inside with. . ." But there is one line of text that must not be replaced:
NameVirtualHost *:80
If that line is deleted, all kinds of problems ensue.
And right after that, you state "you'll see that Apache has restarted perfectly." But it won't until the directories are created your next step.
I would also suggest in the Edit 4 of the Apache Configuration to do this replace with:
DirectoryIndex index.php index.html index.htm
This way the php file is given priority by Apache, in the event there is both an index.html and an index.php file in the same folder.
Thanks again! This tutorial worked very well for Apache 2.2.19, PHP 5.2.17 (thread safe), MySQL 5.5.14, and PHPMyAdmin 3.4.3.1
Hi, i am a computer science student in my senior year trying to learn php. I
followed your tutorial to the letter twice but any time i try to run a php
program in internet explorer, a file download window appears asking if i
want to open or save the document. When i hit open, a browser appears
for a few seconds and then disappears , the the file download window
appears again. Basically i am unable to open any .php file i create. Please
do you have any idea what the problem could be, i am getting really
frustrated, thx. Ps: I am running it on a windows 7 laptop
path is wrong does not match tutorial
hey i have 4 errors
PHP Startup: Unable to load dynamic library 'C:php5php_gd2.dll' – The specified module could not be found
PHP Startup: Unable to load dynamic library 'C:php5php_mbstring.dll' – The specified module could not be found
PHP Startup: Unable to load dynamic library 'C:php5php_mysql.dll' – The specified module could not be found
PHP Startup: Unable to load dynamic library 'C:php5php_mysqli.dll' – The specified module could not be found
Please help
Ty so much
I used XAMPP to install Apachie,PHP and MySQl all in one shot.
To make it work with Windows 7 I had to shut down the windows service called "world wide web publishing".
It was listening on port 80. Web server s like Apache use Port 80.
oops got the path wrong
C:Program FilesApache Software FoundationApache2.2htdocsindex.html
Apree: you have to create index.html. put it in htdocs
C:Program FilesApache Software FoundationApache2.2index.html
Online Calculator
When I test at the end and click on the local host, all I get is a page that says "It works!". I don't get the page with the chart. Am I doing something wrong?
I tried it. It did not work.
I just keep getting the cannont find 'php5apache2_2.dll ' error message
using php 5.2.17
Apache 2.2
The same install worked on windows XP no problem.
I tried instructions from three different books nothing works
hey man i had the same prob the realised i didnt have the Thread safe version of php,
downloaded it and worked fine
Marting I tried thread safe but still had the same problem.
I was able to use XAMPP to get php up and running with Apache.
But thanks for the tip.
I ffixed the problem by using XAMPP and shutting down "world wide web publishing service"
I follow all the configuration step and i'm using Window 7 but still i got Error when trying to open phpMyAdmin
Thats;-
phpMyAdmin – Error
The mysqli extension is missing. Please check your PHP configuration. <img class="icon" src="./themes/pmahomme/img/b_help.png" width="11" height="11" alt="Documentation" title="Documentation" />
Help me plz!
Great tutorial. Although there seems to be no screenshots for the "STEP 5 : Installing and Configuring MySQL5" section…
Great Tutorial! Thank you so much!
where is the php5apache2_2.dll fine in php5.3.6 ?
Not provided in any build
I Used the thread -safe vc-9 and it worked great! http://windows.php.net/download/
For people having issues with the picture links above for the MySql installation, use the MySql Refrence Manual for your version. I'm using v5.6:
http://dev.mysql.com/doc/refman/5.6/en/index.html
Note the links on the right hand side of the page.
1. Click #2 Installing and Upgrading MySQL
2. Click 2.3 Installing MySQL on Microsoft Windows
3. Sections 2.3.3 and 2.3.4 show picture for the instructions above.
4. Section 2.3.3 I used the .msi installer instead of the .zip file, and I did a custom install and installed into c:serverMySQL Server 5.5 instead of the default path.
5. Section 2.3.4 is the instance configuration wizard. After reading through the steps involved, I chose to use a detailed configuration. Note the comments on the bottom of the page for selecting the character set.
I hope this helps.
Thank you very much, I don't often see a Tutorial for exactly what i was looking for, that exactly! Worked out Great
I have been trying to get my Apache 2.2 install to run PHP for many days, trying every site I can find on the net (how many wasted days!).
Your edit [extension_dir = "C:/server/php/ext"] has finally made it work.
Thank you, thank you, thank you!!!!!!!!!!
Dave.
Thanks nice post !
Is there any chance we could get the mysql images back up or even an explanation of what fields to fill in during setup? It makes it difficult to 'review where installing' when there is no guidance as to where I should be!
Thank you, great job. Works perfectly.
This is the ONLY tutorial I found that worked right away. Thank you!
Actually scrub my last post – ALL the links to PHP, Apache and MySQL downloads at the top of the tutorial are broken.
Thanks for the tutorial – your link at the beginning of the tutorial to download PHP5.3 (V6 version) is broken though:
PHP 5.3 – Download PHP 5.3.0 (VC6 Thread safe) (17232)
Php.net do not offer a V6 version of PHP 5.3 on their website anymore. Any ideas?
I’m running into the same issue. Did you ever solve your problem with
having no v6 version of 5.3 available?
http://windows.php.net/download/
Thanks buddy. This tutorial helped me a lot in setting up both apache and Php5. Keep good work
Thank you
Awesome Tutorial. Keep it up buddy.
After STEP 3 : Configure Apache 2.2.11>>4 I restarted php and also apache.It is displaying error "The requested operation failed"
Please help me.
I solved this error: It was php package error that I downloaded.
Those who is getting this error, download Thread Safe zip file
from http://windows.php.net/download/#php-5.2-ts-VC6-x...
VC6 x86 Thread Safe (2011-Mar-22 13:29:30)
* Zip
Wow.. Great Article. Saved my day!!!!!!!!!!!!
i tried this on win7 and latest versions of php apache and mysql, only problem i got that apahe won't start normaly, i had to coment all unasacery extensions.
Thanks!
This tutorial is great. I've been looking for solutions to the "Cannot load mysql extension" error message of phpmyadmin for hours. I followed your instructions for step 2 and 3. The problem was solved! Thanks a lot!
Where are the MySQL tutorial pictures?
Hello, I tried several times, rechecked all alternatives but unable to get the result.
I am using
OS: Windows 7 Ultimate
Apache: httpd-2.2.17
PHP: php-5.3.5
MySql: mysql-5.5.9-win32
please tell me where m doing mistakes. or please tell me the alternatives.
) but need some more extensions… like mcrypt…..
I also used wamp ( shortcut
so i tried step by step installation manually….. and wasted three+ hour…. :'(
help me plz….
Thanx in advance!!
Thank you help a lot
I have a 64bit computer running on windows 7… could somebody help me in which apache file(s) i should download.
Much apreciated in advance.
Mysql: follow the images..
Images??? I only see broken links….
excellent tutorial. Just to add,
The part where says change to: extension_dir = "C:/server/php/ext"
It needs to be uncommented. i.e. remove #.
(although it might seems obvious, I was stuck there not being able to activate mysql and mysqli)
Hi, the SQL photos have gone. Can you renew the links plz?
Thanks!!!
Great job
The tutorial was help me too. My WAMP works !!!
@rajat
pathjavaprogram;C:serverphp
path = dir1;dir2;dir3;
on my windows 7(64 bit) PATH variable is set for java programming
how to configure environment variable so that both php and java programs can run
will changing the path variable for php would affect my java programs from compilation?
I just uninstalled and restarted the process… it has worked well. Thanks again for the great tutorial.
great tutorial, step by step g
uidance, but for some reason when I got to testing mysql+php all am denied access to localhost, though apache is running. Any advice?
during all this tutorial, where to install PHP process
This really sped up my installation, great job, thanks.
i have a code 1, windows could not start the apache2.2 on local computer. for more information, review the system event log. if this is a non-microsoft service, contact the service vendor and refer to service- specific error code1
Works smooth! Thanks for the screencast!
HEY guys . you are wrong
the line LoadModule php5 module "c:/php/php5apache2_2.dll"
needs THIS _________________________________________________________________
it shows me error on LIne 120 and you should add following line instead
LoadModule php5_module "c:/php/php5apache2_2.dll"
super tutorial help me get it all up and running, only comment i would make is before you try the phpinfo page from http://localhost you need to rename or delete the index.html file that is installed by apache into c:serverapachehtdocs.
Many thanks for your time and effort in doing this tutorial.
There seems to be a Syntax error which causes my Apache to be unable to start. How can I fix this?
Apparently the error occurred at Step 3; Edit 2
What could be wrong there that my apache does not want to start?
My phpmyadmin doesn't want to work either…
Any chance of the pics from Step 5?
any chance of the pictures from Step 5: Installing and configuring MySQL5? I have clicked them to link to the visionmasterdesign site but nothing there?
I don't see screenshots for •Step 5 : Installing and Configuring MySQL5
any one else has this issue?
Thanks
Help needed
I am installing Apache,PHP on Windows 7 . I finished
•Step 1 : Install Apache
•Step 2 : Install & Configure PHP 5.3
•Step 3 : Configure Apache 2.2.11
•Step 4 : Testing our Apache + PHP
•Step 7 : Making Windows recognize myserver.dev Optional
I am having following problems
- still Apache server thinks Document root is /apache/htdocs
- when I open /localhost/index.php. I am seeing php tags
<?php
phpinfo();
?>
- browser does not understand myserver.dev
any help is appreciated.
Hi, can someone help me to find the lost pictures of mysql?
Gabriele
THANKS A LOOOOOOOOOOTTTTTTTTTTTTTTTTTTTTTTTT
Ganesh
This was a great help for me. After days of trying with other instructions. thanks
Excellent…excellent…after I failed to install Apache 2.2.17 and PHP 5.3.4 from not-clear documentation at original website PHP.net, this tutorial really gives me a BIG Help!
Thank you very much for the author, you are my hero
Hi,
Really excellent tutorial. Just i followed this tutorial step by step, without any issue every thing done perfectly.
Hi….have followed all the steps and got installed, but when i am trying to login into phpMyAdmin
the below error is coming'
#1045 Cannot log in to the MySQL server
Please advise….
Thanks in advance
I am installing apache+php on my machine (Ref :http://webdevcodex.com/tutorial-installing-apache2-php5-mysql5-
phpmyadmin3-windows-7-vista/). But after Configuring httpd.conf file apache shows "The request operation has failed"
while restarting the server. I am not getting any solution on this from last 3 months.
First time when I have tried its worked fine but gave me error for installing mysql. after that I uninstall apache
+php & above problem started.
I am having Windows 7 Home Premium 64 bit.
version used:
httpd-2.2.16-win32-x86-no_ssl
php-5.3.3-nts-Win32-VC9-x86
Kindly help
Thanks in advance
Excellent tutorial! after hours trying tutorials made by morons(most of internet tutorials are) I've found this simple and correct one.Thank you very much!! Serious people like you are missing on the web..
Please suggest me "how to reboot windows box". I have set path variable, but I'm not knowing how to reboot windows box.
Nice article
Generally im thankful for guys like u but this doesn't work for me, too much specific stuff (directory/server names…), for the first time i was following exactly but no success, apache wound even start after editing files
(10 years ago i was working with PHP the last time but i had not experienced such shit)
This guide is fantastic, except I'm having one problem; I'm stuck at the point where you need to restart the Apache server. I keep getting "The requested operation has failed!".
I've gone over the steps three or four times now; I can't find any typos or mistakes. I know the server was running fine before I made these edits; now I can't get anything. This is what my error log keeps giving me:
[Thu Nov 11 16:00:40 2010] [warn] module php5_module is already loaded, skipping
Warning: DocumentRoot [C:/server/www/myserver.dev/public_html] does not exist
Syntax error on line 493 of C:/server/apache/conf/httpd.conf:
Only first PHPINIDir directive honored per configuration tree – subsequent ones ignored
[Thu Nov 11 16:00:40 2010] [warn] (OS 995)The I/O operation has been aborted because of either a thread exit or an application request. : winnt_accept: Asynchronous AcceptEx failed.
[Thu Nov 11 16:00:41 2010] [notice] Child 3188: Released the start mutex
[Thu Nov 11 16:00:42 2010] [notice] Child 3188: All worker threads have exited.
[Thu Nov 11 16:00:42 2010] [notice] Child 3188: Child process is exiting
Can someone explain what I've done wrong? The public_html folder exists, so I don't know what that's about.
did you solve it ? I am also getting same error
Unfortunately its missing the images for the MySQL installation. Other than that great blog.
Hello there,
You have put together an excellent tutorial – great work, right to the point. However, I'm running into a problem when accessing phpMyAdmin:
I am running Windows 7 64 bit and trying to set up phpMyAdmin-3.3.7-english to work with httpd-2.2.17-win32-x86-no_ssl and php-5.3.3-Win32-VC9-x86. I have installed Apache and PHP as per your tutorial and verified that everything is working fine (Step 5.7). By the way, I had installed mysql-5.1.51-winx64 prior your tutorial.
I have followed Step 6 (I chose the latest English-only version availalble to download: phpMyAdmin-3.3.7-english) to set up phpMyAdmin. When I enter phpwebadmin url into the browser, I am able to see a "Welcome to phpMyAdmin" page, and when I enter root/root, it moves to a blank pages and just hangs (adds token request parameter to the url).
Am I having problems because of phpMyAdmin running on 64-bit version? I would appreciate your insight if you had experienced a similar scenario. Thanks!
Thanks Man! This tutorial did help me a lot to configure php5+mysql+apache2
Hi I have installed said versions (php/apache) but after configuring httpd.conf apache fails to restart. before this it was working but while installing mysql gives me error so I uninstall apache php & mysql. now when I am reinsatlling it gives me above problem "THE REUESTED OPERATIONS HAS FAILED". Help me ASAP I have tried 5 times. Thanks in advance.
Hai, anbu here, Did you manage to solve the
problem? I am too facing the same problem. My OS
is windows 7 64 bit and also tried using windows XP
but I could not solve the problem
#PHP5
LoadModule
php5_module “C:/server/php/php5apache2_2.dll”
PHPIniDir “C:/server/php” : Unable to load.
I followed excatly the above tutorial and using
suggested versions (PHP and Apache).
Pls help
Hi after 3 months I am able to solve it. Just change "/" to "". no words to express how fool I am. Some time being a techie is highly dangerous.
enjoyyyy……….
sorry missed out slash
change / to
backslash is not visible in comments.
change fwd slash to backslash. enjoy the fun
Hi,
I installed both Apache and PHP……
After Apache was installed i checked it… When i access the localhost, i get to a page "It works"…
But, after php is configured, i still get the "it works" only….
What could be the problem?
I got it…. Thanks… It was very usefull.
Just uninstall-ed and reinstalled everything….
Any chance we can get these images back?
This tutorial is excellent, it works, however how do you as ASP.NET? Can anyone help?
Nice nice tutorial, very helpful to me coz i wanna be the best web
developer ever.
Excellent
first time to install these components on my machine without troubles.
Thanks alot
thanks a lot for such an great help….& thanks to chris!!!
i was breaking my head…on blank page of phpMYAdmin!!
This the best Tutorial av come across: well explained.
Hi, excellent, but I can not see the images of mysql. Can you fix it? Thank You.
The tutorial works. I changed the dir for my files to C:\htdocs. http://localhost/ shows
my php screen.
Dreamweaver CS5 doesn’t like the virtual server. Live View show error server not found and
the browser says “NetError Page”.
How do I set up my server non-virtual? Nothing seems to work (except this tutorial) and
can’t find help on the web.
Using mysql-workbench-gpl-5.2.25-win32.msi and php-5.3.2-Win32-VC6-x86.zip
Sorry,
Using httpd-2.2.15-win32-x86-no_ssl and php-5.3.2-Win32-VC6-x86.zip. At this point I'm not doing anything with MySQL.
I originally used these same tutorials to download and install Apache 2.2.9, mySQL 5.0.67, php 5.2.6 and phpMyadmin 2.11.9
I recently upgraded the php to php 5.3 and have hit problems – basically when I run a script which issues a mysql_connect() or @mysqli_connect command it fails with the error:
Warning: mysql_connect() [function.mysql-connect]: [2002] A connection attempt failed because the connected party did not (trying to connect via tcp://localhost:3306) in C:Serverwwwmyserver.devpublic_htmlpost_message.php on line 17
My questions are:
1. should I be using the most recent versions of Apache and My SQL in conjunction with php 5.3?
2. can I simply overwrite the existing installed versions or do I have to uninstall and then re-install?
3. crucially – will my doing all this resolve the problem I have just reported?
I look forward to reading any helpful comments that people can offer.
Stuart
Hi Stuart,
I have similar problem, if you do get the solution ,can you please post it here.
Warning: mysql_connect() [function.mysql-connect]: [2002] A connection attempt failed because the connected party did not (trying to connect via tcp://localhost:3306) in C:serverwwwmyserver.devpublic_htmlmysqltest.php on line 2
Warning: mysql_connect() [function.mysql-connect]: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:serverwwwmyserver.devpublic_htmlmysqltest.php on line 2
Fatal error: Maximum execution time of 30 seconds exceeded in C:serverwwwmyserver.devpublic_htmlmysqltest.php on line 2
HiStuart,
I found the solution, is the server ip address and port number as seen below, is what you should use in the connection. It works
<?php
// we connect to localhost at port 3306
$link = mysql_connect('127.0.0.1:3306', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>
PHPMyAdmin problem – look at Step 2 Edit 1.
Did you make the change but forget to uncomment the line for the extension directory in php.ini? None of the tutorials mention it explicitly, but it would be a very simple and hard to find mistake to make…
Thanks a lot.. works for Apache 2.2.15, PHP 5.3.2, MySql 5.1.48, Phpmyadmin 3.3.3 also.. windows 7
thanks a lot
You people realy done a great job……………
I m very thankful to you all
but i am facing aproblem
i have installed and configure php,mysql and apache succesfully
but when ever i place php files in the directory
C:serverwwwmyserver.devpublic_html
and try to open it in the browser the whole code is seen in place of desried result
i am very pleased if u people please help me out
thanks for all, it's great
Gracias por el Post fue de mucha ayuda. Thank you
Ok,
I carried on from the above and I like many others, got mysqlnd BUT NO mysql or mysqli. A good few people here seem to have had this problem too. I checked the mysql status from the command line using C:mysql -u root -p and the server was running, so appeared not to be an SQL problem. Please check the PHP summary at the top of the PHP page to see if a config file is loaded! The file should be C:serverphpphp.ini and if this is not appearing then the mysql entensions are never going to be loaded.
My problem surrounded the renaming og the ini-development file. Using notepad, something was clearly going wrong, despite being careful to rename the file first (right click->rename in windows explorer, then carry out the edits. It simply didn't work for me, so I opened the php.ini-development file with notepad first, then edited it, then saved it as php.ini REMEMBERING TO CHANGE the file type to "ALL FILES" (or it wouldn't work) AND THEN DELETING the old ini-development file!!! Then I simply restarted apache and it all appeared on the PHP screen. I was pulling my hair out for hours. Good luck everyone! Please post yopur own troubleshooting stories to help others, I wouldn't have been able to get it running without some of the comments posted here, and the tutorial itself of course! Thanks again!
Hi Mike and everyone,
Firstly a big thanks to the author! I tried following a tutorial from a book and it failed at the first hurdle!
It took me a while to get this going on Windows 7 myself (I still haven't tested the MySQL bit, just as far as the PHP screen, but I wanted to post my progress so far in case it helps anyone), so don't despair everyone, it is probably something simple. The problems I had were as follows:
1) didn't remove the semi colon (comment) from in front of <extension_dir = "C:/server/php/ext"> in php.ini
2) kept getting "it works" screen instead of PHP screen when pointing towards localhost, this was fixed by editing the hosts file in C:WindowsSystem32driversetc. You do need to remove the comment '#' from in front of <127.0.0.1 localhost>. It simply wouldn't work for me unless I did this. Windows initially tried to deny me (as administrator) permission to edit this little file for some reason, even though the admin had edit rights on the file! I simply gave edit rights to a normal user for a few minutes and it accepted the edit then-weird!!
3) Kept getting "index of" instead of PHP screen, I had indeed saved the php file with a .txt extension, despite making sure not to! I initially saved it as index.php.txt and the text editor would not show the .txt extension (sneeky!) but I was suspicious and so created a new file and deleted the old one…lesson: BE ABSOLUTELY SURE that you select "all files" when you create that little file, or IT WILL NOT WORK!
Ok, now to test the MySQL part, thanks again to everyone for posting and especially the author: I also need this set up at home to practice for my new job
I have now tried to use mysql_connect() in this web page and get the error
Parse error: syntax error, unexpected T_VARIABLE in C:serverwwwmyserver.devpublic_htmljokelist-2.php on line 12
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Our List of Jokes</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<h1>Richard's Jokes Aren't funny Are they?</h1>
<?php /* Connect to the database server */
MYSQL *mysql_init(MYSQL *mysql)
$dbcnx = MYSQL mysql_connect(MYSQL *mysql, const char 'localhos't, const char 'root', const char 'mypasword');
if (!$dbcnx) {
exit('
Unable to connect to the ' .
'database server at this time.
');
}
/* Select the jokes database */
if (!@mysql_select_db('ijdb')) {
exit('
Unable to locate the joke ' .
'database at this time.
');
}
I have the same error with that file, any solution?
I am a newbie and have a very fundamental question. I followed the above steps and managed to get an almost perfect installation. My question is
"In which folder should I start building my site. I put the site in public_html folder but php is not working working properly. The ending tags of php ?> are showing at the end of echo command.'
What should I do?
Thanks in advance.
Regards
SK
I get the error Fatal error: Call to undefined function mysql_connect(); what have I not configured, can you help
when i add this sentences
#PHP5
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
PHPIniDir "C:/server/php"
the apache server doesn't start any can help me????
I had this same problem, just shut the server down completly, then start
it back up
Thanks for giving such a useful tutorial. but I have problem in connecting mysql & php.
My apache & Php are working fine but php is not connecting to mysql.
Mysql is also running fine.
I am giving localhost, root & the password which I enter while connecting to mysql.
But no connection is made.
The ; is also removed from the php.ini file.
Please help me
When I go to load up http://localhost/pma I type in the username and password but then after the login, the page is blank. Does anyone know if this is a bug or a quick fix? Thanks
man !! this is nice….i have never read a tutorial regarding this without having an error in the end. thanks
That's really excellent tutorial, following which i'm able to configure the whole environment easily without confusion. that's the best tutorial i've seen till now. thanks for your share!
thank you, worked great! i would only mention that users running 64-bit windows 7 should install 64-bit mysql for easiest setup. there are work-arounds for installing 32-bit mysql, but 64-bit installs and functions well. everything works works fine with my 32-bit apache, 32-bit php and 64-bit mysql install on my 64-bit w7 machine.
This is an awesome tutorial. Best explanation yet, AND IT EVEN WORKS!
Thanks for the tutorial. I was struggling to get my PHP working and this solved it!
Thanks for the help. Made it easy for me to install AMP.
thanks. it help me a lot…
Hi,
I didn´t find the version (exactly) of the files that you made reference, I got:
apache httpd-2.2.15-win32-x86-no_ssl
mysql-5.1.46-win32 (installer fromhttp://www.mysql.com/downloads/mysql/)
php-5.3.2-Win32-VC6-x86
phpMyAdmin-3.3.2-english
I did exactly what the tutorial says but in the end I have two problems:
1.- In the MySQL test doesn´t appear the same second windows like you (mysql and mysqli are extensions for MySQL, I got mhash and mysqlnd)
2.- Could be from the same reason, when I did the phpmyadmind test appears: Cannot load mysql extension. Please check your PHP configuration
So what can I do man, please I need some help
Excelente tutorial ,sir
i follow step by step but i have a problem "the requested operation failed".
pls clear my mistake
I solved this error: It was php package error that I downloaded.
Those who is getting this error, download Thread Safe zip file
from http://windows.php.net/download/#php-5.2-ts-VC6-x...
VC6 x86 Thread Safe (2011-Mar-22 13:29:30)
* Zip
Like one of the other posters above, I was getting a "blank page" problem on any local sites using the MySQL engine (such as phpmyadmin) until I edited my hosts file (/system32/drivers/etc/hosts) to uncomment the following line:
# 127.0.0.1 localhost
Hope that helps anyone who spent as long banging their head on the wall as I did
outstanding tutorial
have spend many hours trying to acheive this configuration using alot of other tutorials and was unable to get it working.
the extra steps this tutorial showed but were not mentioned in all the other stuff out there are
http.conf
AddType application/x-httpd-php-source .phps
php.ini
extension=php_gd2.dll
extension=php_mbstring.dll
extension=php_mysql.dll
extension=php_mysqli.dll
fantastic thanks again
after all these changes i still get this : “http://localhost/pma/index.php?
token=3d73cfcc071839a3126274b613f493f4″ anyone with an idea of how
to sort out this ? i still use localhost and htdocs i dnt implement the virtual
hosting mode.thanks in advance is been 2 days runnning trying to solve
this blank page of pma(phpMyAdmin) after login
This is an excellent guide and made setting up my new Win7 laptop a breeze! Thank you for an excellent guide!
I know it has already been posted many times but this was just the help I needed It all worked and even on XP. Thank you so very
windows vista or windows 7 specific issue! The system does not seem to understand localhost without a host entry. I spent hours trying to debug this silly issue, so hope this helps someone! If you do not add the entry then using 127.0.0.1:3306 seems to work.
C:/Windows/System32/drivers/etc
uncomment the # 127.0.0.1 localhost
will see like this:
127.0.0.1 localhost
Great work man
it's all good .
Thank you so much. This has been causing me grief for weeks… People like you (and those posters who added information) are the real value of the internet.
Thanks a Bunch!
i got a problem with my PhpMyAdmin. The web browser loaded the login page whit error
Cannot load mcrypt extension. Please check your PHP configuration.
can't someon help me
Hi,
after the mysql installation, the localhost page only shows "it works!" but not the page it's suposed to… what might be the problem ?
thanks in advance
Great tutorial. Thnaks. I had problem swith configuring all these things basinf on XP settings.
Thanks a zilion for this wondefull tuto !!
for those who gets the following with PhpMyAdmin : "#1045 – Access denied for user 'root'@'localhost' (using password: YES). ", refer to the password you have entered in step 5 (installing MySQL5), the password used during the install in the appropriate dialog MUST BE : root (that's the psw used when you log PhpMyAdmin; otherwise, used the psw from your install); I have lost many time with this.
Cheers,
Domi @ gosymbian.com
OMG this is the best tutorial that anyone can come across , I have checked and tried the others and failed to install sucessfully but this one is a cracker!!
Well done!!!
Thank you for a great tutorial. It's the best I've seen, and I've looked at a lot for the past week.
I've used:
apache_2.2.14-win32-x86-no_ssl.msi
php-5.2.12-src.zip
mysql-5.1.43-win32.msi
Ultimately, if I can't get MySQL working well through PHP, I've wasted a lot of time. I gotta have that.
But, no matter what I do – moving php_mysql.dll and php_mysqli.dll, changing the lines in PHP.ini, adding IIS and configuring it carefully, etc., etc. – I just can't get PHP to load MySQL.
My http://localhost is working well with PHP files, but the configuration page does not include the MySQL sections.
So, when my PHP files try to connect to MySQL, they always fail.
Please help me overcome this last block to a good installation.
Many Thanks!
when start up pc seven warring:c:ph5php_gd2.dll , c:ph5php_mbstring.dll , c:ph5php_mysql.dll , c:ph5php_mysqli.dll , c:ph5php_gd2.dll , c:ph5php_mbstring.dll , c:ph5php_mysql.dll , c:ph5php_mysqli.dll
how can solve this problem ,please help me…
when start up pc seven warring:c:ph5php_gd2.dll , c:ph5php_mbstring.dll , c:ph5php_mysql.dll , c:ph5php_mysqli.dll , c:ph5php_gd2.dll , c:ph5php_mbstring.dll , c:ph5php_mysql.dll , c:ph5php_mysqli.dll
how can solve this problem ,please help me…
Thank you for this page you wrote! i install apache+php+mysql !
when i send a mail from php script the following error:"Warning: mail() [function.mail]: Failed to connect to mailserver at "PHP_INI_ALL" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() "
how can solve this problem please reply…..
Actually I was able to find my answer. Changing the following in the phpMyAdmin configuration file:
$cfg['Servers'][$i]['host'] = ‘localhost’;
to this:
$cfg['Servers'][$i]['host'] = ‘127.0.0.1′;
worked.
My question is, why did I have to change this information?
I had the problem with the blank page for phpMyAdmin under win7 and the:
$cfg['Servers'][$i]['host'] = ‘127.0.0.1′;
solve the problem
I was fortunate to stumble upon this tutorial. Everything worked like a charm, except for the final step. When I go to pma and login with "root" and "root" for the UN and PW, the resulting page never loads.
Thanks a lot…… finally worked…
If you want to access phpmyadmin from every "virtual server" in your apache config without the need of copying the phpmyadmin folder to every dir do this:
Download phpmyadmin
Save it to say C:server extract it so that you have a map called phpMyAdmin within that directory
open apache's http.conf
find:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
below it add:
<Directory "C:/server/phpMyAdmin">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
find:
# Alias /webpath /full/filesystem/path
below it add:
Alias /phpmyadmin "C:/server/phpMyAdmin"
close the file, restart apache.
open:
C:WindowsSystem32driversetchosts
add for example:
127.0.0.1 http://www.testserver.com
127.0.0.1 http://www.testserver.nl
if you have multiple virtual hosts configured in apache then you can use phpmyadmin from every host.
Example:
localhost/phpmyadmin/ will work
myserver.dev/phpmyadmin/ will work
http://www.myserver.dev/phpmyadmin/ will work
http://www.testserver.com/phpmyadmin/ will work
http://www.testserver.nl/phpmyadmin/ will work
greetz,
a dutch man
hi people i just do everything well, but when i try to open phpMyadmin i have a problem, i put root in username and in password, but apeears #1045 – Access denied for user 'root'@'localhost' (using password: YES).
need help
cumps
Hi,
I am able to install every thing correctly which can be confirmed by
running phpinfo(); but when ever I try to make connection with MySql
using php code I get httpd.exe error. Any suggestions ?
thanx vo this tutorials
^_^
i have done as rusty has suggested yet i am still getting a blank page.
http://localhost/pma/index.php?collation_connection=utf8_general_ci&token=dc808737599bba34c11147e6ca4a6035
what am i doing wrong?
help needed urgently! thanks guys!
hussein i can send you the files if you like. where would you like me to send it to?
is your setting working on windows7????
can anyone help me?
why do i get a blank page after logging in into phpmyadmin?
how do i fix this?
thanks for the help!
The solution to this blank page problem is fairly easy. Simply modify this line in the phpmyadmin/config.inc.php
$cfg['Servers'][$i]['host'] = ‘localhost’;
to this:
$cfg['Servers'][$i]['host'] = ‘127.0.0.1′;
Anybody can help me, or give me the working php and apache conf files. please
A potential solution is to find the ntwdblib.dll library (downloadable from msdn) and to copy it in C:WindowsSystem32 folder. For some reasons this library is missing for PHP to work properly
Look at the following address: http://www.dlldll.org/dll-files/ntwdblib-dll.html
thanks for your help, finally i was able to fix this issue, I downloaded php-5.3.2-Win32-VC6-x86 and things got fixed.
Dear Michael,
I have been trying since three days to make this happen in my Windows 7 Ultimate edition. But its not working. When I comment this #PHP5
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
PHPIniDir "C:/server/php"
It works, that means the problem is in this part
I installed apache 2.2.11 win 32 x86 open ssl-0.9.8
Php 5.3.0
Could you please help me, once im able to fix this I need to upgrade my desktop which has win xp pro and running with apache 2.0.8 and php 5.
Please could you help me, I really need this on my Windows 7. Or if you can send me the working config file for php and appache i will just replace it. It will be a great help for me.
I had this pronlem when i installed PHP 5.3, after reading several post in the net, my issue was solved, I used this version of php php-5.3.2-Win32-VC6-x86
getkhizer: WOWW…Excellent tutorial..Nice work…Bless you man
And to people WITH THE BLANK MYPHPADMIN PAGE:
you need to rename and populate the config file in the pma dir
- rename it from config.sample.inc.php to config.inc.php
- fill in some value between the two single quotes on the line $cfg['blowfish_secret'] = '';
for example: $cfg['blowfish_secret'] = 'couldbeanythingtypedhere123';
- alter the value $cfg['Servers'][$i]['host'] = 'localhost';
change it into: $cfg['Servers'][$i]['host'] = 'www.myserver.dev';
- optional: add the line
$cfg['Servers'][$i]['user'] = 'root';
and the line
$cfg['Servers'][$i]['password'] = 'root';
that last change allows you to bypass the login screen.
good luck
TO ALL THOSE WITH mysql and mysli NOT SHOWING UP:
re-quoting Jamie's comment here:
There is a problem with the following part in the php.ini edit section.
3.Edit 1
Find extension_dir = "./" and replace it with (Please note the slashes)
extension_dir = "C:/server/php/ext"
it doesnt mention removing the ; semi-colon. I was only getting MySqlnd and not the other two. I got rid of the semi-colon, rebooted my computer and then did my localhost and it worked.
worked for me.
brilliant manual – thanks!!
thank you for the post it work 100%
can you tell me How to set sql database conection in dreamweaver with this local config.
Hi, this stuff does work BUT there is one thing, It cant find my index.php file. If im typing localhost/index.php it just printing out the code in the webbwindow >.< U know how i can solve this? *hugs*
every thing is configured correctly…i also got the php admin page asking me to enter username and password…after entering these information and hitting the enter button i get a blank page with the address as(http://www.myserver.dev/pma/index.php?token=353e2...
i am using apache 2.2.14,php 5.1.3,mysql 5.5-m2 and my php admin 3.2.4 on a windows 7 ultimate(7600) x64 computer….is ther another other configuration needed to be done……thank you
i am using win 7 (7600) x64ulitmate..
I have installed apache 2.2.14,php 5.3.1, mysql 5.5-m2(essential)..every thing worked fine
as you said……But i want to change the port number of apache server to 800 coz i want
to use the port 80 for ISS…I followed the link and downloaded PHPMyadmin but when i run
this “http://localhost/pma/index.php” on mozilla firefox 3.5.5..i get the message as
“Deprecated: Function eregi() is deprecated in
C:\Serverwww\myserver.dev\public_html\pma\libraries\select_lang.lib.php on line
146″…
plz help….
146\www\myserver.dev\public_html\pma\libraries\select_lang.lib.php on line 146
No work, I receive the following error on a alert:
the requested operation has failed.
help me please…
I solved this error: It was php package error that I downloaded.
Those who is getting this error, download Thread Safe zip file
from http://windows.php.net/download/#php-5.2-ts-VC6-x...
VC6 x86 Thread Safe (2011-Mar-22 13:29:30)
* Zip
Hallo from Germany
With that code in the httpd.conf I become an Error when I try to start the Server:
LoadModule php5_module modules/php/php5apache2_2.dll
PHPIniDir modules/php
But also with yout type of code, I just got this error:
"The requestet Operation has failed."
When I put tweo # to the codes it works.
Can anyone Help me?
Even i have the same error, im using windows 7 ultimate editions, did
you solve your problem.
hi,
the error i got is:
Syntax error in line 118
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
where can i find php5apache2_2.dll
please help
thx for this tutorial.. great..
part 3
for($i = 0; $i < mysqli_num_rows($result); $i++)
{
echo "<tr>";
$row_array = mysqli_fetch_row($result);
for($j = 0;$j < mysqli_num_fields($result);$j++)
{
echo "<td>".$row_array[$j]."</td>n";
}
}
echo "</table>";
}
?>
</body></html>
I am using:
Linksys WRT54G2 v1 router
Gateway nv58 laptop
windows 7
php 5.3.1 win32 vc6 x86
mysql essential 5.1.41 win32
Apache 2.2
I did all of the above (except phpadmin and windows recog) and the phpinfo worked (it showed Mysql, MySqli, and MySqlnd).
I did port forwarding on my router for apache and mysql also. any other suggsetions or Ideas would be nice.
you can try the program at http://www.jcws.ca/mysql_up.php
both my apache, mysql and php are installed on the same system.
part 2
the code I am running is as follows:
<?php
/* Program: mysql_up.php
* Desc: Connects to MySQL Server and
* outputs settings.
*/
echo "<html>
<head><title>Test MySQL</title></head>
<body>";
$host="localhost";
$user="myusername";
$password="mypassword";
$cxn = mysqli_connect($host,$user,$password);
$sql="SHOW STATUS";
$result = mysqli_query($cxn,$sql);
if($result == false)
{
echo "<h4>Error: ".mysqli_error($cxn)."</h4>";
}
else
{
/* Table that displays the results */
echo "<table border='1'>
<tr><th>Variable_name</th>
<th>Value</th></tr>";
part 1 (had to split comment up into three)
anytime I run a request for info from mysql i get this message after 60 seconds
Warning: mysqli_connect() [function.mysqli-connect]: [2002] A connection attempt failed because the connected party did not (trying to connect via tcp://localhost:3306) in (I removed path)mysql_up.php on line 13
Warning: mysqli_connect() [function.mysqli-connect]: (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in (I removed path)mysql_up.php on line 13
Fatal error: Maximum execution time of 60 seconds exceeded in mysql_up.php on line 13
There is a problem with the following part in the php.ini edit section.
3.Edit 1
Find extension_dir = "./" and replace it with (Please note the slashes)
extension_dir = "C:/server/php/ext"
it doesnt mention removing the ; semi-colon. I was only getting MySqlnd and not the other two. I got rid of the semi-colon, rebooted my computer and then did my localhost and it worked.
brilliant! Solved the problem for me.
I wish that would work for me, but I still don't get MySQL or MySQLi. I followed the tutorial carefully several times. I've tried so many things, but nothing works. Still no connection to MySQL. Please help!
Thanks for the article! I was having problems to install the 5.3 php version.
You saved my life!
About god damn time.
Im doin software development and this is EXACTLY what i needed!!
☺
Tutorial updated. Congratulations on your initiative!
Which has been updated???
thanks michael , i m newbee just finished installing step by step as directed by you but after installing mysql apache server failed to start
1. when i click http://localhost it give me page of it works i have to manually enter " /index.php" to get me the
php page
2. on starting apache it gives me error
" httpd.exe: could not reliably determine the server's fully qualified domain name , using 124.125.31.171 for Server Name ( OS 10048) Only one usage of each socket address <protocol/network address/port > is normally permitted. : make_sock:could not bind to address 0.0.0.0:80 no listning sockets available, shutting down unable to open logs …..
Note the errors or messages above, and press the <esc> key to exit.
3. php myadmin gives error
The additional features for working with linked tables have been deactivated. To find out ….
The configuration file now needs a secret passphrase (blowfish_secret).
Please help !
I'm having a bad time trying to get my windows web server operational. I tried a BitNami stack, which installed beautifully but wouldn't take Coldfusion, so I had to uninstall and look elsewhere. I tried your tutorial and got on quite well initially. Everything seemed to go fine with Apache and PHP, though I didn't actually test to make sure php was working once I'd installed it – definitely fine after apache installed, though. The problems I've had are with the MySQL install. After several attempts at clearing MySQL off the hard disk as completely as I could without editing the registry (which is perhaps the problem, but would generally be my absolute last resort!), I've had to remove the whole lot, apache, php & mysql and try XAMPP. However, I may still hit problems when I come to install Coldfusion and would quite like to 'cure' the problem I had with the MySQL installation and would then go back to this method at a later stage.
Anyway, sorry for the ramble. The problem was that I couldn't get anything up in the browser after the 'successful' install of MySQL. It was version 5.1.41 rather than 5.1.36 as I couldn't get that version. It just gave me a 403 Forbidden page. If you can think of any reason why that would happen and what I could do about it, that would be superb. I'm used to using my Mac server (have a MAMP PRO setup), which works great and has accepted Coldfusion 9, but my Uni assessment requires me to connect to an Access database and there isn't a mac version of Access. As I live a significant distance from Uni, I need to set up a testing server at home so I can work on my assessment and then take the files in to Uni with me when I go in twice a week. Unfortunately, though I believe it should be part of it, the course doesn't cover setting up a testing server as IT set it up for the students, otherwise I could perhaps get help from Uni.
Hope you can help,
Liz
I had a lot of problems running Apache with multiple versions of PHP.
The problems was because of the PATH variable.
I created a small program called Pepper!, it switches the PATH variable on runtime.
So you can install multiple versions of PHP and use the CLI.
It's still very simple, i'm working on it!. I you want, you can give it a try:
Pepper!: http://pepper.nutshell.nl/
I've installed these on my Vista machine:
apache_2.2.14-win32-x86-no_ssl.msi
mysql-essential-5.1.41-win32.msi
php-5.3.1-Win32-VC6-x86.zip
I followed all of your instructions above up until Step 5 (7. Test MySQL along with Apache+PHP) which I got stuck. I swear I have installed everything successfully. But when I go to http://localhost I have not come across any mysql & mysqli heading. PLEASE HELP???
very well done, i've tried dozens of times and yours was the first to work
Thank you!*
It's an excelent tutorial!*
i use apache_2.2.14-win32-x86-no_ssl & php 5.3
when i restart apache
httpd.exe: Syntax error on line 128 of C:/server/apache/conf/httpd.conf: Cannot load C:/server/php/php5apache2_2.dll into server: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.
can you help me with this problem?
I have the same problem. The syntax seems to be fine:
#PHP5
LoadModule php5_module "C:/serveris/php/php5apache2_2.dll"
PHPIniDir "C:/serveris/php"
I named the installation directory ''serveris'' instead of ''server'' (the same thing on my native language), everything else was done exactly as in this tutorial.
for PhpMyAdmin 3
Your link http://www.myserver.dev/pma/index.php should this be
http://www/myserver.dev/public_html/pma ?
Even then cannot find index.php
Thank you Michael. You're the boss.
Please try using the latest version of PHPMyAdmin.
Important note:
Use the "ZIP" version of PHP and not the "EXE" one . The "ZIP" file includes php5apache2_2.dll where the "EXE" do not.
In step 2.2 , the php.ini can be found as php.ini.recommended (just deleted the .recommended)
Hi, i need a lot of help, i followed the tutorial twice and apache can't show my php files, i restarted my pc when it was needed, and apache too, but i can't figure out whats going on.
By the way im using apache2.2, php 5.3.0 and Windows XP, for now i don't need MySQL
any particular problem you are facing ??
I am assuming you must have not added the type .php .phps in Apache httpd.conf file.
Please verify step 3.3
thanks a lot. mine was Vista and i was constantly having problem trying php .msi installer. finally i got to set php up using your guided steps.
your welcome
hello mic,
i'm having problem with my PhpMyadmin…
i cannot login inside…there is an error :
#1045 – Access denied for user 'root'@'localhost' (using password: YES).
what this mean mic? please help me?
i enter the username and password as a root…
Muy bien. Gracias.
This is a great tuturial! Thank you for sharing it.
Also found I need to do Step 7 to get Step 6 to work
Thanks
I initially had a problem but assume there is a typo editing the conf file:
Edit 5
Search for
#Include conf/extra/httpd-vhosts.conf
Replace with
(nothing here in script assume it should be 'Include conf/extra/httpd-vhosts.conf')
… then it works
my bad for the typo, the article has been updated
Thanks Clarke
I followed every step to the capital T but once i get to the mysql piece, all hell breaks loose. Ok, so i started to install mysql and everything is fine until it gets to the dialog box where it asks to set the security options. It is asking me for a current root password. Why? I don't have a current…Should i just leave this blank? I don't understand. The screen you have does not have that option so for some reason I am getting "current root password" please help. i am going crazy here….
It seems that when I double click on the php file I get the code in the browser but when I use http://localhost, it works fine.
Is this how it is supposed to work?
Fantastic Tutorial.
I am, however having one problem (so far). When I open up index.php i get the following inside of Internet Explorer:
<?php
//index.php
phpinfo();
?>
I have checked, double checked, and triple checked all paths. Seems fine.
The only change that I made was to change the path to .server instead of C:server but I changed all of the paths to reflect this.
Any help would be greatly appreciated.
AP
Hey thanks for a super tutorial – I have installed and used Apache, php, MySQL and phpMyAdmin on a WinXP box in the past but was struggling to get everything working correctly on my Vista PC. With the help of this fine tutorial I now have everything working again
I did notice a few issues though during the setup like missing .dll files (which I have now sorted out thanks to the other users comments found here) – one thing though, never quite got httpd-vhosts.conf to actually work… just said I was not Authorized to view the page… I am guessing that this may have something to do with DocumentRoot still being set to "C:/Webserver/Apache2.2/htdocs" within my httpd.conf even though httpd-vhosts.conf points elsewhere?
also might be an idea to tell people to set 'short_open_tag' to On within php.ini to allow older (non complient) php scripts to work correctly…
Excellent…exactly what i was looking for and works! thx
thank you so much! i wish i could have come across this quicker, i wasted 6 hours trying
to figure this out before i found your post. thanks again
Thank you for an excellent article Vaishnavi! It was a great help.
Great tutorial. Gives (a newbie like me) some idea as to how the components tie together.
Only problem i hit was the very last step.
I did find the same error in the script as did Paul just before me. Still very very helpful for me.
When I installed the PHPMyAdmin and then tried to get Windows to recognize http://www.myserver.dev using Notepad to edit Hosts under System32/drivers/etc I used save as with type all files but I keep getting Cannot create the …. file
So, I made it to the last line, but this one (I think) is what keeps my root root logon to pma from working.
Any ideas? Thanks in advance!
Any ideas?
OK, just a security issue. temporarily changed the hosts file properties to allow update.
what exactly did you do? because i am getting the same error…?
loool i already found out what the problem was… there´s a mistake made in the tutorial at apache Edit 5
It should be replaced with ´Include conf/extra/httpd-vhosts.conf´ but not completely removed! Perhaps someone can fix that? would have spared me a lot of time -.-''
Search for
#Include conf/extra/httpd-vhosts.conf
Replace with
….
# Now navigate to C:serverApacheconfextra
but tnx for the tutorial!!
Hi Paul. I just found the same error in the script. Still very helpful for me. Did you install the PHPMyAdmin and try to get Windows to recognize http://www.myserver.dev???? I tried with Notepad to edit Hosts under System32/drivers/etc using save as type all files but I keep getting Cannot create the …. file
So, I made it to the last line, but this one (I think) is what keeps my root root logon to pma from working.
Any ideas?
Hmm i just found out that if i delete the index.html in htdocs and place the index.php there it works… and if i delete index.php as well it gives index/
That means that it doesn't connect through to the www/../../ map ;s anyone knows how to solve this?
I followed the tutorial and everything seems to work fine except for the moment that I go to http://localhost/
It keeps saying 'it works!' anyone got a clue??
Thanks a lot. Helped me out.
I have spent days trying to configure apache and php to recognise mysql on windows vista,all was too much headache without success.And lets say i was lucky today to burst into this tutorial and following the steps just took me couple of hours to do all at once.THANKS Man ALOT!!!!
Hi! I am having trouble with mysql. i keep getting the following:
#1045 – Access denied for user ‘root’@'localhost’ (using password: yes)
can you help me out?
hey michael! thanks for the detailed instructions. quick question, when editting the httpd.conf file, what do we replace with in step 5?? looking forward to hearing from you!
continuing on my last post here after some more work.
Had missed the last step with the myserver.dev option.. after configuring the host file in
windows32 I now get the “It works!” browsing to it…
Opening the phpinfo script with phpdeveloper gives me the following information
mysql
MySQL Support enabled
Active Persistent Links 0
Active Links 0
Client API version 5.0.45
Directive Local Value Master Value
mysql.allow_persistent On On
mysql.connect_timeout 60 60
mysql.default_host no value no value
mysql.default_password no value no value
mysql.default_port no value no value
mysql.default_socket no value no value
mysql.default_user no value no value
mysql.max_links Unlimited Unlimited
hi i have installed using the instructions on here for on my windows xp machine but when i retarted the apache server i got php startup unable to load dynamic libary "C:php5php_gd2.dll" Uhis happens for anything to do with php i followed the instructions and pointed it to C:serverphp but its still lokking for C:php any ideas
iam unable to login after installing phpmyadmin.giving error not allowed for root@localhost(using password) yes
hey mic, how are you? i was trting to change my MySQL…. i take MySQL 5.1.36 instead of MySQL-essential 5.1.36-win32.msi,… it is OK? i used different version… please let me know mic..thank you….
Hey,
it should not be of any problem, it should work fine.
Legend. Thank you for this tut
Please i need the video is the best way to learn to instalation of server thank you.
you can check out the screencast
http://webdevcodex.com/screencast-installing-apac...
After taking a breather I just wanted to let you know that I was able to resolve my own problem in the index.php file YAY! Thanks for the great tutorial it was awsome! I am really looking forward to learning more.
Hello Bryan,
The code is
<?php
phpinfo();
?>
and you had posted it is
< ?php
phpinfo();
?>
(there was a space between < and ?)
Sorry for the delay in posting, glad you got it working
I posted this on Visionmasterdesigns.com also but I read that this site is the new focus so I'll repost my question here in hopes of help.
Hi,
I have almost made it to the end of my journey in this fun set up process, but like most I just can’t figure out where I have gone wrong in this last part. Once I get to:
After it has restarted (green play icon will be displayed), point your favourite web browser to http://www.myserver.dev.
I tried that and the following appears in my browser
1.< ?php//index.php 2.phpinfo(); 3.?>
Also to add onto my last request. The mysql did load the final step just fine. The mysql command line client shows it is running. I don’t know if this helps determine anything….
Can you please help me?
Thanks in advance!
Bryan-
Hello Bryan,
The code is
<?php
phpinfo();
?>
(there is no space betweet < and ?)
also please verify that the file name is index.php and not index.php.txt.
Regards
Dynamic error to compile mysql, mysqli, and mssql dll files do not match ? what is the deal i have done these steps in this guide over and over way to many times. also php-5.2.9-2-Win32 does not even have php_mssql.dll file in its folder. This is when i restart my apache server. Still runs tho even with that errror…
I have the apache part working find http://matrix.info
Dynamic error to compile mysql, mysqli, and mssql dll files do not match ? what is the deal i have done these steps in this guide over and over way to many times. also php-5.2.9-2-Win32 does not even have php_mssql.dll file in its folder.
The server keeps references me back to C:/php5/ why is that ?
All i could get was the apache server to install. PHP is not working with it…. I check my firewall to bypass the ports needed to do this..
Device Allowed Applications Application Type Protocol Port Number(s) Public IP
matrix Web Server – TCP 80
FTP Server FTP (file transfer protocol) server TCP 21
DNS Server – TCP 53
UDP 53
HTTPS Server – TCP 443
TCP/IP Networking – TCP 3306
Im haven problem with mine as well.
There is no php_mssql.dll in my folder..
Dynamic error to compile mysql, mysqli, and mssql dll files do not match ? what is the deal i have done these steps in this guide over and over way to many times. also php-5.2.9-2-Win32 does not even have php_mssql.dll file in its folder. This is when i restart my apache server. Still runs tho even with that errror… The apache server still starts up and restarts but it is given those messages..
http://matrix.info
You don`t require php_mssql.dll, so don`t worry about that
Hey I get up to just before restarting the apache webserver, and it doesn't restart, I backed tracked and took out the changes until it restarted, then went forward. it was this code…
#PHP5
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
PHPIniDir "C:/server/php"
I have yet to get everything working together with the instructions here. Can anyone show me where I went wrong?
thank you,
Michael Cote'
LoadModule php5_module "C:/server/php/php5apache2_2.dll"
PHPIniDir "C:/server/php"
This code seems perfectly correct. Please check whether the path to the PHP folder's are proper. Also make sure Apache can access php5apache2_2.dll file.
Also check the logs/error.log for more info. Posting the error from the log may help in deciphering the problem
hello mic,
i have a problem,my apache have trouble finding mySQL extensions.
it say’s ” cannot load mysql extension. please check Php configuration-
documents”. when i point the mywebserver into http://www.myserver.dev/or in
index.php, it is working but the mysql and mysqli is not found there.
please help…
Please make sure mysql is running John
Double check by
Start->Run (type CMD)
then
>mysql -u root -p (press enter)
(it will prompt password, enter root)
Once inside mysql root, type
>/s (press enter)
and check whether MySQL service is on or not !
Hi mic,
I am able to connect to mysql now using phpMyadmin. Thanks a lot.
mic,
how i can connect the mysql to php? i will save to
http://www.myserver.dev/public_html after the php script.
hello mic,
Thank you very much for the tutorials. i runned everything. but i
have a little problem with my PHPmyAdmin. everytime i open in your
instruction, it say’s
“cannot load mysql extension Please check your PHP configuration-
Documents”.
how i can connect the PHPmyAdmin to mysql?
i cannot open the PHPmyAdmin in web server
“www.myserver.dev/pma/index.php”….
i follow all your instruction… please help me…
Great job. This was a fantastic tutorial. Installed perfectly under my XP Pro VMware
image. Also might want to recommend Notepad++. Great little program.
Thanks a lot Jeff
First of all i would like to thank Vaishnavi for this wonderful document. I
did all the steps how it is mentioned here. But i got strucked in Step “Test
MySQL along with Apache+PHP” here when i point by browser to
http://localhost i am getting
” — This output in my browser. So i have not moved further before i
resolve this. I am using Windows XP Professional O/S.
So please if you guide me from here it will be very helpful.
Thanks
Khan
Hello Khan,
I believe we would require more details as to decipher what the problem could be. This tutorial does work with XP as well so its not an issue.
if you can attach a screenshot of what the error is or describe more in detail as to what the error is, it may really be helpful
Regards
Hello Mike,
As i am unable to attach the screen shot. So i will explain you exactly
my problem. I have done all the steps as its mentioned in this above
document. Till the installation of MySQL 5.0 the steps are going fine
after installation of MySQL we need to test Mysql along with
Apache+PHP. To do this we need to restart Apache service and point
our web browser to http://localhost. Here i suppose to get PHP page
which is displayed above but instead i am getting contents if index.php
file. like
I hope its clear to you now.
Thanks
Hey Khan,
Please double check whether you have saved the file as
index.phpinstead ofindex.php.txt.Check whether the following are the contents of
index.phpHi,
Thanks a lot…am aspiring to learn php in web designing..this surely helped me a
lot….trying to setup a website in my workplace and I sincerely appreciate your help!!!
hello pskavita,
We are very glad that this article really helped you out.
Do come back for more web development tips and techniques
hey mic,
i forget to tell you that i’m using notebook during installation….it’s OK?
No issues John, it is afterall a PC
Great Tut… Seam WorX :@)
Ther’s only a little TypoBug:
On point 3, it seam to be written: “php5 module”
Instead of what Should NeeD: “php5_module”.
Thanks for pointing out the typo
Worked a treat.
Finally got my own dev copy of http://www.qwikioffice.com/ web desktop up and running.
thanks for the guide.
Sure thing
hello mic,
where can i find the instance of mysql in “REGEDIT”. what are the
instances of mysql? please give me a specific location from REGEDIT. i
finished unsinstall the mysql and especially the mysql.ini….if i found the
instances of mysql in REGEDIT, after that i install again the MySQL?
please help me mic….thank you…
hey John,
There seems to be a lot of trouble regarding the installation of mysql in your PC. goto Start->run, type regedit
use the find tool, to find “mysql”, as it finds instances of mysql, delete em.
Also do a full system search on “mysql” and delete whatever comes up. Hope it helps
mic
i used your tutorial site :
http://visionmasterdesigns.com/tutorial-installing-apache-php-5-mysql-5-
phpmyadmin-windows-vista-xp/6/
i follow the structured, i got it my apache and PHP are workin..only mysql
have a problem…..
#1045 – Access denied for user ‘root’@’localhost’ (using password: yes)
yes john, this tends to happen, when you already have mysql installed or some files of mysql are remaining.
First uninstall mysql then its time to edit the registry
open up “regedit” from start->run
and search for every instance of mysql and delete the keys (its a very dangerous procedure, as you might risk damaging the registry, so backup before you do anything)
hello mic,
i got it already, i follow ur tutorials. about my PHP, i used your version
and i changed it like this:
;extension=php_bz2.dll
;extension=php_curl.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_exif.dll
;extension=php_fdf.dll
extension=php_gd2.dll
;extension=php_gettext.dll
;extension=php_gmp.dll
;extension=php_ifx.dll
;extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_ldap.dll
extension=php_mbstring.dll
;extension=php_mcrypt.dll
;extension=php_mhash.dll
;extension=php_mime_magic.dll
;extension=php_ming.dll
;extension=php_msql.dll
;extension=php_mssql.dll
extension=php_mysql.dll
extension=php_mysqli.dll
;extension=php_oci8.dll
;extension=php_openssl.dll
;extension=php_pdo.dll
;extension=php_pdo_firebird.dll
;extension=php_pdo_mssql.dll
;extension=php_pdo_mysql.dll
;extension=php_pdo_oci.dll
;extension=php_pdo_oci8.dll
;extension=php_pdo_odbc.dll
;extension=php_pdo_pgsql.dll
;extension=php_pdo_sqlite.dll
;extension=php_pgsql.dll
;extension=php_pspell.dll
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_soap.dll
;extension=php_sockets.dll
;extension=php_sqlite.dll
;extension=php_sybase_ct.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll
;extension=php_xsl.dll
;extension=php_zip.dll
but i have a problem installing my MySQL version 5.1.34-win32.msi, i
installed and uninstalled several time, thesame problem with the last
setting for “apply security setting”.
The error occured : ” The security setting could not be applied.
Error number 1045.
Access denied for user ‘root@localhost’(using password: yes)”.
My apache and PHP are working…problem with mysql..
everytime i install again the mysql, same error…
please help mic…thank you…
hey mic,
here is some of my php.ini file. before i configured the php.ini file, there
is no comment in related line. just take a look, i copy and paste the mysql
extension :
[PHP_BZ2]
extension=php_bz2.dll
[PHP_CURL]
extension=php_curl.dll
[PHP_GD2]
extension=php_gd2.dll
[PHP_GETTEXT]
extension=php_gettext.dll
[PHP_GMP]
extension=php_gmp.dll
[PHP_IMAP]
extension=php_imap.dll
[PHP_MBSTRING]
extension=php_mbstring.dll
[PHP_MYSQL]
extension=php_mysql.dll
[PHP_MYSQLI]
extension=php_mysqli.dll
[PHP_OPENSSL]
extension=php_openssl.dll
[PHP_PDO_MYSQL]
extension=php_pdo_mysql.dll
[PHP_PDO_ODBC]
extension=php_pdo_odbc.dll
[PHP_PDO_SQLITE]
extension=php_pdo_sqlite.dll
[PHP_PGSQL]
extension=php_pgsql.dll
[PHP_SOAP]
extension=php_soap.dll
[PHP_SOCKETS]
extension=php_sockets.dll
[PHP_SQLITE3]
extension=php_sqlite3.dll
[PHP_TIDY]
extension=php_tidy.dll
[PHP_XMLRPC]
extension=php_xmlrpc.dll
[PHP_EXIF]
extension=php_exif.dll
when i installed the mysql, i never put the “apply security setting”. i never
cheked the Modify security setting box. but the mysql is working.
by the way mic, what msqlnd? in my phpinfo() web browser,.. i never
seen the mysql and mysqli..only mysqlnd. thank you mic…
I am kinda clueless John,
have you followed the tutorial exactly as it is ? mysqlnd is a native driver of mysql for PHP
Hi Michael,
I'm having similar MySQL problem as John above. Have you figured out how to solve it? I followed every step you described as it is (apart from i set the mysql to C:serverMySQL but tht shouldnt be a problem rite?). Please guide me what to do next?
hey mic,
i got a problem with my PhpMyAdmin. The web browser loaded :
phpMyAdmin – error “cannot load mysql extension, Please check your
PHP configuration – Documentation.
I think there is a problem installing of mysql. because i checked the my
web browser in index.php, There is no MySQL and MySQLi. it just only
the MySQLnd.
But MySQL work properly but no password because i didn’t apply the
security setting in my MySQL.
please help me mic…Thank you…
hey John,
I think your mysql hasn`t been installed and configured properly.
Please uninstall mysql completely, and remove any instances of
mysql.iniin your drives. Then reboot your system and try installing again.The MySQL server Instance Config Wizard must be successfully completed for mysql to work properly.
If you are sure that mysql has been installed properly, then check
php.iniand see whether the required mysql extensions are enabled.I had the same problem, but then noticed that when I edited my php.ini file I forgot to removed the ; before the extension_dir section. It doesnt mention to in the instructions, but I tried and it worked.
Thank you very much Jamie. I thought if it was commented, why modify! Didn't use my brain. It is not mentioned here to uncomment at Step 2.3edit1…
Also MySql images link are dead, and to test we have to start localhostindex.php not only localhost..
Anyway, thank you very much for the tutorial!
mic,
what if i don’t take a security setting to mysql, it still be OK?
what is the risk?
Hi mic,
i installed the mysql 5.1.36-win32. it still thesame problem. there is a
error about security setting.
“The security setting could not be applied.
Error number 1045.
Access denied for user ‘root’@'localhost’(using password:yes)
please help…thank you
Excelente tutorial, segui os passos e foi muito fácil. Obrigado!!
Excelent tutorial, run step by step and its very easy. Thank you.
Thanks a lot Cicero
hello michael,
i download already the PhpMyAdmin 3.2.0.1-all-languages.zip.
how i can extract the file? becuase it is a zip file and open only in
notepad. but the code is broken when i open. Please show me..
thank you…
Hey,
try using WinRAR or any other program. It is not very hard to extract it and don`t worry, the code isn`t broken, if it is, try downloading from another mirror
Thank you michaael,
i would like to ask if it’s Ok to use apache 2.2.11-win 32-x86-openssl-
0.9.8i ? because i installed this kind of apache. It’s OK also to use without
PhpMyAdmin?
yes, there won`t be any issues using apache with openssl
BTW PhpmyAdmin is completely optional.
Many thanx! I’ll translate it for russian users!
Michael,
i’m finished downloading PHP 5.3 VC9 and apache 2.2.11, it was successfully installed and configured. Now, i download MySQL 5.2.3-essential and i encountered error in the last setting for “apply security setting” configuration. I never install MySQL previously, this is for the time to connect with my PHP 5.3. My PHP and apache are working properly but MySQL have a problem…
Where do i go and what should i do? remove the MySQL ?
Hey John,
Please download the MySQL 5.1.x versions
Since you have already tried installing MySQL 5.2.3, i would suggest you to remove it completely. renove
mysql.inian then install mysql 5.1.xHello michael,
i have a problem with my MySQL configuration. im using MySQL 5.2.3 version and PHP 5.3 VC9 version. It's that OK? The last setting of my configuration in MySQL is to execute. when i execute the configuration, the last setting " Apply security settings" have an error.
The error occured : " The security setting could not be applied.
Error number 1045.
Access denied for user 'root@localhost'(using password: yes)"
Hello John,
first off, you need to download PHP 5.3 VC6 (if you want to install it along with Apache) else PHP 5.3 VC9 (if you want to install it with IIS)
Secondly, I am assuming you already had a previous installation of MySQL ?
You need to completely remove the previous installations so as to proceed with the new. Try searching your entire system for MySQL and delete all dependencies (especially mysql.ini)
Regards
UPDATE mysql.user SET Password=PASSWORD('contrasenna') WHERE User='user_test';
me olvidaba
UPDATE mysql.user SET Password=PASSWORD('contrasenna') WHERE User='user_test';
FLUSH PRIVILEGES;
la version 5.5 tiene ese problema, ni el phpmyadmin puede con eso
use esto y funciona con usuarios, no se en qeu anda pero bueno …
grant all on db.* to 'micro_usr'@'%' identified by 'micro_usr';
grant all on db.* to 'micro_usr'@'localhost' identified by 'micro_usr';
UPDATE mysql.user SET Password=PASSWORD('contrasenna') WHERE User='micro_usr';
esta e sla definitiva… haber si alguien lo explica mejor…
Hi, this link helped me: http://www.martinalaimo.com/en/2010/05/windows-vi...
Hello michael,
i was configuring httpd.conf. In edit number 3, where do i add the line :
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
after the line search of
“AddType application/x-gzip .gz .tgz” line or
“#AddType application/x-gzip .tgz” ?
I’m hoping for your answer and reply. i look forward to hear from you..
Thank you very much…
hello John,
You can add it anywhere around those searched lines.
I would suggest you to add it immediately after
AddType application/x-gzip .gz .tgzRegards
it worked, many thanks, your the best
yes I got the word “Testing..” only.. so my PHP should be working fine!
I tried openning the index.php on explorer and firefox, and both show the content of the code…
Hey Mark,
Your php is working fine, there was a typo in the tutorial and I am extremely sorry for not noticing it earlier.
This is the code that should be in
index.php, the typo was that there was a space in the php opening tag like this<?php.This is the correct code
Changes have been made to the tutorial as well.
Once again, I am extremely sorry for the trouble.
I got the word testing when creating the test file, I did create the html file and still no luck.
you got the output as the word “Testing…” ??
if you did then php is running successfully
or did the entire code show up when you opened
test.phpOne thing too note here for all of you who can't get the index page to display the info pages…
1) Based on the tutorial, it says to load or unzip apache to c:/server/apache When you do this, it only installs files and not directories(at least in my case) So i had to migrate the apache folder in program files to this directory.
2) Because you have to do step one, you also must edit your apache config file for every program files~ path to the c:/server/apache path. I think there were 4 of them in the whole file.
3) instead of http;//localhost to display the index or info page, you have to look to http:/localhost/index.php
making all these changes I was finally able to get the index page to display all info and continue on
This tutorial was however the best one out there that I found and thank you for writing it.
Mike, any chance that you read my files?
hey Mark,
yes i am going through your files, but I haven`t found any problem.
It seems perfect.
please create another file called
test.phpthen try opening, http://localhost/test.php
please be sure of saving it as
test.phpand nottest.php.txtIf it still ain`t workin, just try creating a normal html file and open it via your browser.
Michael,
Thanks for your response. I seem to be now having problem installing MySQL … I get to the MySQL Server Instance Configuration. Click on Execute and it fails on 'Start Service' with the eror message “Cannot create windows service for MySQL. Error: 0″. I have tried removing this instance, unistall and re-install a couple of times. Help!!!!
Have you had any previous installations of mysql ??
I had MySQL on my system before but I had my laptop restored to its factory setting a few months back.
hey
restoring to factory settings must have formatted your harddrive
was mysql installed on the same drive ??
either ways, I would suggest you to reinstall it in an another drive.
also please delete any remains of mysql in your driive.
Michael,
Never mind … did a little troubleshooting and finally figured out what I did wrong. Once again, thanks for the awesome tutorial.
Sure thing Moni,
lemme know if you need anything
Moni,
I have the same problem as you were having (the pid error, Unclean shutdown…). Can you
kindly elaborate about what issues you have tackled and solved to Apache running with PHP.
Hi Michael,
Thanks so much for this tutorial. I am however having a problem. I installed Apache 2.2 and PHP with no problem. However, once I edit the httpd.conf and httpd-vhosts.conf files and I attempt to restart Apache as directed in the tutrial, I keep getting an error Error 1067: The process terminated unexperctedly.
In error.log, I have the following:
Starting the Apache2.2 service
The Apache2.2 service is running.
] Apache/2.2.11 (Win32) configured — resuming normal operations
[Fri Jul 17 06:27:54 2009] [notice] Server built: Dec 10 2008 00:10:06
[Fri Jul 17 06:27:54 2009] [notice] Parent: Created child process 3872
[Fri Jul 17 06:27:55 2009] [notice] Child 3872: Child process is running
[Fri Jul 17 06:27:55 2009] [notice] Child 3872: Acquired the start mutex.
[Fri Jul 17 06:27:55 2009] [notice] Child 3872: Starting 64 worker threads.
[Fri Jul 17 06:27:55 2009] [notice] Child 3872: Starting thread to listen on port 80.
[Fri Jul 17 06:34:13 2009] [error] [client 127.0.0.1] File does not exist: C:/server/apache/htdocs/favicon.ico
[Fri Jul 17 06:34:16 2009] [error] [client 127.0.0.1] File does not exist: C:/server/apache/htdocs/favicon.ico
[Fri Jul 17 06:39:30 2009] [notice] Parent: Received shutdown signal — Shutting down the server.
[Fri Jul 17 06:39:30 2009] [notice] Child 3872: Exit event signaled. Child process is ending.
[Fri Jul 17 06:39:31 2009] [notice] Child 3872: Released the start mutex
[Fri Jul 17 06:39:32 2009] [notice] Child 3872: All worker threads have exited.
[Fri Jul 17 06:39:32 2009] [notice] Child 3872: Child process is exiting
[Fri Jul 17 06:39:32 2009] [notice] Parent: Child process exited successfully.
[Fri Jul 17 06:40:51 2009] [warn] pid file C:/server/apache/logs/httpd.pid overwritten — Unclean shutdown of previous Apache run?
Can you please help me out? Thanks.
Hi Moni pls let me know what did you do. I got the same error.
Hey Michael, I sent you the files to the email you provided, hope you have the time to check them out.
Thanks,
Great post for starters man. But I found out that in the php 5.3.0, if I enabled ;extension=php_mysqli.dll, the info does not show up. If anyone else has a problem they can also check this great source
http://drupal.org/node/146679#comment-235582
Thanks for the help btw.
Hey Prashant,
thanks for your comment, actually, sometimes it doesn`t show up immediately.
You need to restart your computer once after editing PHP.ini and httpd.conf for the changes to come into effect
Regards
Yes exactly its showing this code, I checked the Apache Service Monitor and it does display the Apache/PHP service exactly as you mentioned and it states it is working fine, what next?
Many thanks.
Hello Mark
Please check whether you have performed Step -3 (Edit 3 and 4) in particular properly.
Those lines tell apache to execute .php files as PHP files.
If still you are getting the error, please send me a copy of your
php.iniandhttpd.confto contact@webdevcodex.com<code> </code>
I see the content of the index.php file. i made sure it is not saved as a .txt file and it is saved as .php file, yet its not working!
Thanks.
you mean, you are able to see the following code when you visit http://localhost/ ??
Please verify that PHP and Apache are working, check the Apache icon in the taskbar to see whether the Apache Service Moniter displays Apache/2.2.11 (win 32) PHP/5.3.0
I had a similar problem using opera if I tried to open a local PHP file from Windows Explorer. Note that in the address bar it will say file:///(path) instead of http://. Try opening the browser and browsing to 127.0.0.1/index.php, then maybe it would show up.
Hello Michael,
Thanks for this great illustration on how to install the PHP, really your work is so neat and excellent.
Yet I have a problem and I hope you have the time to reply, I am trying to install php-5.3.0-Win32-VC6-x86, apache_2.2.11-win32-x86-no_ssl, mysql-essential-5.1.36-win32, phpMyAdmin-3.2.0.1-all-languages, on windows vista SP1, I have followed everything in this tutorial to the exact, but yet when I reach step 5 – 7 "7.Test MySQL along with Apache+PHP" and when I open the http://localhost, all I see is:
instead of the PHP page.
Can you please give me a hint of what I did wrong.
many thanks.
Try configuring ur host following the step 7 and add
127.0.0.1 localhost
If this doesn't work try to check the edits that you have made in the files.
I wanna thank you so much for this site, this page realy realy help me so much whit the toturial:Installing Apache 2.2.11, PHP 5.3, MySQL 5.1.36 & PhpMyAdmin 3.2 in Windows 7/Vista/XP.
this site was the only that i found in tha web that explein the best way stape by stape how to install the web server . thank you very much, i wish you Success to this site, see you
Thanks a lot Lenmat for your kind comments.
Do Subscribe to our feeds to get more information about the latest technologies and How to’s !
oi! here’s the weird thing, now it’s there, but when i search for the other edits i made, they are not!
: )) some editors are making first search only in the bottom from current cursor position
when editing httpd.conf Edit #4,
This could not be found:
Search for
DirectoryIndex index.html
Replace with
DirectoryIndex index.html index.php
Why is this not in my httpd.conf file???
Hey alejandro,
Edit#4 is present
just search for the text
DirectoryIndex(it should be around Line 238)make sure you also add
index.phpalong withindex.htmlin that line.It happens if you're trying to search in the wrong direction using notepad. Try choosing up if you were searching down the document.
It happened to me so I hope this helps.
Thank you for this page you wrote. I was struggling to get Apache, PHP, SQL onto my XP Home Edition computer because I am looking to get a job as a PHP programmer. I can now use PHP on my XP and I am extremely grateful for the effort you put into this page. Once again … thank you
David Cowdery
C:\webserver\Apache2.2\bin>httpd.exe -X
httpd.exe: Syntax error on line 79 of C:/webserver/Apache2.2/conf/httpd.conf: Ca
nnot load C:/webserver/php/php5apache2_2.dll into server: The specified module c
ould not be found.
THE DLL IS THERE
Hey,
1. Please check the path of
php5apache2_2.dllonce again.2. please note the path of PHPINIDir in Step5 Edit 2 of the tutorial. Also remember the quotes
""3. Restart the computer and then try editing
httpd.conffileIf you are still having an error, try extracting php into another directory, edit PHP first and then edit
httpd.confI had this problem too. Solved after downloading and using the vc9 thread-safe version of PHP
Well done, I was trying to install VC9
This is very attention-grabbing, You are a very skilled blogger. I’ve joined your feed and sit up for in the hunt for extra of your excellent post. Also, I have shared your site in my social networks
Ok so I am thinking about removing my blog from Tumbler and get it to a WordPress site. I think this is a wordpress site right? If it is, may I ask where you got the theme? Thanks a bunch!
Wonderful website. A lot of useful information here. I’m sending it to some friends ans also sharing in delicious. And obviously, thank you on your sweat!
Its such as you learn my thoughts! You appear to grasp a lot about this, like you wrote the guide in it or something. I think that you can do with a few p.c. to force the message house a bit, however instead of that, that is fantastic blog. An excellent read. I will definitely be back.
Wonderful work! That is the type of information that are supposed to be shared across the web. Disgrace on the search engines for now not positioning this post upper! Come on over and consult with my web site . Thank you =)
I have read a few good stuff here. Definitely price bookmarking for revisiting. I wonder how a lot effort you place to make such a great informative web site.
certainly like your web site but you need to check the spelling on several of your posts. Several of them are rife with spelling issues and I find it very bothersome to tell the reality however I will surely come again again.
erelfGuep, http://www.restorilonlinesale.com/ – temazepam for sale Restoril was approved by the United States Food and Drug Association in 1964. http://www.restorilonlinesale.com/ – buy restoril
Useful information. Lucky me I discovered your website by chance, and I’m surprised why this accident didn’t came about earlier! I bookmarked it.
You already know therefore considerably in terms of this subject, produced me personally believe it from a lot of various angles. Its like women and men are not involved except it’s something to do with Lady gaga! Your own stuffs outstanding. At all times take care of it up!
Very nice very nice stuff you have on ur blog your above excellence
Thanks , I’ve recently been looking for info about this subject for ages and yours is the greatest I have discovered till now. But, what about the bottom line? Are you sure about the source?
Thanks , I have recently been looking for info approximately this subject for a while and yours is the greatest I have discovered till now. But, what concerning the conclusion? Are you positive in regards to the source?|What i don’t realize is in fact how you are no longer really a lot more neatly-preferred than you might be now. You are very intelligent.
thanks its nice
Hey, kindly aid me on step7_Test MySQL along with Apache+PHP. My index.php is not loading on the browser when i enter localhost; instead its downloading the inde.php. Where could i be wrong…..
I am glad for writing to make you know of the exceptional encounter my child experienced browsing your web page. She realized lots of pieces, not to mention what it’s like to have an incredible teaching mindset to get folks without difficulty learn about selected tricky issues. You actually exceeded readers’ expectations. Thank you for offering the effective, dependable, informative and as well as fun thoughts on that topic to Tanya.
Great weblog here! Also your web site rather a lot up very fast! What host are you the use of? Can I am getting your associate hyperlink in your host? I want my site loaded up as quickly as yours lol
Thanks for any other fantastic article. The place else could anyone get that kind of information in such an ideal manner of writing? I have a presentation subsequent week, and I am at the search for such information.
Hey very cool site!! Man .. Beautiful .. Amazing .. I’ll bookmark your site and take the feeds also?I am happy to search out so many helpful information right here within the post, we’d like work out extra strategies on this regard, thank you for sharing. . . . . .
Somebody essentially assist to make seriously articles I’d state. That is the first time I frequented your website page and to this point? I surprised with the analysis you made to create this actual post extraordinary. Wonderful job!
This is very interesting, You are an excessively skilled blogger. I’ve joined your rss feed and look ahead to in the hunt for extra of your fantastic post. Also, I’ve shared your website in my social networks
Fantastic beat ! I would like to apprentice while you amend your site, how could i subscribe for a weblog site? The account helped me a acceptable deal. I had been a little bit familiar of this your broadcast offered vibrant transparent concept
This is a great blog you have here
Awesome issues here. I am very happy to look your article. Thanks a lot and I’m taking a look forward to touch you. Will you please drop me a mail?
Very intersting post. thank you very much for the info. Very enriching site.Thank you, Tomer
Its like you learn my mind! You appear to understand a lot about this, like you wrote the ebook in it or something. I feel that you can do with a few p.c. to power the message house a bit, but other than that, this is magnificent blog. An excellent read. I’ll certainly be back.
Hello there, You’ve done a great job. I?ll definitely digg it and personally suggest to my friends. I am confident they’ll be benefited from this website.
I will immediately grasp your rss as I can’t to find your email subscription link or newsletter service. Do you’ve any? Please let me recognise in order that I may subscribe. Thanks.
This sort of facts should be valued by everybody it is anything that I think we can all draw upon. I incredibly considerably like the theme you’re applying right here which I believe is wordpress isn’t it? I’ve been looking around for some thing simular but have yet to uncover a thing suitable for my website. I looked at the link on your footer and will try and download a copy of it for myself thanks.
I really like what you guys tend to be up too. This sort of clever work and exposure! Keep up the awesome works guys I’ve added you guys to my blogroll.
I used to be recommended this website via my cousin. I am no longer sure whether or not this post is written through him as nobody else understand such designated approximately my trouble. You are amazing! Thank you!
Hypnotic (Marketing Strategies) Marshall Sylver Hypnotherapist (How to Make Money Online) | …
What?s Taking place i’m new to this, I stumbled upon this I have discovered It positively useful and it has helped me out loads. I’m hoping to give a contribution & assist different users like its aided me. Good job.
Pretty great post. I simply stumbled upon your blog and wanted to mention that I have truly enjoyed surfing around your blog posts. After all I’ll be subscribing to your rss feed and I am hoping you write once more very soon!
of course like your web site however you have to test the spelling on several of your posts. Many of them are rife with spelling problems and I find it very troublesome to tell the reality on the other hand I will definitely come back again.
good site!! You could start many more. I love all the info provided. I will stay tuned.
The canada parkas may be within the world of style. diesel jeans uk can help them get out of comfort.
Wonderful paintings! This is the type of information that are meant to be shared around the web. Disgrace on Google for no longer positioning this submit higher! Come on over and visit my site . Thank you =)
Just wish to say your article is as astonishing. The clearness for your put up is simply spectacular and that i could think you’re a professional in this subject. Fine along with your permission allow me to seize your feed to stay updated with forthcoming post. Thank you a million and please keep up the gratifying work.
I’m no longer positive the place you are getting your information, but great topic. I must spend a while studying much more or figuring out more. Thank you for fantastic info I used to be in search of this information for my mission.
I am not a follower of India, but they were great in this world cup. Will be interesting to see if they can win away from home next time around.
My brother recommended I would possibly like this website. He used to be entirely right. This publish actually made my day. You cann’t imagine simply how a lot time I had spent for this info! Thank you!
This is really fascinating, You’re an overly professional blogger. I’ve joined your rss feed and stay up for in the hunt for extra of your magnificent post. Also, I’ve shared your site in my social networks
Hello Hezi! You do have a super Kewl name. You did the right thing by purchasing your name before some one else did. Hezi.com value is going Up Up Up. I know it’s true…
Excellent blog here! Additionally your web site rather a lot up fast! What host are you using? Can I am getting your associate link to your host? I desire my web site loaded up as quickly as yours lol
I delight in, result in I found just what I was having a look for. You’ve ended my four day long hunt! God Bless you man. Have a great day. Bye
Hello There. I found your blog the use of msn. This is an extremely smartly written article. I’ll make sure to bookmark it and return to learn more of your helpful info. Thank you for the post. I will certainly return.
I simply couldn’t leave your web site before suggesting that I extremely loved the usual info an individual provide to your guests? Is gonna be again frequently in order to check out new posts
Please inform me the idea worked well appropriate? My partner and i dont want to sumit this once more only don’t have to! Possibly the blog glitced out and about as well as i am a fool, the other choice does not big surprise us hehe. many thanks for an excellent weblog!
http://www.louis-vuitton-replica-handbags.us/ Louis Vuitton Replica
Hiya very nice website!! Guy .. Beautiful .. Superb .. I’ll bookmark your web site and take the feeds additionally?I’m happy to seek out numerous helpful information here within the publish, we need work out more techniques in this regard, thank you for sharing. . . . . .
I’ve suffered from hemorrhoids for quite awhile and I was lucky to find out about a treatment that was able to heal me in no time. The pain went away in a matter of a few days and I no longer had to suffer.
Hemorrhoids has been one of the worst battles I’ve ever had to fight. The condition was causing too much pain and stress for me. I was so glad to find a treatment for it.
Never had I suffered so much from an embarassing conditioning. I felt that hemorrhoids would be the death of me because the pain was so horrible. Luckily I stumbled upon a treatment that was able to heal me in no time.
I beloved as much as you will obtain carried out proper here. The caricature is attractive, your authored material stylish. nevertheless, you command get got an nervousness over that you wish be delivering the following. unwell surely come more until now again as precisely the similar just about a lot ceaselessly inside case you protect this increase.
Thank you for another fantastic article. Where else may anybody get that kind of information in such a perfect way of writing? I have a presentation subsequent week, and I’m at the look for such info.
The Zune concentrates on currently being a Easily transportable Marketing Participant. Not a internet browser. Not a sport appliance. Possibly inside the potential it’ll do even better in those regions, but for now it is a brilliant approach to organize and listen on your new music and films, and is without having peer in that regard. The iPod’s strengths are its word wide web browsing and apps. If individuals sound a lot more compelling, probably it is your very best decision.
Isma, you got me thinking. And yes you are right. Why did Dato’ Onn Jafaar leave UMNO? Why didn’t UMNO accept his suggestion?
Everyone loves what you guys are usually up too. This type of clever work and exposure! Keep up the awesome works guys I’ve incorporated you guys to blogroll.