Jump to content

taznumber1

Members
  • Posts

    98
  • Joined

  • Last visited

Everything posted by taznumber1

  1. There is a shared ssl certificate already on the server so you should be able to use it now.
  2. I am sure you could zip the exe file up and send it via email if it is small enough
  3. So when how are we suppose to know if we are getting close to our bandwidth limits, or will our account only stop working if we exceed our bandwidth usage in what cpanel displays which is only http traffic.
  4. Anyone have any idea why http is the only bandwidth that I see?
  5. Does your other host have shell or telnet access. If your other host has that you can log in to your shell account and use ftp from that host to ftp your files to the tch webserver. But if you do not have shell access on your other host server you are kinda out of luck since if you wanted shell access with tch you would had to have gotten it a while back because the do not offer it any more.
  6. Is Cpanel's bandwidth page suppose to be showing the FTP and SMTP bandwith that the accounts use. Because I have looked at mind and the only traffic that I see if http traffic, and I know I have uploaded some data with ftp and have sent some emails and it still shows my traffic as 0 on both of those.
  7. you just turn it on, and then in the Urls to Allow Access: box put the urls like www.example.com in their. Then if you want a little page to come up if they try to link to your site you just put in a page name in the next box below the allow url and then it will turn it on. It is really easy to do, and it the only way to keep other sites from linking to your images.
  8. but keep in mind that using the ftp option, or downloading your backup from your accont using your local ftp client that it does use up your bandwidth. So I would watch how many times that I downloaded a full backup. But keep in mind that TCH does to backups every day on your account.
  9. Have you turned on File and Printer Sharing on your windows 98 machine? If you are still having problems try the knowledge base at HttP://support.microsoft.com
  10. >#!/bin/bash ##################################### ### MySQL Configuration Variables ### ##################################### # MySQL Hostname DBHOST='localhost' # MySQL Username DBUSER='username' # MySQL Password DBPASSWD='password' ##################################### ### FTP Configuration Variables ##### ##################################### # FTP Hostname FTPHOST='www.example.com' # FTP Username FTPUSER='username' # FTP Password FTPPASSWD='password' # Local Directory for Dump Files LOCALDIR=/path/to/local/directory/ # Remote Directory for Offsite Backup REMOTEDIR=/path/to/remote/directory/ # Prefix for offsite .tar file backup TARPREFIX=db1 ##################################### ### Database Backup Script ######### ##################################### cd $LOCALDIR SUFFIX=`eval date +%y%m%d` DBS=`mysql -u$DBUSER -p$DBPASSWD -h$DBHOST -e"show databases"` for DATABASE in $DBS do if [ $DATABASE != "Database" ]; then FILENAME=$SUFFIX-$DATABASE.gz mysqldump -u$DBUSER -p$DBPASSWD -h$DBHOST $DATABASE | gzip --best > $LOCALDIR$FILENAME fi done chmod 400 $LOCALDIR*.gz tar -cf $TARPREFIX-$SUFFIX.tar $SUFFIX-*.gz ftp -n $FTPHOST <<END_SCRIPT quote USER $FTPUSER quote PASS $FTPPASSWD cd $REMOTEDIR put $TARPREFIX-$SUFFIX.tar quit END_SCRIPT rm -f $TARPREFIX-$SUFFIX.tar exit 0 There is the script that I use. It will create a .gz file for each database that you have then tar them all together into one file and then ftp them to a remote host. But keep in mind using this script that it will use up your backwidth to export it to a remote host. You would just place this code in a file and then change all the required variables at the top and then just set up a cron job in your cpanel and you would be good to go. Then if you needed to restore it is real easy with this script, I have used my backup to restore to a test server and they work great. But also keep in mind that TCH does daily backup and a weekly offsite backup of your site so if you want to do a backup that is just for your piece of mind. I know that I do a daily offsite backup on my account because I can not afford to loose a weeks worth of data if they did have a full server melt down and would have to do a off site restore.
  11. localhost or your domain name
  12. The Colum Name Comment that you are trying to use is a reserve word that mysql uses. Here is a list of those words just for your info http://docsrv.caldera.com:8457/cgi-bin/inf...erved%2520words
  13. All you have to do is choose File then choose Save as Web Page. Then you can choose different the different options you might want. Then it will export it and create a all the html pages, then you just ftp it to your web space and you will be good to go.
  14. Well reading the FAQ you can go in and limit those other hosting company ads from being displayed on your side. So that might be somehting you want to look into.
  15. So since TCH limits what you could do is send out the 50 mail messages and then insert the sleep(301) command which will cause the php script to pause for 5 minutes and then continue on and send 50 more mail messages.
  16. I have been getting the same error all day also.
  17. You should not have to put public_html at the front of your include file statement as long as it is in the same directory. The only time that I put that is if I am a few directories deep and I want to include a file that is in the root directory.
  18. I totally agree with FSUchucky3 idea to create a developer's package. I am in the same boat as he is and I do php development on my side and it is much easier to just have jailshell access when you are trying to edit code, and test code, and like the mentioned to optimize sql command, and be able to run sql comments to test them before you post it in your php page. I know there are ways around this but it makes things much easier when you are developing and you have gotten us to being able to ssh into a sytem to do your programming. But as a system admin I can under the the security rise, but it is my understanding that jailshell is a very secure option to providing shell access, and keeping users from being able to change system settings or mess with other people's accounts. I would really like to see you come up with a developers package, and I would be willing to provide the copy of an idea if that is what you require to have this service. Oh yeah Rock Sign , and I am glad you are atleats considering this option to be able to keep customers, because if you don't they will more then likely take there business else where.
  19. I was wondering why come servers only have Mysql databases and other have PostgreSQL Databases and Mysql Databases?
  20. That is acutaly a dialip connection. I have earthlink and I get the exact same mesage when I am dialing in, and not on my cable connection.
  21. Have you all stopped mysql persistant connection from working. I have my website on server 17 for some time and have been able to use persistant connections, but starting today the persistant connections randomly give me connection errors.
  22. I personally like dealing with New Egg http://www.newegg.com They have been cheaper then tiger direct in like 9 out of 10 items I have wanted. Also New Egg has excelent customer service, and real quick delivery.
  23. Apache can't do the CHMOD but you can use FileManger under Cpanel to change your permissions for your directory so you can upload stuff there.
  24. I am setting up a site but I only want the account for the website to only be able to run selects, I am looking to set up a read only connection because the information is going to be changed from another site. On my mysql databases that I have on a test server I can use phpmyadmin to control this. But I can not find that same option with the one that is on your servers. Is there anyway using cpanel or some other way that I am not seeing to be able to assign a user to have just select, pretty much ready only access to the database.
×
×
  • Create New...