Jump to content

TCH-Bruce

Members
  • Posts

    20,156
  • Joined

  • Last visited

Everything posted by TCH-Bruce

  1. Latte (used Cafe)
  2. Well you could set up a user in Wordpress and give them admin provledges but that won't give them access to your web space where they could upload/delete/add files to your site. They could change settings in your Wordpress but not access files on the server.
  3. There is no way to give someone read only access to your web space. If you give them your username and password is the only way they can access your cPanel or use FTP.
  4. Glad it's all sorted out. I believe the reason you can't use the "?" is it's not part of the file name.
  5. You are correct. /usr/sbin/sendmail
  6. I'd start by checking out hotscripts.com
  7. I'd give the .htaccess one a try. Couldn't hurt. I found them both using Google.
  8. Steve, thanks for the kind words. As for cPanel vs. Plesk, I've used both and even with some of the quirks in cPanel I like it far better than Plesk.
  9. You can do this in cPanel. Select Redirects Leave the first box empty In the second box enter the full path to your sub folder http://www.bruzzi.ws/plasma-faq/index.php Select Permanent instead of Temporary in the drop-down Click the Add button That should do it.
  10. Thanks for the heads up Rob
  11. Thanks Rob Or better yet, upgrade to version 2
  12. When I run into problems like that I code it with a full path to the CSS file. ><?php echo '<link rel="stylesheet" href="http://your-site.ext/styles/sdi3column_allbrowsers.css" type="text/css">'; ?> Then the server doesn't have to guess where you are trying to point too.
  13. When you run a trace from dnsstuff you are running the trace from their server and not your machine. So the route may be fine from there but there is still a problem for you. And if you are having a problem accessing cPanel open a ticket with the help desk as it's happening.
  14. Welcome to the forums sirius!
  15. You could use sendmail.
  16. Or by using rewrite rules in the .htaccess file >#browser redirects For PDA Based Browsers RewriteCond %{HTTP_USER_AGENT} "Windows CE" [NC,OR] #Windows CE and Pocket PC RewriteCond %{HTTP_USER_AGENT} "NetFront" [NC,OR] #PalmSource WebBrowser 2.0 RewriteCond %{HTTP_USER_AGENT} "Palm OS" [NC,OR] #Eudora Web Browser for Palm RewriteCond %{HTTP_USER_AGENT} "Blazer" [NC,OR] #Handspring Blazer Browser RewriteCond %{HTTP_USER_AGENT} "Elaine" [NC,OR] #RIM Devices RewriteCond %{HTTP_USER_AGENT} "^WAP.*$" [NC,OR] #WAP Browsers RewriteCond %{HTTP_USER_AGENT} "Plucker" [NC,OR] #Plucker Offline download client RewriteCond %{HTTP_USER_AGENT} "AvantGo" [NC] #AvantGo Service RewriteRule ^index\.html http://www.yourdomain.net/index.wml [L,R]
  17. You can do this with a PHP redirection script. ><? $wmlredirect = "http://www.******/wml/index.php";// Your WAP Site $htmlredirect = "http://www.******/html/index.php";// Your HTML Site // Get browser ID $browser=substr(trim($HTTP_USER_AGENT),0,4); // Identify Web Browsers if($browser=="Mozi") // Mozilla, Internet Explorer 6 & Opera 7 { $br = "HTML"; // Identify the above as Web Browsers } else { $br = "WML"; // Identify balance as Wap Devices/Emulators } if($br == "HTML") { header("Location: ".$htmlredirect); exit; } else { header("Location: ".$wmlredirect); exit; } ?>
  18. Only problem with that is the forum is using templates to display content from the database. It's contantly reloading the template page over and over as you traverse through the forum. So you will have to give this some serious thought as to how you want this to work. The skin_global.php file for the template you are using is used to display all pages of the forum.
  19. Welcome to the forums dcarpus
  20. The avatar upload folder
  21. Congratulations Marie!
  22. By help, what are you asking? TCH does not install software but if you run into problems the forum is a good place to start to find an answer. If you follow the upgrade instructions you should have no problems. Back up your database, disable any extensions you have running, delete the core files as the instructions say, install the new files, run the upgrade script and turn your extensions back on. Couldn't be easier.
  23. I believe the 800x600 mode to be slowly dying off. I still design with 800x600 in mind but I haven't run that resolution in years. According to this information only 20% are still using 800x600 while 57% are using 1024x768. I wouldn't bother changing it if it looks good at 1024x768 and up.
  24. Easy way to tell is set your 401 error to display your 404 page.
×
×
  • Create New...