Jump to content
[MUST READ] Forum Rules ×

Anyx

Senior Members
  • Posts

    1058
  • Joined

  • Last visited

Everything posted by Anyx

  1. You will have to contact Support, although I am not sure they will tell you
  2. 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.
  3. 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.
  4. 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?
  5. iFastNet is an exception They have also somehow managed to have some functions that are completely disabled in PHP 7.0 enabled!
  6. Oh That's why.. Anyway, I cannot eddit due to issues, so Inspired by @PlanetCloudand @Angel
  7. 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.
  8. 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. :) 

  9. 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.
  10. 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:
  11. 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
  12. 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>
  13. 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?
  14. And iFreeNet's forum is located at https://www.ifreenet.tk/forum/
  15. 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
  16. 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
  17. Thanks Admin, but there is no moderator! Burke has to login from 2016...
  18. The Admin is active!!

    1. AA22Dev

      AA22Dev

      57 minutes before he was active

  19. Hey Admin and thanks for being active!

    Just a question if you don't mind, have you been informed about the forums problems by iFastNet?

  20. Hi there, try searching for any code in adverts section on control panel. Maybe one of these codes is causing this. Have you contacted support?
  21. Visit techub.tk. it sill have a tutorial.
  22. Actually not, in the terms of service it is mentioned clearly that streaming is not allowed.
  23. You mean 12 mb? The file size limit here is 10 mb. he answer is, you can't. You can upgrade to premium hosting, where this limit will not exist.
  24. You are welcome and welcome to our community! We hope your experience with Byet/iFastNet is good and that you have a great time hosting your website here
×
×
  • Create New...