Jump to content

TCH-Andy

Members
  • Posts

    4,700
  • Joined

  • Last visited

Everything posted by TCH-Andy

  1. Welcome back
  2. tastewar, This is probably related to the issue on server 16 - Server 16 Mailing List Issue. Please follow that thread for updates - If you still have the same issue as that gets solved, then please open a support ticket. Andy
  3. Yes Just open a ticket in the help desk and we would sort it out for you. Andy
  4. Hi, I would have a look at the hotlinking protection in the .htaccess file. If you just rename the .htaccess file to something else, then test it - you will be able to quickly determine if it is something there. Then you just have the challenge of working out which line Andy
  5. Hi Dan First of all..... Welcome to the Family Part of the problem may be a peculiar effect in cPanel. To check what the permissions are, look in the left hand window, and after the filename (on the very right hand side) should be the permissions. If you go to "change permissions" and then look at the boxes where you change it, it does not always show as default the current permissions. You should be able to change the permissions via File manager unless, as you say, the file was created by php, and you are not the owner. You can also change permissions with some FTP programs, which can be helpful if you want to do some recursive changes. If you are still having problems, submit a help ticket, and we'll have a look at it for you. Andy
  6. Hi, Yes, that should be fine. The only reason it is in the script that way is so that you don't have to type it in every time. If you type in the address as you suggest though it should work perfectly. Andy
  7. Hi, There are 2 forums you can easily add from the cPanel. Invision - like this one, and PHPBB. If you want to have a look at a couple of blank boards, try www.tchtest.com/invision/ or www.tchtest.com/forum/ Andy
  8. llama thumber There have been a number of suggestions above, and a number of questions asked. I for one am not certain what the current problem is. Do you have "My Server requires authentication", checked in the server tab? Who are the two servers / people that can not be reached? What is your server than you (your dad) are sending from? Does it always happen with these two servers? or is it occasional? Andy
  9. There is a problem with notifications on the board please see this forum notification thread. Andy
  10. Hi Tonsa, I'm not a CSB guru, but looking at it from a script / HTML viewpoint, if you change the line >document.write('Send <A CLASS="contact" HREF=\"mailto:\?subject\=Take a look at this page I found, ' + document.title + '?body=You can see this page at: ' + window.location + '\" onMouseOver="window.status=\'Send your friends e-mail about this page\'; return true" TITLE="Send your friends e-mail about this page">this page<\/A> to a friend'); to >document.write('<A CLASS="contact" HREF=\"mailto:\?subject\=Take a look at this page I found, ' + document.title + '?body=You can see this page at: ' + window.location + '\" onMouseOver="window.status=\'Send your friends e-mail about this page\'; return true" TITLE="Send your friends e-mail about this page">Send this page to a friend<\/A>'); Then I think it should work. Andy PS. you will also need to change the line just below it in the same way.
  11. Tom Welcome to the Family As Critical Mass said - just add a help desk ticket when you have your domain name, and we'll sort it out for you - you don't need to buy another plan. Andy
  12. Steve, The thought seems to be to use PHP, this will certainly do what you are asking. Have a look at some of the PHP Tutorials, then ask a few questions, there are plenty of folk here who will help you sort it out. Andy
  13. Tracy Beaming all of both planets is probably a bit much in one go but from the earlier PHP stuuf you were doing, it was going really well If you have a particular job that you want javascript for, then why not put a request for a hand on the forum here, I'm sure the family will help out Andy
  14. Are you familiar with the Templates in Dreamweaver? That would probably be the option I would choose to start with. My next choice would be to use PHP, but I'm not sure that as a Newbie you want to go that far in the first step
  15. The issue was corrected, If you are using a subdomain, then you need to modify the RewriteBase.
  16. Good point Jack, I must admit I have learnt to remove the Dreamweaver default javascript and replace it with my own, much more efficient - and works Andy
  17. Hi, Where are you sending the email from and to? If you send it from another account - say jc@videoarts-jc.com to joel@videoarts-jc.com does it work? When you say it doesn't appear in Horde or Neomail does it appear elsewhere - ie in Outlook Express when you connect? If so have you got Outlook express automatically deleting it off the server? That would remove it from Horde & Neomail. Andy
  18. Hi, My fault, sorry - there was a # in my example at the start of the code, which should not have been there. It should all be working now, and I have corrected my code above if others want to use it. Andy
  19. PM me and I'll have a look at the files for you. Andy
  20. No. The code I provided looks at the request someone has made. If it ends in .htm it checks if the file exists, if it does not, and a file of the same name with a .php extension exists it redirects to that. ie. If you put the code I provided in your .htaccess, and renamed all your files from .htm to .php, then it will work. since you were using html not htm, then change the .htm in the code I provided to .html Andy
  21. Sorry, I'll go back one step. All redirects should be done in the .htaccess file. You can edit it from the file manager in cPanel. Have a look at our Tutorials on .htaccess for how to perform redirects.
  22. Hi, I use a quick check to see if the htm code exists - if not then redirect to the php file if it exists >RewriteEngine on RewriteBase / # parse out basename, but remember the fact RewriteRule ^(.*)\.htm$ $1 [NC,E=WasHTM:yes] # rewrite to document.php if exists RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php [R=301,S=1] # else reverse the previous basename cutout RewriteCond %{ENV:WasHTM} ^yes$ RewriteRule ^(.*)$ $1.htm Andy
  23. Hi, I would go into cpanel and look at the permissions on the Directory - that could be wrong. The other thing I would check is the .htaccess file. Just try renaming it, and see if that makes a difference, if so, then you know the problem is there. Andy
  24. Hi, Could you let us know the domain, then we can have a look. I would guess you could have updated to the wrong place, maybe even deleted some of the old pages. Your version at home, shich is seeing an old version, may be picking up a cached version - try doing a refresh to check. Andy
  25. Hi, I think the problem is primarily due to the character set you are using. If you change your directory names to 'simple' ASCII charaters - eg Eapanol instead of Español for the directory. Andy
×
×
  • Create New...