Jump to content
[MUST READ] Forum Rules ×

Anyone Know How To Make Wordpress Free Reseller Hosting


jamesblack

Recommended Posts

Hello. i am beginner and already sign up with Myownfreehost. I already install my reseller free hosting website with wordpress , because i slightly understand wordpress better than any CMS, but i confuse to how to make register page, so when the client of free hosting register in my website , they redirect directly to client area and their data show up in my reseller dashboard panel. Are there any script or anything i must add either in my wordpress dashboard or reseller panel dashboard?

I am very appreciate the help.  Thank you.

Link to comment
Share on other sites

2 hours ago, jamesblack said:

I already install my reseller free hosting website with wordpress

While you can use WordPress as a CMS, it's not recommended. It's best to just have a plain HTML/CSS website. MyOwnFreeHost offers some HTML templates at https://myownfreehost.net/templates.php (although they definitely aren't the greatest, and aren't mobile responsive.)

2 hours ago, jamesblack said:

but i confuse to how to make register page,

If you just want to use the default registration system provided by IFastNet, you must have a page named register.php with this form:

<?PHP
// This is used to geneate a unique number for catchpa 
$id = md5(rand(6000,PHP_INT_MAX));
?>
<?
// This is used to constuct the cPanel login ur>ol
include('geturl.php');
?>
<form id="updatedetails" name="updatedetails" class="signup" method=post action="https://order.<?echo $yourdomain;?>/register2.php">
  <table>
    <div class="form-group">
      <tr><th>Username<td><input class="form-control" type=text name=username size=30 value=""  maxlength="16" onkeyup="return ismaxlength(this)"><td>
    </div>

      <div class="form-group">
        <tr><th>Password<td><input class="form-control" type=password name=password size=30 maxlength="8" onkeyup="return ismaxlength(this)"><td>
      </div>

        <div class="form-group">
          <tr><th>Email Address<td><input class="form-control" type=text name=email size=30 value=""></td></tr>
        </div>

        <div class="form-group">
          <tr><th>Site Category<td><select  class="form-control" size="1" name="website_category">
            <option>Personal</option>
            <option>Business</option>
            <option>Hobby</option>
            <option>Forum</option>
            <option>Adult</option>
            <option>Dating</option>
            <option>Software / Download</option>
            </select>
            </td></tr>
        </div>

        <div class="form-group">
          <tr><th>Site Language<td>
            <select  class="form-control" size="1" name="website_language">
              <option>English</option>
              <option>Non-English</option>
            </select>
            </td></tr>
        </div>
        <input type=hidden name=id value="<?PHP echo $id; ?>">
        <tr><th>Security Code<td><div ><img width="250px" height="90px" src="https://order.<? echo "$yourdomain" ;?>/image.php?id=<?PHP echo $id; ?>"></div><td>
          <tr><th>Enter Security Code<td><input class="form-control" type=text name=number size=30><td>
            <tr><th colspan=2><button type="submit" class="btn btn-primary">Submit</button><td></tr>
        </table>
        </form>

If you want to actually have a client area, than you can use MOPHY-lite, an open source client area by Shen Wei: https://github.com/NXTS-Developers/MOFHY-Lite/

Install the script on a subdomain (such as clientarea.yourdomain.com) or a directory (cyourdomain.com/clientarea). Then, on your main website, have a button that links to the client area page.

2 hours ago, jamesblack said:

their data show up in my reseller dashboard panel

It will show up after they sign up.

2 hours ago, jamesblack said:

Are there any script or anything i must add either in my wordpress dashboard or reseller panel dashboard?

If you want a client area you can use MOPHY-Lite, as I mentioned above:  https://github.com/NXTS-Developers/MOFHY-Lite/ . This isn't a "WordPress script"  though.

Link to comment
Share on other sites

6 hours ago, jamesblack said:

Hello. i am beginner and already sign up with Myownfreehost. I already install my reseller free hosting website with wordpress , because i slightly understand wordpress better than any CMS, but i confuse to how to make register page, so when the client of free hosting register in my website , they redirect directly to client area and their data show up in my reseller dashboard panel. Are there any script or anything i must add either in my wordpress dashboard or reseller panel dashboard?

I am very appreciate the help.  Thank you.

Well if you are familiar with WordPress you can make landing pages with WordPress and clientarea can be made using MOFHY-Lite. 

Link to comment
Share on other sites

16 hours ago, User51 said:

While you can use WordPress as a CMS, it's not recommended. It's best to just have a plain HTML/CSS website. MyOwnFreeHost offers some HTML templates at https://myownfreehost.net/templates.php (although they definitely aren't the greatest, and aren't mobile responsive.)

If you just want to use the default registration system provided by IFastNet, you must have a page named register.php with this form:


<?PHP
// This is used to geneate a unique number for catchpa 
$id = md5(rand(6000,PHP_INT_MAX));
?>
<?
// This is used to constuct the cPanel login ur>ol
include('geturl.php');
?>
<form id="updatedetails" name="updatedetails" class="signup" method=post action="https://order.<?echo $yourdomain;?>/register2.php">
  <table>
    <div class="form-group">
      <tr><th>Username<td><input class="form-control" type=text name=username size=30 value=""  maxlength="16" onkeyup="return ismaxlength(this)"><td>
    </div>

      <div class="form-group">
        <tr><th>Password<td><input class="form-control" type=password name=password size=30 maxlength="8" onkeyup="return ismaxlength(this)"><td>
      </div>

        <div class="form-group">
          <tr><th>Email Address<td><input class="form-control" type=text name=email size=30 value=""></td></tr>
        </div>

        <div class="form-group">
          <tr><th>Site Category<td><select  class="form-control" size="1" name="website_category">
            <option>Personal</option>
            <option>Business</option>
            <option>Hobby</option>
            <option>Forum</option>
            <option>Adult</option>
            <option>Dating</option>
            <option>Software / Download</option>
            </select>
            </td></tr>
        </div>

        <div class="form-group">
          <tr><th>Site Language<td>
            <select  class="form-control" size="1" name="website_language">
              <option>English</option>
              <option>Non-English</option>
            </select>
            </td></tr>
        </div>
        <input type=hidden name=id value="<?PHP echo $id; ?>">
        <tr><th>Security Code<td><div ><img width="250px" height="90px" src="https://order.<? echo "$yourdomain" ;?>/image.php?id=<?PHP echo $id; ?>"></div><td>
          <tr><th>Enter Security Code<td><input class="form-control" type=text name=number size=30><td>
            <tr><th colspan=2><button type="submit" class="btn btn-primary">Submit</button><td></tr>
        </table>
        </form>

If you want to actually have a client area, than you can use MOPHY-lite, an open source client area by Shen Wei: https://github.com/NXTS-Developers/MOFHY-Lite/

Install the script on a subdomain (such as clientarea.yourdomain.com) or a directory (cyourdomain.com/clientarea). Then, on your main website, have a button that links to the client area page.

It will show up after they sign up.

If you want a client area you can use MOPHY-Lite, as I mentioned above:  https://github.com/NXTS-Developers/MOFHY-Lite/ . This isn't a "WordPress script"  though.

Thank you so much. Really appreciated it.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...