Search K
Appearance
Appearance
Released: 2003-11-14
Allow specific Resellers overselling ability, instead of globally all or none.
SKINS:
- admin/create_customized_reseller.html
- admin/modify_reseller.html
- show_reseller_package.html
- added a checkbox for oversell. requires tokens as well: OVERSELLCHECKEDDA doesn't allow password protected directories to be setup. This should allow both to modify .htaccess files without issue.
ability to resend the welcome email. This won't be able to provide the password because passwords are one-way encrypted.
SKINS:
reseller/show_user.html
<table class=list cellpadding=3 cellspacing=1>
<form action="/CMD_RESEND_EMAIL" method="POST">
<input type=hidden name=user value=|user|>
<tr><td class=listtitle>Resend Welcome E-Mail</td></tr>
<tr><td class=list align=center>Send To: <input type=text name=email value="|USER_EMAIL|"> <input type=submit value="Send"></td></tr>
</form>
</table>This will enable php to be turned on and off for a user. Note this will require changes to the templates. The virtual_host*.conf files in the templates folder will be automatically overwritten. If you've created virtual_host*.conf files in the custom directory, you'll need to adjust them to have the correct tokens (info later).
virtual_host*.conf templates:
add:
php_flag engine |PHP|
into the <Directory |DOCROOT|> setting.
SKINS:
- user/add_domain.html
- admin/create_customized_reseller.html
- reseller/create_customized_user.html
- user/modify_domain.html
- admin/modify_reseller.html
- reseller/modify_user.html
- admin/show_reseller_package.html
- reseller/show_user_package.html
- added a checkbox for php. Most require tokens as well |PHPCHECKED|.Alternative to phpMyAdmin
user/db/db.html
add the following form:
<form name=backupform action="/CMD_DB" enctype="multipart/form-data" method="POST">
<input type=hidden name=action value="restore">
<input type=hidden name=domain value="|DOMAIN|">
<table class=list cellpadding=3 cellspacing=1>
<tr><td class=listtitle align=center colspan=2>Upload a Database Backup (.gz)</td></tr>
<tr><td class=list align=right style="width: 50%">Select Database</td><td class=list>|DATABASESELECT|</td></tr>
<tr><td class=list align=center colspan=2><input type=file name="file1" size=40></td></tr>
<tr><td class=listtitle align=right colspan=2><input type=submit value="Upload"></td></tr>
</table>
</form>going to add to virtualhost templates:
php_admin_value safe_mode 1
php_admin_value open_basedir /home/user/:/tmp:/var/www/:/usr/lib/php/
Both of the "List/Modify Users" and "show all users" now have the ip and domains for those users in the table (no more going through 3 screens to find the info)
With this release, 1.201000 will now become 1.20.1, as it should be. This will take a few releases to accomplish.
Added database level privileges: grant, references, create_tmp_tables, lock_tables
user/db/user_priv.html
<tr><td class=list align=right>Grant</td><td class=list>|GRANT|</td></tr>
<tr><td class=list align=right>Reference</td><td class=list>|REFERENCE|</td></tr>
<tr><td class=list align=right>Create tmp tables</td><td class=list>|CREATE_TMP_TABLE|</td></tr>
<tr><td class=list align=right>Lock Tables</td><td class=list>|LOCK_TABLE|</td></tr>Fix will change example.com to the hostname.
The restarting process didn't have the require privileges (root), so the programs were unable to be controlled from /CMD_SHOW_SERVICES. Also made a few changes to the named boot script.
error when trying to remove dns records.
Note CMD_DNS_CONTROL still works.
Databases arn't being deleted with the User Acccount.