Difference between revisions of "Marmalade"

From WikEmacs
Jump to navigation Jump to search
(added a basic marmalade page)
 
Line 16: Line 16:
 
* [[el-get]]
 
* [[el-get]]
  
== Project Pages ==
+
What host are you using? With the admin still under active dpeelovment we haven't been testing far and wide yet (just MAMP, a basic Dreamhost account, and a blank-slate Linode instance) but we plan on adding more hosts to the list to get it working under as many out-of-the-box host installs as possible. As for the problem at hand, check out the RewriteBase command in the .htaccess. That's most likely where you're running into issues if it wasn't set correctly (or if it was set to a symlink directory without +FollowSymlinks working) then you'd run into the problems you're describing
 
 
* [http://melpa.milkbox.net/ Project Page]
 
* [https://github.com/milkypostman/melpa GitHub Repo]
 
  
 
== Tutorial Pages ==
 
== Tutorial Pages ==
  
 
[[Category:Project Management]][[Category:Convenience]]
 
[[Category:Project Management]][[Category:Convenience]]

Revision as of 11:08, 22 June 2012

Marmalade is a package.el repository, supported by the Emacs community. It's best known feature is the ability to submit Emacs packages directly via Marmalade's web UI.

Basic setup

(require 'package)
(add-to-list 'package-archives
             '("marmalade" . "http://marmalade-repo.org/packages/"))
(package-initialize)

See Also

What host are you using? With the admin still under active dpeelovment we haven't been testing far and wide yet (just MAMP, a basic Dreamhost account, and a blank-slate Linode instance) but we plan on adding more hosts to the list to get it working under as many out-of-the-box host installs as possible. As for the problem at hand, check out the RewriteBase command in the .htaccess. That's most likely where you're running into issues if it wasn't set correctly (or if it was set to a symlink directory without +FollowSymlinks working) then you'd run into the problems you're describing

Tutorial Pages