Jump to content

TCH-Bruce

Members
  • Posts

    20,156
  • Joined

  • Last visited

Everything posted by TCH-Bruce

  1. Welcome to the forums darthsparky
  2. I would install SMF into another folder not your current forum folder. Then make a backup of your database and use it to convert so you do not destroy your existing forum.
  3. Please open a ticket with the help desk and have them take a look. As for a different board that is more secure. None are secure unless you make them secure. Simple Machine Forums seems to be the one of choice most people running phpBB move to.
  4. Version 2.0.5 did have some security related udpates in it. Not sure if that was the reason you were hacked or not but staying current is always a plus. You should open a ticket with the help desk and ask if they could check the logs.
  5. What version of Wordpress are you running?
  6. dog
  7. Glad it 's working for you.
  8. You don't delete anything from your hard drive you delete the certificate from within the Netscape mail program. It should be under Security settings in your Options settings.
  9. Don't know of any personally but a Google search yields plenty.
  10. Yes, just open a ticket to the help desk (link above) and ask them to do the transfer for you. They will require some information from you to do the transfer.
  11. You should have no problems between MySQL versions
  12. Welcome to the forums skyofreason 1. phpadmin is included in cpanel 2. As long as your shoutbox does not require system daemons to be started you should have no issues 3. If your current host has cPanel the techs may be able to just transfer the site for you. The PHP version is 4.4.4 and MySQL is 4.1.x 4. I do not know the answer to this one, sorry. (but Andy did)
  13. SPAMMER-BEWARE
  14. Why not just white list the address for the mailing list. Spam Assassin will then just pass it through.
  15. Many folks have asked how to remotely backup a single directory to a remote server. We have created a script that can be used to email (not recommended) or remote ftp a directory from your site to a remote server. Note: This script is designed to be run from a cron job. Not a browser. ><?php // +----------------------------------------------------------------------+ // | PHP Version 4 | // +----------------------------------------------------------------------+ // | Copyright © 2006 Bruce Richards / Andy Beckett | // | | // | Purpose: To backup a folder structure to a zip file and then FTP | // | the file to a remote server | // | | // | Requires: zip be installed on the server and that you are able | // | to use the passthru command of PHP, the TCH servers | // | do have zip installed and passthru can be used. | // | | // | WARNING: Depending on what you are backing up the files can be quite | // | large. Be sure you have enough space for what you are | // | backing up. Also, sending huge files via email is not | // | recommended. | // | | // +----------------------------------------------------------------------+ // | Author: Bruce Richards / Andy Beckett | // +----------------------------------------------------------------------+ // // setup variables $remove_file = "yes"; // remove file when done -- recommended! $path= '/home/your-account/public_html/'; // Full path to backup $zipfile = "your.zip"; // backup file name $zippath = "/home/your-account/backups"; // path to save backup file $send_email = "no"; // Do you want this backup sent to your email? Fill out the next 2 lines $to = "you@yourdomain.ext"; // Who to send the emails to $from = "backup@yourdomain.ext"; // Who should the emails be sent from? $senddate = date("j F Y"); $subject = "Backup - $senddate"; // Subject in the email to be sent. $message = "Your backup is attached to this email"; // Brief Message. $use_ftp = "yes"; // Do you want this backup uploaded to an ftp server? Fill out the next 4 lines $ftp_server = "localhost"; // FTP hostname $ftp_user_name = ""; // FTP username $ftp_user_pass = ""; // FTP password $ftp_path = "/"; // This is the path to upload on your ftp server! // Do not Modify below this line! $date = date("mdy-hia"); $zipname = "$zippath/$date-$zipfile"; passthru("nice -n 16 zip -q -r $zipname $path "); $filename2 = "$zipname"; if($send_email == "yes" ){ $fileatt_type = filetype($filename2); $fileatt_name = "".$date."-".$zipfile.""; $headers = "From: $from"; // Read the file to be attached ('rb' = read binary) $file = fopen($filename2,'rb'); $data = fread($file,filesize($filename2)); fclose($file); // Generate a boundary string $semi_rand = md5(time()); $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; // Add the headers for a file attachment $headers .= "\nMIME-Version: 1.0\n" ."Content-Type: multipart/mixed;\n" ." boundary=\"{$mime_boundary}\""; // Add a multipart boundary above the plain message $message = "This is a multi-part message in MIME format.\n\n" ."--{$mime_boundary}\n" ."Content-Type: text/plain; charset=\"iso-8859-1\"\n" ."Content-Transfer-Encoding: 7bit\n\n" . $message . "\n\n"; // Base64 encode the file data $data = chunk_split(base64_encode($data)); // Add file attachment to the message $message .= "--{$mime_boundary}\n" ."Content-Type: {$fileatt_type};\n" ." name=\"{$fileatt_name}\"\n" ."Content-Disposition: attachment;\n" ." filename=\"{$fileatt_name}\"\n" ."Content-Transfer-Encoding: base64\n\n" . $data . "\n\n" ."--{$mime_boundary}--\n"; // Send the message $ok = @mail($to, $subject, $message, $headers. "-f" .$from); if ($ok) { echo "<h4><center>Backup created and sent! File name $filename2</center></h4>"; } else { echo "<h4><center>Mail could not be sent. Sorry!</center></h4>"; } } if($use_ftp == "yes"){ $conn = ftp_connect($ftp_server); if(!$conn) { exit("Could not connect to server: $ftp_server\n"); } if(!ftp_login($conn,$ftp_user_name,$ftp_user_pass)) { ftp_quit($conn); exit("Could not log in\n"); } ftp_chdir($conn,$ftp_path); $remotefile = "".$date."-".$zipfile.""; if(!ftp_put($conn, $ftp_path.$remotefile, $filename2, FTP_BINARY)) { echo "Could not upload $filename2\n"; } ftp_quit($conn); echo "<h4><center>$filename2 Was created and uploaded to your FTP server!</center></h4>"; } if($remove_file=="yes"){ exec("rm -r -f $filename2"); } ?> Copy this and create a PHP file, upload it to your server and create a cron job to run it or you can run it from your web browser. Don't forget this could create huge files and I could not get a 22MB file to email to GMail but smaller zip files emailed just fine. The FTP function works just fine with large files.
  16. Welcome to the forum Jenny
  17. Thanks for the info Thomas
  18. Welcome to the forums Mike Sorry I missed that in my first response.
  19. Maybe the article here will help. Basically a 301 redirect without the 301 part: >RewriteEngine on RewriteCond ^yoursite.com [NC] RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L]
  20. If you cannot access your webmail using yourdomain.ext/webmail you should be able to access it just fine with www.mail2web.com Hope that helps.
  21. On a semi-dedicated server, no you would not be able to access that file. But you would be able to access it on a dedicated server.
  22. TCH-Bruce

    Php V5+

    Welcome to the forums, tioat
  23. Welcome to the forums, SAR
  24. Welcome to the team Peter! Glad to have you aboard.
×
×
  • Create New...