Jump to content

TCH-Dick

Admins
  • Posts

    6,029
  • Joined

  • Last visited

Everything posted by TCH-Dick

  1. That's from spending too much time online Does this mean I can actually have a 25 - 30 meter long cable if I have a hub each 5 meter? Why I ask is in the beginning on same site it sort of says no. In "theory" yes but we all know how that works out. It's kind of similar to
  2. http://www.usb.org/faq/ans5/
  3. fairdesigns.net appears to be unregistered. Did you purchase the domain, because domain names are a separate purchase. You can purchase one from TCH or any registrar you choose.
  4. Until this is completed you can view the stats page at http://www.totalchoicehosting.com/webhosti...r.php?server=## Just change ## to your server number.
  5. TCH-Dick

    Code

    You and Rob kill me, I never can get these.
  6. No problem I actually pointed out this feature the other day not knowing that it had issues.
  7. I just did some checking and there appears to be several issues with this new feature of cPanel. There are currently 3 bugs submitted to cPanel concerning FTP quotas. This is going to be an issue that will have to wait until cPanel fixes it to be able to use properly. In the meantime submit a ticket to the help desk and they should be able to clean it up.
  8. This is from PayPal
  9. I know everyone here knows better but just wanted to remind you anyway. I received an email today that appears to be from PayPal. The link in this email actually points to a web server in Korea. If you receive emails similat to thes keep the following in mind. Never click links in emails. PayPal will not send you an email addressed: Dear PayPal User, Dear User, PayPal User, They will always address you by name. If you receive these please send to spoof@paypal.com Surf Safely, TCH-DIck
  10. Good point, thanks for pointing that out
  11. Those tools are nice but I use this code in my pages. >// put at the top of page <?php $m_time = explode(" ",microtime()); $m_time = $m_time[0] + $m_time[1]; $starttime = $m_time; ?> // put in footer of page <?php $round = 3; // The number of decimal places to round the micro time to. $m_time = explode(" ",microtime()); $m_time = $m_time[0] + $m_time[1]; $endtime = $m_time; $totaltime = ($endtime - $starttime); echo "Page loaded in ". round($totaltime,$round) ." seconds"; ?>
  12. Just don't forget to backup before you start
  13. Welcome Aboard Steve
  14. It's a temp folder created by DreamWeaver.
  15. Another Robert, That's it I've got my eye on you guys. Congrats RobertM
  16. You need to create a "site" to be able to use the Live Data View in DW. If your not sure how to so this take a look at the PHP and Dreamweaver MX Video Tutorials. If you already have a 'site' created the connect to it and hit the Live Data View icon.
  17. Try creating an images folder in the subdomain directory and upload the images there.
  18. Replace index.php with this ><? require_once("config.php"); /* if (!isset($PHP_AUTH_USER)) { header('WWW-Authenticate: Basic realm="Site Statistics"'); header('HTTP/1.0 401 Unauthorized'); echo 'Authorization Required.'; exit; } else if (isset($PHP_AUTH_USER)) { if (($PHP_AUTH_USER != $username) || ($PHP_AUTH_PW != $password)) { header('WWW-Authenticate: Basic realm="Site Statistics"'); header('HTTP/1.0 401 Unauthorized'); echo 'Authorization Required.'; exit; } else { */ if($QUERY_STRING == ""){$query = "config=$site";}else{$query=$QUERY_STRING;}; $Previous = false; if(isset($_POST)) { foreach($_POST as $key => $value) { if($Previous) { $POSTED .= "&"; } $POSTED = "$key=$value"; $Previous = true; } /* } */ $Curl = curl_init("http://$cpnlusername:$cpnlpassword@$site:2082/awstats.pl?$query"); if(isset($_POST)) { curl_setopt($Curl, CURLOPT_POST, TRUE); curl_setopt($Curl, CURLOPT_POSTFIELDS, $POSTED); } curl_setopt($Curl, CURLOPT_RETURNTRANSFER, 1); $results = curl_exec($Curl); for ($i = 0; $i < count($return_message_array); $i++) { $results = $results.$return_message_array[$i]; } if($query == "config=$site"){$results = str_replace("src=\"", "src=\"?", $results);} if($framename==index){$results = str_replace("src=\"", "src=\"index.php?", $results);} $results = str_replace("action=\"", "action=\"index.php?", $results); $results = str_replace("href=\"", "href=\"?", $results); $results = str_replace("href=\"?http://", "href=\"http://", $results); $results = str_replace("awstats.pl?", "", $results); echo $results; } /* } */ ?>
  19. If you do not have this option in your cPanel then put in a ticket to the Help Desk.
  20. http://www.totalchoicehosting.com/help/phpinfo.php GD Support enabled GD Version bundled (2.0.28 compatible) FreeType Support enabled FreeType Linkage with freetype GIF Read Support enabled GIF Create Support enabled JPG Support enabled PNG Support enabled WBMP Support enabled XBM Support enabled
  21. That's correct and should provide support for gif images. GD Version: bundled (2.0.28 compatible)
  22. I'm not sure of the version, let me check.
  23. Short answer, it is used for image creation and manipulation. For more info look here http://www.boutell.com/gd/
  24. This has been discussed before and I would have to say No this will not be a future feature. The reason being, that features like this are controlled by cPanel. If this is something you would like to see added to cPanel then you can make the request at cPanel Bugzilla. note: enter feature requests as enhancements to the system. Until then check out HotScripts.com, as there are scripts that you can use for what you need. Ok, I lied. I have not created a ftp account in a long time so I checked my cPanel. It appears that there is already a quota feature there now. Just look under Add FTP Account and set the Login Password Quota (in megs) Directory
  25. Yes it is possible, you can have your domain name registered anywhere and use us as your host. All you need to do once you have a hosting plan with us is log in to wherever your domain name is registered and set the name servers to the name servers specified in the welcome e-mail you recieve.
×
×
  • Create New...