Jump to content

Byron

Moderators
  • Posts

    9,153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. This: <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> goes inside the head section of your webpage, doesn't matter what folder. The icon does matter what folder and it needs to be the root.
  2. The icon should still be in your root directory and you can add that piece of code to the page your showing everybody.
  3. It should go in your root directory and then add this to your Home page: <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> That should take care of everybody.
  4. You could probably do something like this in your root directory htaccess file: RewriteEngine On RewriteRule ^(.*)$ /drupal/ [R=301,L] But what you got to realize is htaccess is inherited to each directory that is under the .htaccess file, so all requests from ANY directory end up going to your drupal directory unless you add an htaccess file in each directory with this: RewriteEngine Off Which will keep you from using mod_rewrite in that directory. So your better off just moving your files inside the root directory, unless somebody else can show you a better way.
  5. Remove this line from your .htaccess file and see if your blog still works. php_flag register_globals off EDIT: btw, register_globals is off by default anyway so your blog should work fine after removing that line.
  6. How hard would it be to re-instll it in another folder just to get the .htaccess file from it? Let me check cause I'm not sure? I'm not sure what host name your looking for or how your wanting to use it. The HTTP_HOST would be green-day.org.ua for you. But I still would recommend you re-install the blog inside another folder and get the htaccess file from it and add it to your root directory.
  7. If you deleted it through ftp then it's gone. I'm assuming your blog is inside your root diectory and not a folder? What blog are you using?
  8. I didn't realize you had anything else using your htacess file before I told you to delete it. Do you still have the htaccess file inside your trash bin?
  9. Don't know. I guess you need to ask djbob about that.
  10. This is a heliohost sub-domain: your-site.heliohost.org This is a parked domain: your-site.co.cc djbob is not a moderator, he is the owner/adminstrator. Did you read my last post about re-installing WP in your Parked Domain? EDIT: I just finished installing WP choosing my Parked Domain as my domain and the links seem to be following my Parked Domain. REMOVED:http://bybyron.uni.cc/blog/ So that's what you need to do.
  11. I just went through the steps to install WP from my cPanel and it gave me the option to nstall it in my parked domain instead of my heliohost domain. So that's probably what you'll need to do is re-install WP in your parked domain. Look for this at Fantastico: Installation location Install on domain and then dropdown menu.
  12. I'm not familiar with 'permalinks' so it might be better to wait for djbob's reply before you do what I'm about to suggest. I'm guessing you used your heliohost sub-domain to go to cpanel to install WP? Maybe if you went to your cpanel via your parked domain and re-installed WP it would change the 'permalinks' to the parked domain?
  13. You might want to check the links on your pages and make sure your using relative urls and not absolute urls. Otherwise you shouldn't get redirected to the heliohost sub-domain.
  14. Cron stands for 'chronograph'. Normally you set up cron jobs from your cPanel Cron Manager. Cron jobs execute scripts automatically at a preset time that you choose. They can run as often as every minute up to only once a year, but Heliohost only allows two crons, each to run only once a day unless you get permission otherwise. http://en.wikipedia.org/wiki/Cron
  15. You'll need to wait at least 24 hours maybe 48.
  16. Yea find is nice but "Search & Replace" is better. Click Replace on this tool. Made by a friend of mine (not me) http://byrondallas.heliohost.org/Sonny/xlectric-testbed.html You'll need to paste something inside the textarea like code or text to use the option.
  17. Moving to "Customer Service" and would you please post your domain name.
  18. If this was the page you saw: http://heliohost.org/suspended.page/ it could be any of those reasons. You'll need to post your domain name to find out from the administrator what the reason was.
  19. You can have any page your home page but if you want your root directory to default to it when you post just your domain name ie: http://heliohost.org then you'll either need to use a index.html, index.shtml, index.php etc. or change it inside your .htaccess file with this: DirectoryIndex FR2home.html btw, you really don't want to have any spaces in a url like this FR2 home.html. Better if it was like this: FR2_home.html or FR2-home.html
  20. Try something like this: <form action="mailto:myname@yahoo.com" method="post"> <input type="hidden" name="subject" value="Emailer"> Your Name:<br> <input type="text" size="20" name="Visitor Name"><br><br> Your Comment:<br> <textarea name="Visitor Comment" rows="4" cols="20"></textarea><br><br> <input type="submit" value="Email This Form"> </form> or better yet, use a php mail form so bots can't see your email address. Upload this to your site and name it with a .php extension and change where it says: your_email@yahoo.com to your email address. http://byrondallas.heliohost.org/temp/email_form.txt
  21. Byron

    Vacation to Europe

    Never been myself but would love to go. Hope you have a great time!
  22. And it should say this when your done! http://validator.w3.org/check?uri=http%3A%...ine&group=0
  23. Great! I wasn't aware you could do this. How do you enter all four nameservers when the dns provider only shows 2 text fields for the nameservers? ie: ns1: ns2:
  24. The doctype tells the browser how to render the page. For it to really work you need to have a valid markup. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
×
×
  • Create New...