Search results

  1. Skizzerz

    Send content-length header

    I think your cache disabling bit is working for me because I cannot get any cache hits on that file (they always miss). That said, check the Transfer-Encoding header whenever you see Content-Length missing -- if Transfer-Encoding is set to chunked, then Content-Length cannot be specified (it is...
  2. Skizzerz

    Website disabled because of excessive resource usage

    The one thing that may be catching some of you off-guard is that in addition to checking CPU, RAM, etc. we also check number of concurrent processes. If you have a large number of concurrent processes on average within a short period of time we'll redirect your site to the high resource usage...
  3. Skizzerz

    Website disabled because of excessive resource usage

    Hello everyone, I'm looking into this at the moment and will get back to you with some more details in a bit :)
  4. Skizzerz

    Hello To The Forum, Staff, and Members

    Thanks for the praise, and welcome to x10Hosting! We hope you enjoy your stay! :)
  5. Skizzerz

    Resolved Access to donovan.x10.mx ?

    Just to clarify, are you signing in with either the username donova58 or your email address (l...n@gmail.com)? If not, try one of those. If so, let us know so we can look into this further :)
  6. Skizzerz

    Your account is currently awaiting confirmation. Confirmation was sent to...

    I see that the aforementioned account (rapid.x10.mx) is already fully set up with the email address confirmed, yet also states that it has a pending signup (with no actual signup info). I've alerted management to your issue so they can clear up the inconsistency on your account so you can access...
  7. Skizzerz

    Friendica and the PHP command line binary

    Hello, When running the CLI version of PHP (which is what cron jobs use), register_argv_argc is unconditionally enabled regardless of the php.ini setting -- check for the $argc and $argv variables to see what I mean. The install script for Friendica looks like it has some sort of other check...
  8. Skizzerz

    Base64

    Yep, the BLOB and (VAR)BINARY types just store the raw binary data of the image (with a bit of overhead for things such as bytelength and any indexes you may have on that column). @leafypiggy hit the nail on the head for how we detect usage for things in databases -- we don't do automated scans...
  9. Skizzerz

    You don't have permission to access /somefile.php on this server

    Hello! Unfortunately, even staff can't really assist you much without knowing which file(s) in particular are causing this error. If you could post a full path or link to an example file, that would be greatly appreciated (even if we can't access that page due to needing a login, we could check...
  10. Skizzerz

    Database structure with shorthand links

    the mysql UUID() function provides a 36-character uuid string that you can use with insert statements to generate a unique identifier. The column you are storing the value in should either be a char(36), binary(36), varchar(36), or varbinary(36) -- fixed length is preferred over variable length...
  11. Skizzerz

    Y'all remember me?

    ohai
  12. Skizzerz

    Upgraded to prime but not upgraded

    Do you have confirmation with your payment processor that you have successfully paid for the prime upgrade? If so, can you please post details on the transaction in a private message to me? If you do not see a charge for the prime upgrade, try doing it again, keeping note of any error messages...
  13. Skizzerz

    Account suspension reason unclear

    That is irrelevant for a public forum, appeals are in private for a reason. Thread closed.
  14. Skizzerz

    PHP not working

    I would personally rewrite everything with the .php file extension personally, you can use .htaccess mod_rewrite to make use of "pretty" urls if that was the goal of having .html in the first place (e.g. you could have example.com/pagename actually hit example.com/pagename.php...
  15. Skizzerz

    New x10hosting's "Status" page

    Cossacks, Ciroc, Artic, Renat, Cirrus, Rain. I think that's it
  16. Skizzerz

    PHP not working

    You do NOT need any custom .htaccess configurations in order to make PHP work on your website. Adding such configurations is very brittle as we change our setup on Free Hosting rather frequently, and such configurations will simply break your website whenever we do changes. Here is what I...
  17. Skizzerz

    $_SERVER['DOCUMENT_ROOT'] give wrong path

    In the meantime while we are working on a fix, you can work around the issue by using either relative paths or making use of __DIR__, e.g. require_once __DIR__ . '/conf/php_source.php'; -- __DIR__ expands to the full directory of the current PHP file.
  18. Skizzerz

    Enable Tapatalk support

    Our XenForo theme already has a responsive design, is there some issue with the mobile website that you believe this app will resolve, or some other reason for requesting it?
  19. Skizzerz

    PHP optional query building

    @descalzo's code does not check for SQL injection, which if your form is accessible from the web is an absolute necessity. Since you are using PDO, read up on prepared statements and placeholders.
Top