Search results

  1. descalzo

    Error establishing a database connection

    .htaccess looks like the normal Joomla stuff. Clicking on indexbak.php now produces an error because it tries to include index.php...which has been renamed. That might have been the out of memory problem...it includes itself, which include itself, etc until it runs out of memory. does the...
  2. descalzo

    Error establishing a database connection

    Where does index.php come from? What does it do? What does your .htaccess look like?
  3. descalzo

    Error establishing a database connection

    You reinstalled the blog before you got the site running after your first mistake?
  4. descalzo

    Error establishing a database connection

    1. Remove all the files and folders the blog installed. That should leave you with just your original site. 2. Rename .htaccess to .htaccessBAK ... installation software often adds lines to .htaccess. If you know what you are doing, you can edit it.
  5. descalzo

    Email from website not received

    Try: <?php $to = 'arealaddress@hotmail.com'; $subject = 'the subject'; $message = 'hello and how are you today on one very long and involve line that will now repeat itself hello and how are you today on one very long and involve line that will now repeat itself hello and...
  6. descalzo

    No confirmation emails on how to log into cpanel

    Well, you could just edit the parts where the image file names are miscapitalized. I count only 5 or so images, but background images might be missing too. But being consistent is the best way to avoid mistakes. You can just open cPanel->FileManager and go to the images directory. Click...
  7. descalzo

    No confirmation emails on how to log into cpanel

    http://cooperneedlecrafts.x10hosting.com/Images_large/ shows you your image file names. You can click on each and see them. Go to cPanel, then FileManager, then select Index.html and click on Edit. Control-F will bring up a seach box. Look for 'img'. It will help you locate all...
  8. descalzo

    High cpu usages

    Without seeing the code in question, anything we say is just guesswork.
  9. descalzo

    php and quotation marks

    You can use: $sanitized_input = htmlspecialchars( $user_input ) ; OR $sanitized_input = htmlentities( $user_input ) ; to start with. The second function is stronger and is the one that you should use.
  10. descalzo

    No confirmation emails on how to log into cpanel

    1. If you practiced on a laptop, one "gotcha" is that Windows is case insensitive. ie Index.html is treated the same as index.html. The majority of web hosts are on *nix machines, which are case sensative. Not only file names, but folders. Also, having spaces in file or folder names is a bad...
  11. descalzo

    Cron Question

    The -q switch makes it run silently.
  12. descalzo

    Cron Question

    I think the way to run your program is use wget: */5*** wget -q http://endzoneffl.x10hosting.com/phpffl/program_files/autorun/myffl/schedules.php?Autorun_Pin=XXXXX Your arguements are in the form of a query string, so the cron job has to call the webpage, not just invoke a script...
  13. descalzo

    error pages

    You mean .htaccess? Post yours and I can tell you any problems I see. If you are using a CMS, it usually adds stuff to .htaccess, so I cannot tell you what it "should" look like.
  14. descalzo

    Problem with ASP.NET 2.0 - Error 500

    Mono 'looks' for the .dll by appending .so and other tricks. Mono page on this Error Message Apparently the installed version of Mono either does not include the gdiplus library, or it has been installed in a non-standard location. I could not find any file with 'gdiplus' (except a .h...
  15. descalzo

    gdiplus.dll

    Can you explain this suggestion?
  16. descalzo

    Problem about some site's

    What do you mean by "I'm going to..." ? Are you clicking on a link somewhere? Are you entering the url into the address bar? As been mentioned, you might have some infection in your browser.
  17. descalzo

    Unable to open CPanel

    Go to the Account Panel http://x10hosting.com/login.php Log in with Forum username and password. Click continue to Account Panel Left side will show your cPanel username. It may be different from your forum username. You can set a new cPanel password there, just in case you did...
  18. descalzo

    need shell access

    You can change the permissions on your files 1. via FTP 2. via FileManager in cPanel You do not need shell access to do it. Now, your script may try do do something that the admins have disabled. That is a different story.
  19. descalzo

    Python

    python.py, chmod to 0755 #!/usr/bin/python print "Content-type: text/plain\n\n" print( "HI" ) .htaccess , add AddHandler cgi-script .py
  20. descalzo

    Control Panel

    Login to the Account Panel http://x10hosting.com/login.php Use your forum username and password. Once in, go to the Account Panel You can set/reset your cPanel password there.
Top