Hey there Jasper, I developed the Meta Tags extension and it works just
fine under 0.6.4.
As to the repository at http://dev.radiantcms.org/svn… That’s a
special set of extensions that is stored in the Radiant Subversion
Repository (not sure what gets you in that list – I’m guessing you need
to be a member of the radiant core team of developers). The rest of us
mere mortals host our stuff wherever we have server space.
Extensions from the Radiant Subversion Repository (this includes
the …/rel_0-6-4/extensions/ you found)
Extensions from the Ruby-Lang Subversion Repository (not sure if
those are radiant extensions or whether some are actually rails
plugins)
Other Extensions (that’s the rest of us - and sorry, there’s not a
good system to identify which extensions are compatible with which
versions of radiant I’m afraid)
Also I will keep notes on my first development of a website. I’ve found
lots of info on extensions. Layout building info seems sparse I’ll
contribute.
I’m not new to CMS’s, I’ve done a number of sites on drupal so i’m
getting my bearings. I like the natural content organization of the cms.
I’ve went through the install ok on my site with site5. In the end i’ve
downloaded the entire install rather then the gem install. The admin
kept reporting that I had version 0.6.1.
I do have 3 questions, maybe you can help me get directly to the info
how can I construct a contact form, it that the mailer extension?
does any of the editors (tinymce, fckeditor or wym) work with images
uploads?
can a user role be added of a “member” to the site?
Jasper
btw the wiki seems to be inaccessible alot. Any idea why?
Chris P. wrote:
Hey there Jasper, I developed the Meta Tags extension and it works just
fine under 0.6.4.
As to the repository at http://dev.radiantcms.org/svn… That’s a
special set of extensions that is stored in the Radiant Subversion
Repository (not sure what gets you in that list – I’m guessing you need
to be a member of the ragreatdiant core team of developers). The rest of us
mere mortals host our stuff wherever we have server space.
Extensions from the Radiant Subversion Repository (this includes
the …/rel_0-6-4/extensions/ you found)
Extensions from the Ruby-Lang Subversion Repository (not sure if
those are radiant extensions or whether some are actually rails
plugins)
Other Extensions (that’s the rest of us - and sorry, there’s not a
good system to identify which extensions are compatible with which
versions of radiant I’m afraid)
Please don’t take my answers as gospel - but I hope they help. Perhaps
some others could offer some helpful insight here…
See answers below:
Jasper Kooij wrote:
I’ve went through the install ok on my site with site5. In the end i’ve
downloaded the entire install rather then the gem install. The admin
kept reporting that I had version 0.6.1.
I do have 3 questions, maybe you can help me get directly to the info
how can I construct a contact form, it that the mailer extension?
Yes, the mailer extension is the one I’ve heard of most (though never
used). Others may be able to chime in with additional solutions (and
which ones work with the most recent version of Radiant).
I’ve been talking with an individual on the core team about a more
general forms solution for Radiant but that is still in early
pre-alpha.
does any of the editors (tinymce, fckeditor or wym) work with images
uploads?
There are a couple of image upload solutions out there and there are
several content editor extensions too. I’d go to the content editor
extension developers directly about adding in images directly. Seems
like someone mentioned the capability (though I’m not sure if the
solution was publicly available).
Anyone else here?
can a user role be added of a “member” to the site?
Radiant isn’t really geared that way - though you could extend it to do
so. There was a recent discussion on this (try searching the mailing
list for “Role Based Access Control”). I think the consensus was that
membership and admin users are separate things (and the former are up to
you to build).
Jasper
btw the wiki seems to be inaccessible alot. Any idea why?
/usr/bin/rake:17:Warning: require_gem is obsolete. Use gem instead.
(in /home/jasperko/wisconsindells)
rake aborted!
uninitialized constant ApplicationController
what am i doing wrong?
Hmm. Are you using any other extensions (your command migrates all
extensions)?
Other than that, In my local development environment, I have a working
Radiant 0.6.4 with the page_meta extension. The only reference to
“require_gem” that I can find is in config/boot.rb on line 28.
ok specific questions about the page_meta extension:
I’ve got it down to install on site5 hosting, I’ve got the extension
installed using svn
after the rake production db:migrate:extensions I get:
rake production db:migrate:extensions
/usr/bin/rake:17:Warning: require_gem is obsolete. Use gem instead.
(in /home/jasperko/wisconsindells)
rake aborted!
uninitialized constant ApplicationController
what am i doing wrong?
Chris P. wrote:
Please don’t take my answers as gospel - but I hope they help. Perhaps
some others could offer some helpful insight here…
See answers below:
Jasper Kooij wrote:
I’ve went through the install ok on my site with site5. In the end i’ve
downloaded the entire install rather then the gem install. The admin
kept reporting that I had version 0.6.1.
I do have 3 questions, maybe you can help me get directly to the info
how can I construct a contact form, it that the mailer extension?
Yes, the mailer extension is the one I’ve heard of most (though never
used). Others may be able to chime in with additional solutions (and
which ones work with the most recent version of Radiant).
I’ve been talking with an individual on the core team about a more
general forms solution for Radiant but that is still in early
pre-alpha.
does any of the editors (tinymce, fckeditor or wym) work with images
uploads?
There are a couple of image upload solutions out there and there are
several content editor extensions too. I’d go to the content editor
extension developers directly about adding in images directly. Seems
like someone mentioned the capability (though I’m not sure if the
solution was publicly available).
Anyone else here?
can a user role be added of a “member” to the site?
Radiant isn’t really geared that way - though you could extend it to do
so. There was a recent discussion on this (try searching the mailing
list for “Role Based Access Control”). I think the consensus was that
membership and admin users are separate things (and the former are up to
you to build).
Jasper
btw the wiki seems to be inaccessible alot. Any idea why?
Well, it’s clear that the error is being triggered by my extension. And
Sean C. was nice enough to point out that I need:
require_dependency ‘application’
in my extension initialization for the fancy stuff I’m adding to core
components.