Using drupal,I am creating a registration based website that has four membership plans.
Based on the selected membership plan, users have to pay the membership fee using any payment module.
How can I create membership plans and this kind of payment functionality?
There is a module called lm_Paypal http://drupal.org/project/lm_paypal . Use that module . This module can assign change roles of users also, after payment
You can make use of following links for creating membership website using drupal :
You have to use ubercart for this.
1) http://10kwebdesign.com/10kblog/step-step-setting-membership-community-site-using-drupal
2) http://www.leveltendesign.com/blog/rachel/how-create-memberships-drupal-ubercart#.UPjnmsXMgqY
If you are willing to pay for it then just go for "Membership suite module" on http://www.moneyscripts.net/. This is a paid module and is well documented.
Related
I would like to display a list of available Moodle courses and available places for each of the corses on a Drupal site.
Is there a simple way of integrating Moodle and Drupal so that when a Max enrolled users is set in Moodle, the Drupal enrolment form witll display the number of available places, and disable the ability of users enrolling in to courses which have no places left?
There is authentication plugin available moodle-drupalservices for SSO between both systems
You can read more about it from module document
If you want to fetch detail of moodle courses in drupal then web service is the best way to achieve it, you just need to create web services client in drupal to consume moodle services
http://docs.moodle.org/dev/Category:Web_Services
use core_course_get_courses web service function don't need to pass any value to it, it will fetch all available courses detail from moodle.
There is a module for moodle integration in drupal - Moodle Connector. There are some other related module to which enhance the integration further like Commerce Moodle, which let you sell the course & you get drupal commerce to handle your selling..great right?
But if you are working in D6, then you will have to check another module Moodleconnect, but it's still in DEV version, so may be you will have to work on it.
https://www.drupal.org/project/issues/moodle_views will allow you to list courses using a Drupal View. This module doesn't (yet) allow you to display the places available, but if you still need this functionality I could probably add it relatively easily.
I want to create a custom sign up form for the aegir provisioning system in drupal and once the user fills out the form and submits, I want the website to be created on the domain name specified in the form and all other hooks that aegir executes while creating a website. Is there a way to accomplish this?
I think it should work out of the box.
If not, then the heavy-weight solution is to install Ubercart and the Aegir-Ubercart integration module, in addition to Aegir. Then you have to setup an appropiate product cart, with hosting features to each products, allowing automatic site creation.
I'm looking to create a membership-basee website and I'm new to Wordpress so its been a headache trying to look for free plugins that can
creates 3 levels of membership (non-members, members, and premium members)
limit access to certain pages/functionality of the site to members/premium members
Also can't find a good plugin for customizable registration form
Take a look at Paid Memberships Pro, which is 100% open source, and available in the WordPress repository:
http://wordpress.org/extend/plugins/paid-memberships-pro/
Here is some code to use hooks in the plugin to add fields to checkout page. It takes a bit of php skill and programming:
https://gist.github.com/1389944
Good luck.
If you are trying to create a membership website with WordPress, the memberpress plugin is what you should know about. It allows you to restrict certain areas and even add membership tiers for your WordPress website. it is one of the best plugins available for membership websites, you can check out the memberpress website from this link
https://memberpress.com/myohoguy/home
There are any number of membership plugins for Wordpress that exist to monetize website content. People pay a subscription and have access to pages and posts. This makes it difficult to locate what I am looking for.
Is there a plugin that is specifically for managing the membership in an organization?
WHAT IT SHOULD DO
Have the ability to import existing
membership details and create WP
users from those details.
Automate and manage the
collection of annual dues.
Facilitate mass e-mails to members.
Restrict access to some of the Web site pages
perhaps by linking membership to WP
roles.
Perhaps manage payments for conferences.
Have the ability to export membership details.
SOME THINGS IT SHOULD NOT DO
Have pay per post functionality.
Sell value added pages.
Have different levels of accounts based on content.
TIA
I was looking for a similar plugin for a non-profit organization client of mine, and finally found MemberMouse. I was particularly concerned about being able to setup annual dues at a certain time of the year with pro-rating for new members during the rest of the year. While this is not in their base plugin, they can custom program that for a small fee.
The only parts of your request that plugin may not cover is facilitating mass emails (you could manage that through something like Constant Contact) and taking payments for conferences (which you could setup on your site anyway pretty easily using PayPal or your merchant account provider and a cart).
Hope this helps. I would suggest contacting MemberMouse with your questions to see if it will work for you.
I use Drupal with CiviCRM for our nonprofit's public site and CRM database, and Open Atrium for the intranet. My goal is to either sync or share specific users from the public site to the intranet, to allow single sign-on.
However, only users who are part of a specific CiviCRM smart group (volunteers) should be shared/synced. I could use the module to sync CiviCRM groups with Drupal organic groups if that would make this task easier.
Any thoughts?
Usually, the Domain Access module is used for synching users and whatnot, but your requirement that only certain users be synched throws a wrench into that setup.
Therefore, I'd recommend that you either:
Sort through that module's documentation to see if it provides any hooks so that you can filter down the user list, and if not...
Just look at how that module does its heavy lifting and write a custom module to do the same but only with a limited set of users.
Actually, you can use Account Sync for this. (where only a sub-set of users is required.)
Just create a sync role and assign account sync permissions to that role only.
Use a server key to encrypt this as you would for XML-RPC.
http://drupal.org/project/account_sync
If Single Sign-On is your goal, Bakery provides single sign-on between multiple Drupal sites (including Drupal.org and other sites in the *.drupal.org network, something of a recommendation).
Worth checking out - while it does involve some additional setup / config, it doesn't mess with Drupal so much as some other options.
It does require that your sites are on the same base domain, and that they are on the same protocol (can't mix https://example.com with http://foo.example.com).
See Bakery documentation for further info.