Search results

  1. M

    suspension bug and email

    No need for apologies. It's OK to open a thread as well, though it may not lead anywhere. I hope this issue gets licked soon.
  2. M

    Resource Limit Hit!

    @svcadm: Your site currently displays as normal, though whether this is because it never had a stuck suspension or someone fixed it, I can't tell. For the Drupal issue, your best bet is to open a support ticket to ensure an admin sees it (though be advised it may take some time, as X10 has many...
  3. M

    suspension bug and email

    I believe at this point HRU suspensions no longer require/allow manual unsuspension; instead, they only auto-unsuspend. The bug seems to be that suspension itself is lifted, but the redirect isn't removed, so any unsuspension mechanism wouldn't help (I've tried suspending & unsuspending a stuck...
  4. M

    Cannot print variable name in PHP file

    Note that if you're using double-quotes, you don't need to use the concatenation operator when combining data from a variable: $myData="<?php \$value=$value; ?>"; // $value = 15 Alternatively, if you use single quotes, you don't need to escape the dollar sign: $myData='<?php $value=' . (int)...
  5. M

    Resource Limit Hit!

    The admins have been trying to track down the cause of this stuck suspension bug. Please log in to the account portal and open a ticket so an admin can look into it (and manually remove the suspension).
  6. M

    Resource Limit stuck on!

    The X10 wiki has an article on how to open a ticket, if you're not sure where to start.
  7. M

    Resource Limit stuck on!

    It happens on occasion. Which site(s) (you have multiple) are affected?
  8. M

    Undefined variable: adminEmail in line 50 activation email not getting sent!?

    The Scripts, 3rd Party Apps, and Programming forum is more appropriate for coding issues. The Free Hosting forum is more for administrative issues. Please use [php], [html] or [code] tags (as appropriate) to separate and format code. If PHP says the variable is undefined, it's undefined...
  9. M

    Database problem

    There's currently a proposal to add PBKDF2 to PHP's hash extension, which is built as part of the core. It won't be available until PHP 5.5 at the earliest (barring custom PHP builds), but if you write your own PBKDF2 function, give it the same API as in the proposal so yours can be replaced...
  10. M

    web design and web development

    @devilxsc: don't multi-post, and keep your posts to the appropriate forum.
  11. M

    Wordpress Help

    @devilxsc: Please don't threadjack. Start a new thread for a new issue, but only after reading the documentation and searching the forums and web at large.
  12. M

    phpinfo no disponible

    (Nota: traducido con Google Translate.) Pruebe ini_get <dl> <dt>tamaño máximo de subida</dt> <dd><?php echo ini_get('upload_max_filesize') ?></dd> <dt>tamaño máximo de post</dt> <dd><?php echo ini_get('post_max_size') ?></dd> <dt>límite de memoria</dt> <dd><?php echo...
  13. M

    Database problem

    The Scripts, 3rd Party Apps, and Programming forum is more appropriate for coding issues. The Free Hosting forum is more for administrative issues. Please use [php], [html] or [code] tags (as appropriate) to separate and format code. The posted code is vulnerable to SQL injection, which is a...
  14. M

    Php script for Listing files based on last modified time

    Please use , [html] or [code] tags (as appropriate) to separate and format code. glob won't list dotfiles by default, no matter the platform. You have to force it to include the by using a pattern that explicitly includes them (e.g. glob('.*') or glob('{.,}*', GLOB_BRACE)). This will include...
  15. M

    SMTP Error (-1): Failed to connect to server and error with mail() function....

    Whenever you see a server issue, check the status site first. In this case, you'll see this is a known issue.
  16. M

    phpmyadmin connection

    If you're trying to connect to the MySQL server on X10, there's no way you have access to the root MySQL account. Use your own database account. A failed connection should produce an error; what is it? On X10, phpMyAdmin is already installed in cPanel. If you're trying to install your own...
  17. M

    Resource Limit Hit!

    Apology very much accepted. Anger can be a great motivator, but it's easy for it to get misdirected. The next time you respond in anger, make sure you're targeting what you're actually angry at (not enough people do this); it might save you a few nasty arguments. It looks like the HRU...
  18. M

    Resource Limit Hit!

    To be fair, you're giving nothing, so why would you expect anything in return? In fact, you've been given free hosting and that help (how else was your problem fixed?). Most of the help for the free sites is provided by volunteers like myself, and when we come across attitudes such as yours, we...
  19. M

    Resource Limit Hit!

    That's a little better, in that there's a little more information. Sadly, that's nowhere near enough to say why the site was suspended, nor how to prevent suspensions in the future. It's difficult if not impossible to answer a technical question that isn't fully specified or reproducible. You...
  20. M

    Simple Slider show using Javascript - JS Slide show script

    Please use [php], [html] or tags (as appropriate) to separate and format code. The code uses far too many global variables. One simple fix is to wrap it in an anonymous, self-invoking function. Another is to use JS's namespace pattern ([2]): make the variables and functions properties of an...
Top