Jump to content
[MUST READ] Forum Rules ×

Anyx

Senior Members
  • Posts

    1058
  • Joined

  • Last visited

Everything posted by Anyx

  1. You gotta be kidding me.. @armslegs_76 William, your website is probably https://listofspeakers.byethost10.com and not byethost.com
  2. UPDATE: Download Gradient Blue updated theme: https://vpthemes.win/files/file/1-gradient-blue/
  3. @Administrator has this been forwarded? Do we have a new update?
  4. The answer to your question is yes; It might take up to 48 hours for your website to start working.
  5. I found what the error is. On your vPanel code, you have tried to customize the "Powered By cPanel" image, however there is a script that prevents that from happening and logs you out if you try to load this code. Kindly remove it from your vPanel so that it will work.
  6. Hi there, Your code is not working. Could you please try to fix it or give us the code to debug it ourselves and see what we can do? Thanks for creating it and I hope that it can still be used
  7. In this article I will provide you with a simple solution to all the API bot blocking problems like ?i=1, using iFrames from a website hosted on Byet/MyOwnFreeHost servers. Most of you already know it. This solution also optimizes the speed of your website. Enable CloudFlare I will show you two ways to do that. Enabling CloudFlare from vPanel (easiest way) This process is the easiest one and the only one that will work with MyOwnFreeHost Reseller accounts. Go to your vPanel Search for CloudFlare Select your domain and click on "Alter CloudFlare" Press "Click to Enable" Congrats! It is done! When the DNS propagate, the ?i=1 will have disappeared alongside with the limitations, and your website will load faster. Enabling CloudFlare by changing Nameservers Warning: NEVER try this on MOFH reseller account! It will break your customers' websites. Sign Up for Cloudflare When the process is finished, you will be asked to add your website. Enter your domain. Wait for it to scan and configure DNS records Alter the nameservers of your domain from your registrar with the CloudFlare ones. Congratulations! It is done!
  8. I am not sure, but if you use Cloudflare there will be no problem.
  9. Do you still have these free hosting templates? Could you sent one to me?

  10. You will have to contact Support, although I am not sure they will tell you
  11. Unfortunately, you would have to upgrade to Premium Hosting to upload files larger than 50MB. You cannot do that here, except if you split the files to part1, part2, ... and each of them is 10MB.
  12. Explain further please. The Free Hosting plan has Unlimited Storage but has other limits like INODES. And also, please do not make three posts about the EXACT same thing. Your other posts will probably get deleted; consider that a warning. Posting multiple times will not help you get a faster reply.
  13. Have you contacted Support at https://support.ifastnet.com ? They will be more able to help you, with the detaiils you have given us I cannot think of anything, maybe there is a bug in your code or a function that cannot be used in Free Hosting?
  14. iFastNet is an exception They have also somehow managed to have some functions that are completely disabled in PHP 7.0 enabled!
  15. Oh That's why.. Anyway, I cannot eddit due to issues, so Inspired by @PlanetCloudand @Angel
  16. Hi Everyone, Due to some problem we had, we could not do any of the updates we mentioned. We still have to update and include @einet's theme, include the new Material Design based one inspired by @PlanetCloud and Tristian, and make a release, however all Developers are busy. We apologize for any inconvienience caused and we will try to make the updates soon. Thank you for waiting and not quitting on the project.
  17. Hi, 

    you haven't been active Recently on Discord. Did anything happen?

    1. AA22Dev

      AA22Dev

      No, nothing happened. I will be back soon on discord. :) 

  18. I am actually new on coding and searched but found nothing about this. Let's say I have a JavaScript file to be executed in my HTML/PHP file. How can I disable its execution using code (even with JavaScript itself) without removing it from the code? I know it is useless for most cases; I just want to know if I can do that.
  19. Could you provide us with more details? What do you mean by "Change FTP to vPanel"? If you would like to know how to customize vPanel, check this out:
  20. If you have a .ml or .ga domain, you can see this: https://techub.tk/free-ssl-free-hosting-ifreenet/ Although it says iFreeNet, it works with InfinityFree, but this is only if you have a free or premium domain like .ml or .com. It will now towrk for epizy.com or rf.gd
  21. You will need to create your own client area, yes. However, you can also go with @mike's suggestion, which is get a script which allows you to choose subdomain on Signup. There is currently one, Project Logged v2.0, but it will take time to develop. In the meanwhile, if you would like to offer to your users the options to use their own form you should use the following code in singup.php : <!doctype html> <html> <head> <link href='https://fonts.googleapis.com/css?family=Droid+Sans:regular,bold' rel='stylesheet' type='text/css'> <style type="text/css"> body{ color: #555555; font: .75em "Droid Sans", "Trebuchet MS", Arial, Helvetica; padding: 0 0 20px; line-height:1.8em; } a{ color:#abb23b; text-decoration:none;} a:hover{ color:#eb7604; text-decoration:none;} #div1 { width:560px; height:22px; background-color:#FFEEDD; border: 1px solid #FF8855; padding: 5px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; } #div1 a:visited { color:#555555; } #dev1 a:hover { color: #555555; } #div1 a:active { color: #555555; } </style> <link href="form.css" rel="stylesheet" /> <script type="text/javascript"> function validate_required(field,alerttxt) { with (field) { if (value==null||value=="") { alert(alerttxt);return false; } else { return true; } } } function validate_email(field,alerttxt) { with (field) { apos=value.indexOf("@"); dotpos=value.lastIndexOf("."); if (apos<1||dotpos-apos<2) {alert(alerttxt);return false;} else { return true; } } } function validate_password(field,alerttxt) { with (field) { if (value.length<6||value.length>8) {alert(alerttxt);return false;} else { return true; } } } function validate_domain1(field,alerttxt) { with (field) { if (value.match("byethost4.com")) {alert(alerttxt);return false;} else { return true; } } } function validate_domain2(field,alerttxt) { with (field) { if (value.match("https://")) {alert(alerttxt);return false;} else { return true; } } } function validate_domain3(field,alerttxt) { with (field) { if (value.match("www.")) {alert(alerttxt);return false;} else { return true; } } } function validate_form(thisform) { with (thisform) { if (validate_required(domain_name,"Your domain must be filled out!")==false) {domain_name.focus();return false;} if (validate_domain1(domain_name,"The domain you entered can't be used!")==false) {domain_name.focus();return false;} if (validate_domain2(domain_name,"Please do not include https:// in your domain name!")==false) {domain_name.focus();return false;} if (validate_domain3(domain_name,"Please do not include WWW. in your domain name!")==false) {domain_name.focus();return false;} if (validate_required(password,"Desired password must be filled out!")==false) {password.focus();return false;} if (validate_password(password,"Desired password must be 6-8 characters in length!")==false) {password.focus();return false;} if (validate_required(email,"Email must be filled out!")==false) {email.focus();return false;} if (validate_email(email,"Not a valid e-mail address!")==false) {email.focus();return false;} if (validate_required(number,"Security code must be filled out!")==false) {number.focus();return false;} } } </script> <script type="text/javascript"> function ismaxlength(obj){ var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : "" if (obj.getAttribute && obj.value.length>mlength) obj.value=obj.value.substring(0,mlength) } </script> </head> <body> <div class="post"> <script language=javascript> function apply() { document.frm.sub.disabled=true; if(document.frm.chk.checked==true) { document.frm.sub.disabled=false; } if(document.frm.chk.checked==false) { document.frm.sub.enabled=false; } } </script> <br> <form id="frm" name="frm" method="post" action="https://order.byethost4.com/register2.php" onSubmit="return validate_form(this)"> <h4 class="form-title">Your Domain Name</h4> &nbsp;<input name="domain_name" value="" type="text" size="30" /><br /> <span class="form-desc">Enter your own domain name here. This domain name <u>must</u> already be registered! Accounts with a non-existing domain name will get deleted!<br> Set the nameservers in the control panel of your domain registrar to:<ul><li><b>ns1.byet.org</b></li><li><b>ns2.byet.org</b></li></ul> </span><br /> <h4 class="form-title">Your Password</h4> &nbsp;<input name="password" type="password" size="30" maxlength="8" onkeyup="return ismaxlength(this)" /><br /> <span class="form-desc">Password must be 6-8 characters in length.</span><br /><br /> <h4 class="form-title">Your E-mail Address</h4> &nbsp;<input type="text" name="email" size="30" value="" /><br /> <span class="form-desc">No Microsoft, Live or Yahoo addresses allowed.</span><br /><br /> <h4 class="form-title">Your Site Category</h4> &nbsp;<select size="1" name="website_category"> <option selected="selected">Personal</option> <option>Business</option> <option>Hobby</option> <option>Forum</option> <option>Mature</option> <option>Dating</option> <option>Software / Download</option> </select><br /><br /> <h4 class="form-title">Your Site Language</h4> &nbsp;<select size="1" name="website_language"> <option value="Arabic">Arabic</option> <option value="Bulgarian">Bulgarian</option> <option value="Catalan">Catalan</option> <option value="Chinese Simplified">Chinese (Simplified)</option> <option value="Chinese Traditional">Chinese (Traditional)</option> <option value="Croation">Croatian</option> <option value="Czech">Czech</option> <option value="Danish">Danish</option> <option value="Dutch">Dutch</option> <option selected="selected" value="English">English</option> <option value="Filipino">Filipino</option> <option value="Finnish">Finnish</option> <option value="French">French</option> <option value="German">German</option> <option value="Greek">Greek</option> <option value="Hebrew">Hebrew</option> <option value="Hindi">Hindi</option> <option value="Hungarian">Hungarian</option> <option value="Indonesian">Indonesian</option> <option value="Italian">Italian</option> <option value="Japanese">Japanese</option> <option value="Korean">Korean</option> <option value="Latavian">Latvian</option> <option value="Lithuanian">Lithuanian</option> <option value="Norwegian">Norwegian</option> <option value="Persian">Persian</option> <option value="Polish">Polish</option> <option value="Portuguese">Portuguese</option> <option value="Romanian">Romanian</option> <option value="Russian">Russian</option> <option value="Serbian">Serbian</option> <option value="Slovak">Slovak</option> <option value="Slovenian">Slovenian</option> <option value="Spanish">Spanish</option> <option value="Swedish">Swedish</option> <option value="Thai">Thai</option> <option value="Turkish">Turkish</option> <option value="Ukranian">Ukrainian</option> <option value="Vietnamese">Vietnamese</option> </select><br /><br /> <input type=hidden name=id value="d3630410c51e60941a9001a46871070e"> <h4 class="form-title">Security Code</h4> &nbsp;<input type="text" name="number" size="17" /> <img id="sec" alt="" src="https://order.byethost4.com/image.php?id=d3630410c51e60941a9001a46871070e" /> <input type="hidden" name="resellerid" id="resellerid" value="www.byethost4.com" /><br><br> <center> <input class="f-checkbox" type="checkbox" name="chk" id="chk" onClick="apply()"><label for="chk">I have read and agree to the <a href="https://www.byethost4.com/terms-of-service" target="_blank">Terms of Service</a></label><br> <input type="submit" value="Create my account now..." name="sub" class="btn" disabled></center> </form> <div class="f-important-2"> <h4>Important Information!</h4> Please check your SPAM inbox as the email confirmations may end up there! Yahoo, Hotmail and Live.com users may not receive the email confirmation, please use another provider such as Gmail or your ISP email address. </div> </div> </body> </html>
  22. Hi, sorry but could you try to make your post in English? I tried to translate it with Google Translate but unforunately I make no sense. What I figured is: I think that paid SSL cerrtificates would work with this, however I cannot besure and it seems like you want a free one. If you could make the post in English, I will understand much better your issue. Thanks again. And also, did you say that you use both iFreeNet and InfinityFree, only infinityfree or what exactly?
  23. And iFreeNet's forum is located at https://www.ifreenet.tk/forum/
  24. What the heck? How can you be on iFreeNet and have epizy.com? The answer to your question is that you cannot use SSL on these subdomains, you will have to use a custom free domain like .ml or .ga By the way, if you are confused, this is the InfinityFree Forum: https://forum.infinityfree.net
  25. Hello everyone, @einethas developed a lite version of the Dark cPanel theme and we are going to include it soon. Current Goals: Include @einet's theme Make a Github release
×
×
  • Create New...