I just installed Magento 1.4.1.1 on my Ubuntu Apache server and everything is working just fine aside from one thing:
The Magento Connect Manager simply brings up a blank page. In Firebug it is just <html><body></body></html>. I read that it might be permissions but I gave 777 permissions to the Magento directory and all subdirectories and still the blank page.
Any ideas?
I just installed Magento 1.4.1.1 on my Ubuntu Apache server and everything is working
Share
Alright, for some reason it was looking for a PEAR file in a non-existant location. Magento included this in line 27 of PEAR.php:
However, this led it to a directory that included “/includes”, which wasn’t correct. I ended up just putting
Notice the only difference is the “../” in front of downloader to remove the “/includes” directory from the path. But my real question would be why Magento would have this error in the first place. This couldn’t have happened to everyone who installed Magento on an Ubuntu server, right?