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) (38194) - PHP 5.3 – Download PHP 5.3.0 (VC6 Thread safe) (34341)
- MySQL 5.1.36 – Goto Download page
- PHPMyAdmin 3.2.0.1
PHPMyAdmin Download Page | Direct Download PHPMyAdmin 3.2.0.1 (7530)
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.
















Thanks, great blog!
I am facing problem after step 3, apache service doesn't start after i am done the apache configuration and restart apache.
Great tutorial, works like a charm.
qssaalia
Hey All, I had a bit of trouble with the instructions but on doing a google search came across Xamp which has a windows installer that sets up apache, mysql and php. Great work but this link might be better for those who just want to dive in. http://www.apachefriends.org/en/xampp.html
Great guide. Thanks a lot guys…
All the images after Step 5 are gone. Could you replace those so I can finish this installation?
I will try to install now
HIH
oic! Now I get it lol took me a sec
The helmets represent heads, or possibly tails. Representing the house that Peyton built.
Hope Solo is a beautiful woman with muscles.
I am having trouble in installing and configuring httpd-2.2.22-win32-x86-no_ssl.msi and php-5.3.10-Win32-VC9-x86.zip on windows XP sp 3. Plz help me.Thnx in advance
It took ten during the regular season.
Really enjoyed listening to that national anthem.
Mam, I am having problem with restarting the Apache after configuring php5 and apache. Its didplaying that it cannot load php5apache2_2 module. The module cannot be found.. What should I do..Please help!!
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 eith