Jump to content

wolstech

Chief Risk Officer
  • Posts

    17,707
  • Joined

  • Last visited

  • Days Won

    660

Everything posted by wolstech

  1. The start of line and end of line are not required. Also, it's easier to check for the presence of bad characters as opposed to making sure they're all good. <?php $nick = "TEST33%"; if (!empty($nick) && preg_match("/([^a-zA-Z\d_-])/", $nick)) { echo "Invalid characters"; } else { echo " It's good. "; } /* Produces output: Invalid Characters */ Change the first line to a valid name and it will produce "It's good" instead.
  2. If you want to only allow a single - or _ symbol as the input, use an IF statement instead. There is no "range" for symbols in a regexp, and you'll probably have to escape a bunch of them with a \ since some are modifiers in regexps. Regexps really are most useful when doing complex searches/pattern matching or when you need to accept large ranges like a-z or 0-9, as opposed to a few allowed characters. An IF like this would be easier if a single - or _ should be the only thing allowed: <?php if ($input = "_" || $input = "-") { //Do something } else { //Error message } ?>
  3. It means your regular expression is incorrect. Can you post that line of code so I can see the expression in question?
  4. Do you have another account?
  5. Escalating so they can be fixed for you. These database are invisible: realtori_1, realtori_SQL, realtori_wordpress
  6. Headers must be sent before any output (text, HTML, even an error) is sent. Once you send some type of content, you cannot use the header function. Whatever is on line 52 of fnc.php sent some form of output. I'd expect to find either an echo statement, part of the page body or an include that points such, or a broken line of code that's producing an error. You need to make sure your header function is called before that line of code runs, otherwise normal HTTP headers are automatically sent along with the output.
  7. That's probably right. I have 3 sites in my account and use around 120. Webspace goes a lot further than you think. That meter also doesn't update immediately, so if you change something, it can take an hour or so to show your new usage.
  8. Please check your email.
  9. Go into cPanel, go to Parked Domains, and add rulepm.com as a parked domain. Then wait 24-48 hours for it to take effect. That should make both rulepm.com and rulepm.heliohost.org show the same website so you'll be able to use either domain.
  10. Split and escalated from http://www.helionet.org/index/topic/23650-mysql-database/
  11. Split post from other user...http://www.helionet.org/index/topic/23677-invisible-mysql-database/
  12. Please clear your cache.
  13. We dont block any email providers that I'm aware of, though some providers are known to have blocked us in the past. Also, their server might require authentication to use (most do), though a timeout isn't usually an indication of bad credentials. Yandex could have blocked us since our servers are often abused for spam and phishing. Even though we remove the abuse quickly, it can take time to be unblocked. I'll escalate it to verify we aren't blocking anything.
  14. It may already be taken. Try another one. Also, make sure you use only lowercase letters and numbers in it. No symbols, no spaces, no capital letters. What is the username you're trying to use?
  15. Your very first if statement has no closing } : if (isset($_POST['btn'])) { You need to add one to close that if statement.
  16. wolstech

    Mysql's Space

    You can have as many files/folders/symlinks/other file system objects as you want, so long as they stay within the 500MB size limit.
  17. wolstech

    Mysql's Space

    No limits on traffic or bandwidth.
  18. The code is broken. That error usually means you're missing a closing symbol somewhere. likely a missing } or ) symbol. Make sure you have a matching ) or } for every ( or { in your code. A missing semicolon on the last line can also cause it.
  19. wolstech

    Mysql's Space

    It's part of your 500MB of account space.
  20. wolstech

    Mysql's Space

    Yes, but it will eventually fill up. If you do run a forum or the like, the email limit of 50/day is more likely to get you suspended.
  21. I'll assume this is still the issue: The database vipansh_wordpress is likely invisible. Escalating.
  22. wolstech

    Mysql's Space

    We limit by user account, not each database. The total size limit for all MySQL databases in an account is 250MB I think.
  23. I need the database names, not the server information. In phpmyadmin, they're in the left side or you can click databases up top to see the list (assuming the databases are there). Your database names are realtori_1, realtori_SQL, realtori_wordpress as you listed above. Are all of these showing up in phpmyadmin? I need to know which ones are not in phpmyadmin so I can have them fixed.
  24. Be sure to use a different domain and username. Also, the signups reset at midnight US Pacific and fill quickly, so you'll probably need to adjust for timezone differences and try to sign up shortly after they reset.
  25. Glad to see you figured it out Let us know if you need anything else.
×
×
  • Create New...