Search results

  1. M

    Database my-sql

    Various searches will tell you: you can't connect to the free MySQL server from a remote host. Furthermore, chat scripts (and shoutboxes) aren't allowed by the ToS due to the system resources they consume.
  2. M

    [Nulled Scripts] My suspention ticket D89F3C145B91

    Re: My suspention ticket D89F3C145B91 In particular, re-read the Terms of Service and "What is the zero-tolerance policy?" FAQ and "What is a nulled script?" (off-site). You can contest the suspension if there is no nulled script (e.g. you purchased a license for the script, or the script is...
  3. M

    Domain cannot be accessed from Burundi

    He can try a route tracing tool (tracert on Windows boxes, traceroute on Unixen) in an attempt to see where packets are being blocked. Not all hosts respond to traceroute's techniques; he might get false positives. This information will be of limited utility in actually fixing the problem, which...
  4. M

    .htaccess + php.ini

    PHP options cannot be customized on the free hosts, as a search would have revealed. .htaccess can be edited as any file, though not all Apache options can be set there.
  5. M

    Quick Python Help!

    Don't worry about being ignorant, just staying ignorant. As long as ignorance is merely a temporary state and not a central component of identity, you're fine in the computing world. Don't be afraid to ask what a spline is when you don't understand some jargon. What follows is a lot to go...
  6. M

    even offline

    How, exactly, are there two? You can't have two files with the same name in a directory, so either 1) their names are different (case counts; "Index.php" is not the same as "index.php") 2) they are in different directories, or 3) one is on your development computer, the other is on the public...
  7. M

    Quick Python Help!

    It really depends on what you're using to prepare the query. As it says in the sig, questions aren't rhetorical. Most drivers don't support parameterizing arbitrary portions of queries. Usually you can only parameterize atomic values. No lists, no names, no keywords, which means you'll need...
  8. M

    FTP Error 421?

    error 421 is usually temporary, caused by too many users logged in. You can check in cPanel for open FTP sessions and close them, in case a previous session wasn't closed. Other than that, you'll probably need to wait. Try connecting at a different time of day. cuteFTP doesn't have a free...
  9. M

    even offline

    index.php is the script producing the output; if there's a problem, index.php is involved. Look closely at the source and you'll find a couple of <?php echo ; ?> statements in the document head. Please post the contents of index.php, making sure you enclose it in [PHP] tags.
  10. M

    Quick Python Help!

    Note the exact quotation marks: The single quotes around 'Science' indicate a string, rather than a name. The backticks in the query might also be throwing things off. What is the exact value stored in choice? What method are you calling to prepare the query?
  11. M

    php include - above root directory

    You can use cPanel file manager. Many FTP clients also support changing permissions. All directories in the path to the script need, at minimum, read & execute permissions for the user (mode 0500); the most permissive mode you should use is 0755. Scripts need at least read permisson (mode 0400)...
  12. M

    PHP Contact Form

    The line is missing string concatenation operators or has extra double-quotes (depending on how you want to view it). $headers .= "Reply-To: <" . $email. ">\r\n"; // OR $headers .= "Reply-To: <$email>\r\n";
  13. M

    Writing to MySQL Database please help

    When asking for help, post the behavior you expect and the behavior you get, which includes error messages. When posting any sort of code, use [CODE], [PHP] or [HTML] tags (as appropriate) to delineate the code. Your code is vulnerable to SQL injection. See the next point. The mysql driver is...
  14. M

    htaccess URL rewriting

    If you're referring to the 500 response, there might be something else misconfigured in your .htaccess. Post the rest of it.
  15. M

    Cgi/perl

    Almost nothing should be world-writable (that is, have permissions mode 777).
  16. M

    php include - above root directory

    ~/public_html/mysite.com would be the doc root for an addon domain. ~/public_html is the doc root for your primary domain. Anything under ~/public_html is accessible through the primary domain, unless you take steps to secure it.
  17. M

    JS Show a pic when site is loading.

    There's something that's redirecting your page to other advertising pages.
  18. M

    Creative aspects of web design

    Much of peoples' response to and interpretation of color is cultural. The article touches on this point, but then quickly drops it when discusses red's "meaning". The psychology and neurology of visual perception are quite active areas of research, but I don't have many references analyzing...
  19. M

    PollDaddy Plugin for WordPress 2.9.1 Unable to Connect w/Host Issue

    Only select ports are allowed through the firewall (an oft-mentioned fact). Read the FAQ for "Can I get a port opened for my hosting account?" Since you're asking about a host rather than a port, the admins might feel differently about adding exceptions. Then again, they might not.
  20. M

    Getting started with Php

    That's the problem right there. Only files with a .php extension are processed by PHP. It's an unnecessary drain on server resources to have all html files processed by PHP. If you're worried about ".php" extensions in URLs, turn on MultiViews with Options +MultiViews in your root .htaccess...
Top