Reputation: 939
I opened up a Joomla/Localhost WAMP site that I was working on, and when I tried to go to my Joomla login page, it took me to a site index. I tried my other links and websites, and it did the same thing. Refreshed the Cache (another post recommended), tried a different browser, but nothing. If I can avoid a fresh install, it would be preferred (of course), so I wanted to get y'alls insight first.
Upvotes: 0
Views: 56
Reputation: 94662
Ok so there is your problem, you are double clicking on Windows Explorer to launch your site. Thats wrong
If you do that the site is not actually run through Apache and therefore cannot be passed through the PHP interpreter, so your PHP code never gets run.
Enter the url directly into the browser address bar as
localhost/mintandhoney2
and
localhost/mintandhoney
Its actually A MUCH, MUCH better idea to create a Virtual Host for each of your projects, especially if they are CMS's like Joomla and WordPress, specifically if you want to eventually copy them to a live hosted site, or copy a live site to your localhost environment.
Here is a link to an answer that describes how to do that and also why it is a VERY GOOD idea.
WAMPServer and why its a good idea to create Virtual Hosts for ALL your projects
Upvotes: 1