Search results

  1. AngusThermopyle

    Joomla Problem

    Place this script ( say, foo.php ) in public_html and then run it from the web: DEFINE ('DB_HOST', 'localhost' ); DEFINE ('DB_USER', 'snipes_admin'); DEFINE ('DB_PASSWORD' , "secretWordHere" ); DEFINE ('DB_NAME', "snipes_jdb" ); $link = mysqli_connect( DB_HOST , DB_USER ...
  2. AngusThermopyle

    mod_rewrite help

    RewriteEngine On RewriteCond %{REQUEST_URI} ^/user/.*$ RewriteRule ^user/(.*)$ sig.php?user=$1 [L] will work
  3. AngusThermopyle

    Trying to view my Profile

    Minor glitch. When I click on my name or on the "My Profile" link at the top of the page, the system looks up the user "c-solomon" http://x10hosting.com/forums/members/c-solomon.html and says he is not registered. The link should be http://x10hosting.com/forums/members/c.solomon.html...
  4. AngusThermopyle

    Why is server changing my HTML code?

    It doesn't seem to do this on your main domain. May I ask why you are using .shtml ? You know that the server does parse your page when you use that extension? Not saying that is the source of the code.
  5. AngusThermopyle

    what is this error means? "Internal Server Error"

    If it happens "sometimes", it most probably not your .htaccess that is at fault. If you have a syntax or other error in that file, it shows up on ever page access. Most likely a server problem.
  6. AngusThermopyle

    www.x10hosting.com not accepting requests from my ip

    The forums were not coming up for me either. And then they did. Went back and forth, up/down. From two different locations (IPs). I think it has something to do with them working on the Account Panel etc.
  7. AngusThermopyle

    htmlspecialchars and htmlentities not working.

    Remember, you are viewing it in a browser htmlentities( '>') outputs > > , sent to the browser , will display as > Or maybe I misunderstood your post.
  8. AngusThermopyle

    Probleme with Mysql

    The dbUsernames are of the form: cPanelUsername_username ie, $user should be something like 'alex122_foo' Try using cPanel --> MYSQL Databases tool to see what username is connected to the database you are using.
  9. AngusThermopyle

    Not able to login to CPanel

    I am on Chopin and so is a friend. Neither of us have had any problems. From what I gather, those having major problems seem to be those who were on Starka and are now on Chopin. And the link to the status page does not work because it is misspelled.
  10. AngusThermopyle

    python hosting

    First, add AddHandler cgi-script .py to .htaccess Second, shebang line that works for me #! /usr/local/bin/python Third, permissions set to 0755 Fourth, must send out proper HTTP headers before content print("Content-type: text/html\n") Fifth, Python 2.6 installed, not...
  11. AngusThermopyle

    Girl gets 2 years for cooking cat in oven

    Killing and eating to sustain life is Nature's way. Killing for pleasure is Man's way. If she were hungry and killed the cat to eat it, there would have been more sympathy than outrage. But she enjoyed the death.
  12. AngusThermopyle

    Girl gets 2 years for cooking cat in oven

    If it is a Granny Smith, yes. Gravensteins, on the other hand, are rather insensitive.
  13. AngusThermopyle

    uploading MYBB

    If you want it to be in your "top directory" , ie yoursite.com/index.php instead of yoursite.com/forum/index.php, you should put it in /home/YOURcPANELUSERNAME/public_html
  14. AngusThermopyle

    Time for a Real Debate

    The US economy was built on paper. Credit card debt fueled consumer spending. Mortage debt fueled the housing bubble. Government debt fueled foreign wars and wasteful domestic programs and tax cuts. Corporate debt fueled ill advised takeovers and excessive CEO compensation and dividends...
  15. AngusThermopyle

    Account registered, but not created?

    Everybody gets the same PHP version on the free package. It is 5.2.12 with some security settings enabled and some features disabled. There is no way to upgrade it on the free package.
  16. AngusThermopyle

    suspension email?

    I don't think they need a "reminder" email. If your site is not important enough to log in once a month (or get a trusted friend to do it if you are on vacation, etc), maybe you should get suspended. But I think, once you get suspended, an email should go out, so you can fix it. You can also...
  17. AngusThermopyle

    What is?

    "localhost"
  18. AngusThermopyle

    Can't login!

    Highly unlikely. Join Date 01-25-2010
  19. AngusThermopyle

    Gannman's Domain - open for review

    Those are clearly biased stats. They say so at the bottom:
  20. AngusThermopyle

    Indexing

    If all you want is a list like Index of /mydirectory Parent Director fileOne.html fileTwo.php file3.css index.html a .htaccess in that directory containing Options All +Indexes DirectoryIndex index.foo should work (the index entry is to let you have an index.html in the directory)
Top