Search results

  1. descalzo

    Susspension reports

    If you are suspended for inactivity and unsuspend yourself without logging on to the Forums, the system does not wait 14 days (soon to be 31 days) to suspend you again. It looks and sees that you have not been logged into the Forums for X days and immediately puts you in the "to be...
  2. descalzo

    Make this type of 404 page

    So it seems to be working now. As pointed out above, you might want to use: htmlentities( $_SERVER[ 'REQUEST_URI' ] ) to 'sanitize' the uri requested.
  3. descalzo

    H1N1 (Swine Flu) Vaccine

    So, Tamiflu was about 8% of their sales and accounted for a 5% increase in revenue. Not a bad short term boost. Epidemiologists are caught in a bind. On one hand, they can become the "boy who cried wolf". Eventually nobody will believe the warnings. On the other hand, there is a real...
  4. descalzo

    Connect to MySQL

    Remote access to mySQL is disabled in both directions. You cannot access your x10 database directly from your computer or another server. You cannot access a mySQL on another server from x10.
  5. descalzo

    How can I stop bots from following certain links on my site

    From my understanding, there is no way to do it in a robots.txt file for the kind of link you are talking about. As noted above, bots do not have to honor your robots.txt file anyway. That is why using a form with POST is a 'better' method than links for actions where you do not want...
  6. descalzo

    Broken MySQL databases

    1. Which server? 2. Were they innoDB tables? 3. If you look at them in phpMyAdmin does it show them as 'views' rather than tables? 4. When did the problem start?
  7. descalzo

    CSS Templates

    Have you tried this, and did that change anything? Are you sure that the templates have the proper permissions?
  8. descalzo

    Make this type of 404 page

    Add the line (depending on where you store the error page and how you name it) and you will not be redirected. Also, what do you mean by "File 1) In the root" ? Do you mean in /home/USERNAME ? You should probably change the line there too.
  9. descalzo

    Make this type of 404 page

    Point taken. Just as quick code examples for form input etc, I often do not include all the sanity checks. I hope the people reading the examples understand the problems with XSS, SQL injection, etc. I do not use the above code for my error pages. I wanted to use $_SERVER[ 'REQUEST_URI' ]...
  10. descalzo

    Make this type of 404 page

    Are you using a CMS? Could you post your .htaccess file? (Just noticed that it redirects you from your .co.cc domain to your exofire.net )
  11. descalzo

    PHP find Directory

    PHP 5 has classes to iterate over directories. RecursiveDirectoryIterator class You wrap that in a RecursiveIteratorIterator You can create a new class to extend FilterIterator The above links have some examples. How to get it to do what you want... <?php...
  12. descalzo

    Make this type of 404 page

    It probably does not 'redirect' you. Look at the URL in the address window next time your site throws a 404. 1. Create a file, call it 404.php (can name it anything, just easier to keep track of if you name it for the error). Should be a php file. 2. Make the page pretty, etc. You can...
  13. descalzo

    Missing account

    His forum join date is Oct 18.
  14. descalzo

    suspension

    Fine. Go sign up for a paid service. You are getting something free and you are complaining about the minimal requirements x10 asks of you?
  15. descalzo

    Ajax Login ajaxForm() issues

    In jQuery, $(document).ready() is called after the page is loaded, so that is not an issue.
  16. descalzo

    remove suspension

    The policy is "No".
  17. descalzo

    MySQL Functions

    Quick thoughts... Assuming date is a legit date, also not in future.... For this month (assuming you mean calendar month and not 30 days ago...) SELECT * FROM tablename WHERE MONTH(NOW()) = MONTH( date ) AND YEAR( NOW() ) = YEAR( date ) For this week (assuming...
  18. descalzo

    Can't access cPanel

    On the right side of the Account Panel (you sign on using your Forum username & password) you can change your cPanel password. On the left side is your cPanel username and other info.
  19. descalzo

    Password

    http://x10hosting.com/login.php Logon there using Forum username and pw. Proceed to Account Panel cPanel username on left. Change your password on the right.
  20. descalzo

    I need some php scripting help for a web form

    One thing you can try is make sure the variables contain what you want. Try testing: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Thank You - Your Message Has Been Sent</title> <meta http-equiv="Content-Type" content="text/html...
Top