Search results

  1. descalzo

    High system resource usage check.

    Define "a lot of ajax". If you use ajax to call the server every couple of seconds and you have 5 users, that adds up to a lot of calls. Ram can be a problem. If your loop eats up enough memory but does not exceed the script limit (and crashes), it will run into problems since the system...
  2. descalzo

    Creative aspects of web design

    For color, you could Google/Wiki "Color Theory".
  3. descalzo

    High system resource usage check.

    How often does the script run? Cron job? Called by Ajax? Connect to database? Loops are often the culprit. If something uses up memory inside a loop, you can easily get a large footprint (note: if you run out of memory, that often saves you from getting suspended since your script crashes...
  4. descalzo

    JS Show a pic when site is loading.

    The script he got from the web should work. The init() function assigned to the onload event handler hides the "loading" gif once it is no longer needed. And if there is no JS (not available or turned off), the gif stays there.
  5. descalzo

    Starka

    There seems to be a problem with co.cc domains and their DNS. co.cc is not connected to x10hosting.
  6. descalzo

    co.cc down?

    artworking.co.cc not working. collage.co.cc working. Are the two hosted on co.cc as framesets with the content on x10hosting? In that case, the problem is with co.cc which is not connected with x10hosting.
  7. descalzo

    JS Show a pic when site is loading.

    If a solution only works in Firefox, what good is it?
  8. descalzo

    Hosting account not letting me login

    The system does not show a hosting account linked to the Forum username cpatton1 What is your cPanel username, so we can check to see if the account still exists? What happens if you try to go to your site (got url?) ? If you have not logged into the Forums (not Account Panel or cPanel)...
  9. descalzo

    fix this error

    That cPanel username is linked to the Forum username shop123 1. You should not have multiple Forum accounts. 2. If you accidentally created a second Forum account, please use the Forum account that is linked to the cPanel account. It will keep you from being suspended for inactivity and it...
  10. descalzo

    I don't know why i am suspended

    You should always keep a local (ie on your own computer) copy of your files. You never know what might happen with your account (suspension, etc) or with the server. You can use FileManager to zip your public_html and then you can download it. If you have a lot of files, you can do it...
  11. descalzo

    SQL injection?

    What magic quotes does, from the PHP manual:
  12. descalzo

    PHP and leading zeroes mindtrick

    Not really. In most programming languages x = 011 gives x the value of 9. while y = 0x11 gives y the value of 17 Leading 0x signifies hexidecimal, or base 16. You use 0-9 and a-f (or A-F) as numerals. Leading 0 with no x signifies octal, or base 8. You use 0-7 as numerals. Since...
  13. descalzo

    Joomla?

    Then why offer Softaculous at all? If the new server boru has a stripped down version of Softaculous, maybe the Admins should explain why.
  14. descalzo

    Hello World - Perl => Download?

    Please check the permissions on the script.
  15. descalzo

    SQL injection?

    The front end (ie the page with the fields) tells you nothing about the security of the script. As marshian points out, never trust input submitted over the web. Check it for unsafe characters. Check it for length. Check it for acceptable values.
  16. descalzo

    Forum account logging

    Join Date 01-09-2010 mikesaccount1: Did you sign up for a hosting account using this forum name, or maybe another?
  17. descalzo

    Hello World - Perl => Download?

    Remove the entire FilesMatch construct. If you still have problems, post the entire contents of .htaccess
  18. descalzo

    Hello World - Perl => Download?

    You do not have to set the handler.
  19. descalzo

    500 Internal Server Error

    Without mod_perl sending headers, you have to do it yourself. Edit: Two types of error log. PHP files will create/append to an error_log file in their directory when they have an error in the script. Perl doesn't. Not sure about Python. Apache logs other types of error. Not sure where...
  20. descalzo

    Iframe src= URL + text field

    <html> <head> <title>iFrame Test</title> <style type="text/css"> #youriframe { height: 400px ; width: 500px; } </style> <script type="text/javascript"> function go_get(){ var base_url = 'http://forums.x10hosting.com/members/' ; var usr_name =...
Top