|
mojoProtector has several Executable files (those that ends with .cgi) for different purposes.
| Executable files |
Purposes |
| admin.cgi |
For admin only where you will be able manage your members and make changes to the program |
| cron.cgi |
This is used for cron tabs. It is neccessary that you run this once in a while (at least one a day) to do some cleaning jobs such as expire members, query iBill for member unsubscriptions, rebuild databases to current, and backup data... |
| install.cgi |
Should run this one once and delete it from server |
| log.cgi |
Used to log member accesses. |
| mojoProtector.cgi |
Member area. Redirect your member to go here unless you want them to go toa specific page (check below) |
| upgrade.cgi |
For upgrade version 1.XX and lower to 2.0. Delete it from your server once you done with upgrading |
mojoProtector
displays dynamic CGI generated Web pages, as opposed
to static HTML pages, using templates. In the templates, you can use predefined mojoTags to display real run-time values.
For example, If you use this code
<a href="[LOGIN_URL]">Members login</a>
on a template, at run time, it will be replaced with the real values, something like
<a href="http://www.your-domain.com/cgi-bin/members/mojoProtector?action=login">Members login</a>
where http://www.your-domain.com/cgi-bin/members/mojoProtector is the actual URL of mojoProtector.cgi on your server.
However, this documentation will help you to link to specific page of mojoProtector from outsite pages, not only HTML template pages. For complete info on using HTML template pages, please go to the template section.
For simplicity, your-url is the actual URL to your mojoProtector directory.
| Page name |
URLS |
| Login page |
your-url/mojoProtector.cgi?action=login |
| Logout page |
your-url/mojoProtector.cgi?action=logout |
| Profile page |
your-url/mojoProtector.cgi?action=profile |
| Update page |
your-url/mojoProtector.cgi?action=update |
| Register page |
your-url/mojoProtector.cgi?action=register |
| Panel Page |
your-url/mojoProtector.cgi?action=panel |
| Delete account page |
your-url/mojoProtector.cgi?action=delete |
| Extend account page |
your-url/mojoProtector.cgi?action=extend
Note: Please use this page only if you have non-recurring memberships. Recurring membership will automatically recharges your members each month. |
|