Jump to content
[MUST READ] Forum Rules ×

Razr7315

Senior Members
  • Posts

    26
  • Joined

  • Last visited

Everything posted by Razr7315

  1. I don’t plan to remove those! Thanks for the help!
  2. Do you have a link or somewhere I could find this?
  3. Just have one question, is there a way to hide certain tiles like can I hide the Cloudflare and SEO Tools?
  4. I was wondering if there was a way to update the looks of the vPanel and change the tiles that show up when you're logged in. Thanks!
  5. Does not seem to be working, the URL I'm trying to add is https://opshost.gq/src/callback/Callback.php
  6. I've found where you set the callback URL but get an error when I try to save it - Error: Forbidden You don't have permission to access /panel/index2.php on this server. Any way to fix this?
  7. I'm installing MOFHY-Lite and it says to set the callback URL in the MOFH reseller panel but I am unsure how to do that, any help would be appreciated!
  8. So I was wondering how to setup Cloudflare on a site that is hosted with my hosting service?
  9. Yes, I see that now too but, we need to enter https:// is their anyway to force traffic to https?
  10. One more thing, how long does it usually take for SSL certificate to come for cPanel?
  11. My current signup.php code: <!DOCTYPE html> <html lang="en"> <head> <title>Web Hosting | Contacts</title> <meta charset="utf-8"> <link rel="stylesheet" href="css/reset.css" type="text/css" media="all"> <link rel="stylesheet" href="css/layout.css" type="text/css" media="all"> <link rel="stylesheet" href="css/style.css" type="text/css" media="all"> <script src="js/jquery-1.6.js" ></script> <script src="js/cufon-yui.js"></script> <script src="js/cufon-replace.js"></script> <script src="js/Shanti_400.font.js"></script> <script src="js/Didact_Gothic_400.font.js"></script> <!--[if lt IE 9]> <script src="js/html5.js"></script> <style type="text/css">.button1{behavior:url("js/PIE.htc");}</style> <![endif]--> </head> <? $yourdomain = $_SERVER['HTTP_HOST']; $yourdomain = preg_replace('/^www\./' , '' , $yourdomain); ?> <body id="page1"> <div class="body1"> <div class="body2"> <div class="main"> <!-- header --> <header> <div class="wrapper"> <h3><strong><? echo "$yourdomain" ;?></strong> Web Hosting Service</h3> </div> <div class="wrapper"> <h1><a href="index.php" id="logo">Web Hosting</a></h1> <nav> <ul id="menu"> <li class="first"><a href="index.php">Home</a></li> <li id="menu_active"><a href="signup.php">Sign up</a></li> <li><a href="hostingnews.php">Hosting News</a></li> <li><a href="about.php">About</a></li> <li ><a href="contacts.php">Contacts</a></li> </ul> </nav> </div> <span id="slogan1">Simple<span>Clever</span><span>Effective</span></span> </header> <!-- / header --> </div> </div> </div> <!-- content --> <div class="body3"> <div class="main"> <section id="content2"> <div class="line2 wrapper"> <article class="col2 pad_right1"> <h3>Sign Up For Free Hosting</h3> <div class="clr"></div> <p class="post-data">Fill out the form below and your free hosting account will be created.</p> <td style="text-align: left;" colspan="21"> <font size="-1"><span style="font-family: Helvetica,Arial,sans-serif;"> <form method=post action="https://ifastnet.com/register2.php"> <table> <tr><th style="text-align: left;">Username<td><input type=text name=username size=20 value="<?PHP if (isset($_GET['username'])) { echo $_GET['username']; }?>"> <tr><th>&nbsp;<td>&nbsp; <tr><th style="text-align: left;">Password<td><input type=password name=password size=20> <tr><th>&nbsp;<td>&nbsp; <tr><th style="text-align: left;">Email Address<td><input type=text name=email size=20 value="<?PHP if (isset($_GET['email'])) { echo $_GET['email']; }?>"> <tr><th style="text-align: left;">Site Category<td><select size="1" name="website_category"> <option>Choose from Below</option> <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><th style="text-align: left;"><td> </td> <tr><th style="text-align: left;">Site Language<td> <select size="1" name="website_language"> <option>Choose from Below</option> <option>English</option> <option>Non-English</option> </select> </td> <tr><th>&nbsp;<td>&nbsp; <?PHP $id = md5(rand(6000,PHP_INT_MAX)); ?> <input type=hidden name=id value="<?PHP echo $id; ?>"> <tr><th style="text-align: left;">Security Code<td><img width="250px" height="90px" src="https://order.<? echo "$yourdomain" ;?>/image.php?id=<?PHP echo $id; ?>"> <tr><th>&nbsp;<td>&nbsp; <tr><th style="text-align: left;">Enter Security Code<td><input type=text name=number size=20> <tr><th>&nbsp;<td>&nbsp; <tr><th colspan=2><input type=submit value="Register" name=submit> </table> </form> </span> <br style="font-family: Helvetica,Arial,sans-serif;"> </font> <br style="font-family: Helvetica,Arial,sans-serif;"> </span></font> By signing up for our free hosting, you accept and agree to our <a href="https://ifastnet.com/portal/terms.php">Terms of Service</a> </td> </article> <article class="col1"> <h3></h3> <div class="wrapper"> <p></p> </div> <h3 class="pad_top1">Instant activation</h3> <p class="miscellaneous">Free hosting accounts are activated instantly, no need to wait for manual approval, you can start building your pages immediately!</p> <p> You can find our Automatic Script Installer in the Vistapanel. We provide free FTP, PHP 5.3, MySQL and our very popular feature: The Automatic Script Installer (Like Fantastico) You can install many popular scripts such as PHPbb2 and PHPbb3, Wordpress, Zen-Cart, osCommerce, MyBB, UseBB, MyLittle Forum, 4images, Coppermine, SMF, Joomla, e107, XOOPS, PHP Wind, CuteNews, Mambo, WikiWig and many more!</p> </article> </div> </section> <!-- / content --> </div> </div> <div class="main"> <!-- / footer --> <footer>Copyright &copy; <a href="#"><? echo "$yourdomain" ;?></a> All Rights Reserved</footer> <!-- / footer --> </div> <script>Cufon.now();</script> </body> </html> Is there anything wrong with this?
  12. @Pro Hostinga I am still seeing this on the register page:
  13. Where should I put this in at? What line? My full code of signup.php: <!DOCTYPE html> <html lang="en"> <head> <title>Web Hosting | Contacts</title> <meta charset="utf-8"> <link rel="stylesheet" href="css/reset.css" type="text/css" media="all"> <link rel="stylesheet" href="css/layout.css" type="text/css" media="all"> <link rel="stylesheet" href="css/style.css" type="text/css" media="all"> <script src="js/jquery-1.6.js" ></script> <script src="js/cufon-yui.js"></script> <script src="js/cufon-replace.js"></script> <script src="js/Shanti_400.font.js"></script> <script src="js/Didact_Gothic_400.font.js"></script> <!--[if lt IE 9]> <script src="js/html5.js"></script> <style type="text/css">.button1{behavior:url("js/PIE.htc");}</style> <![endif]--> </head> <? $yourdomain = $_SERVER['HTTP_HOST']; $yourdomain = preg_replace('/^www\./' , '' , $yourdomain); ?> <body id="page1"> <div class="body1"> <div class="body2"> <div class="main"> <!-- header --> <header> <div class="wrapper"> <h3><strong><? echo "$yourdomain" ;?></strong> Web Hosting Service</h3> </div> <div class="wrapper"> <h1><a href="index.php" id="logo">Web Hosting</a></h1> <nav> <ul id="menu"> <li class="first"><a href="index.php">Home</a></li> <li id="menu_active"><a href="signup.php">Sign up</a></li> <li><a href="hostingnews.php">Hosting News</a></li> <li><a href="about.php">About</a></li> <li ><a href="contacts.php">Contacts</a></li> </ul> </nav> </div> <span id="slogan1">Simple<span>Clever</span><span>Effective</span></span> </header> <!-- / header --> </div> </div> </div> <!-- content --> <div class="body3"> <div class="main"> <section id="content2"> <div class="line2 wrapper"> <article class="col2 pad_right1"> <h3>Sign Up For Free Hosting</h3> <div class="clr"></div> <p class="post-data">Fill out the form below and your free hosting account will be created.</p> <td style="text-align: left;" colspan="21"> <font size="-1"><span style="font-family: Helvetica,Arial,sans-serif;"> <form method=post action="https://order.<? echo "$yourdomain" ;?>/register.php"> <table> <tr><th style="text-align: left;">Username<td><input type=text name=username size=20 value="<?PHP if (isset($_GET['username'])) { echo $_GET['username']; }?>"> <tr><th>&nbsp;<td>&nbsp; <tr><th style="text-align: left;">Password<td><input type=password name=password size=20> <tr><th>&nbsp;<td>&nbsp; <tr><th style="text-align: left;">Email Address<td><input type=text name=email size=20 value="<?PHP if (isset($_GET['email'])) { echo $_GET['email']; }?>"> <tr><th style="text-align: left;">Site Category<td><select size="1" name="website_category"> <option>Choose from Below</option> <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><th style="text-align: left;"><td> </td> <tr><th style="text-align: left;">Site Language<td> <select size="1" name="website_language"> <option>Choose from Below</option> <option>English</option> <option>Non-English</option> </select> </td> <tr><th>&nbsp;<td>&nbsp; <?PHP $id = md5(rand(6000,PHP_INT_MAX)); ?> <input type=hidden name=id value="<?PHP echo $id; ?>"> <tr><th style="text-align: left;">Security Code<td><img width="250px" height="90px" src="https://order.<? echo "$yourdomain" ;?>/image.php?id=<?PHP echo $id; ?>"> <tr><th>&nbsp;<td>&nbsp; <tr><th style="text-align: left;">Enter Security Code<td><input type=text name=number size=20> <tr><th>&nbsp;<td>&nbsp; <tr><th colspan=2><input type=submit value="Register" name=submit> </table> </form> </span> <br style="font-family: Helvetica,Arial,sans-serif;"> </font> <br style="font-family: Helvetica,Arial,sans-serif;"> </span></font> By signing up for our free hosting, you accept and agree to our <a href="https://ifastnet.com/portal/terms.php">Terms of Service</a> </td> </article> <article class="col1"> <h3></h3> <div class="wrapper"> <p></p> </div> <h3 class="pad_top1">Instant activation</h3> <p class="miscellaneous">Free hosting accounts are activated instantly, no need to wait for manual approval, you can start building your pages immediately!</p> <p> You can find our Automatic Script Installer in the Vistapanel. We provide free FTP, PHP 5.3, MySQL and our very popular feature: The Automatic Script Installer (Like Fantastico) You can install many popular scripts such as PHPbb2 and PHPbb3, Wordpress, Zen-Cart, osCommerce, MyBB, UseBB, MyLittle Forum, 4images, Coppermine, SMF, Joomla, e107, XOOPS, PHP Wind, CuteNews, Mambo, WikiWig and many more!</p> </article> </div> </section> <!-- / content --> </div> </div> <div class="main"> <!-- / footer --> <footer>Copyright &copy; <a href="#"><? echo "$yourdomain" ;?></a> All Rights Reserved</footer> <!-- / footer --> </div> <script>Cufon.now();</script> </body> </html>
  14. Okay. Thank you. I have not changed locations of any files, the files are all in the same state as when my MOFH account was activated. I will try that. I most likely will next week.
  15. There was a topic by @Admin about getting SSL for cPanel but that was from 2017 and still I do not believe it was rolled out.
  16. So I am able to get SSL via Let's Encrypt for the homepage of my web host but not for cPanel and it does not work right on the register page, can anyone help me to do get it on these other pages. I had it on other pages but it came up with an error saying my browser is not sending the right referrer information or something like that. It also said that the site was not fully secure.
  17. How would I login to FileManager and cPanel on a domain that is on MyOwnFreeHost nameservers as a reseller domain?
  18. Also wondering how to manage DNS over the domain and also all site files in general
  19. I am using MyOwnFreeHost for this and was wondering how to update the index page of the reseller site.
×
×
  • Create New...