Jump to content

nativeg

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by nativeg

  1. That is strange because I have several forms on different websites on server 83 and I am not having the problem. Also, I have more sites on another server - I think 67 and there is not a problem with those sites either. How very strange... Robert
  2. I have seen the same problem on server 83 and the forwards were to addresses within the same domain name. For example: abuse@yourdomainname.com forwarded to robert@yourdomainname.com was kicked out of the system several times, Sometimes there are just "Ghosts in the System" we all have to live with. Robert
  3. I am guessing that someone needed the mod_security feature on server 83 because I have not had this problem until the last day or two.
  4. Ian, In my experience, it takes for 12 to 72 hours for a sub-domain to propagate itself. That is my experience anyway. Robert
  5. I started getting the following error today on server 83. 406 Error (Not Acceptable) An appropriate representation of the requested resource could not be found on this server. This happened every time I hit the submit button on a small form I created several weeks ago. The form sent information to a PHP script that wrote the information into a small file on the server and also emailed me the information. Everything worked perfectly until I tested the system today. Here is what I found. The problem is with Apache mod_security that is turned on by default. I turned the Mod security off on my site using the following script in the public_html/.htaccess file. <IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule> I will need to go to several other sites I manage on TCH servers and see if they have the same problem. Is there anything I need to be concerned with about turning this filter off and if so, is there another work around, TCH would prefer me to use. Thanks.. Robert
  6. Robby, I think if you contact the folks at public domain registry.com They can renew the domain for you. They seem to be your listed Registrar from what the whois information shows. If you contact them at the web address below, they can probably resolve the situation for you. They will expect you to pay them some $$$ for another year's registration, and they might want you to Fax them a copy of your driver's license if your Email address on the registration has changed. http://publicdomainregistry.com/support/ Whois Information.: Domain Name: ROBBYKRAFT.COM Registrar: DIRECT INFORMATION PVT LTD D/B/A PUBLICDOMAINREGISTRY.COM Whois Server: whois.PublicDomainRegistry.com Referral URL: http://www.PublicDomainRegistry.com Good Luck, Robert
  7. There is still something I am missing. I could not get the files to transfer to the new distro over the network, so I burned a cd with all of the files on it. (481 Mb worth) It loaded just fine but when I went into Kmail on the new distro, everything looked fine until I tried clicking on one of the emails. then it would say "No Subject "and the the entire email was gone. It is like it is seeing a mirror of the email but nothing behind it. To beat that, the Emails took up 481 Mb of space. Yes there were a ton of Emals in the old machine, and they are still there. Thanks for any help you can give me.
  8. Is anyone else out there using KDE Kmail? I need to figure out how to remove all of my email that is on one computer and move it to another Distro. After several attempts. I have still yet to be able to make it work properly. Thanks, NativeG
  9. Bruce, Thanks for your reply. This guy is a great Graphic Artist but if it is not PhotoShop he doesn't want to have anything to do with it. He claims that he is too busy doing his art work to learn anything else. Zipit. He won't go that route. He is too darn lazy for zipping somethng. Thanks anyway.
  10. Tom, The problem is that the client does not want to load an ftp program on his computer, free or otherwise. For a while he was sending me everything on CD. He is a rather strange bird, but he sends me a huge amount of work, and always pays on time.
  11. Don, That seems to workfor the larger files, thank you. Do you know if there is anything that I can do to upload entire file folders instead of just individual files.
  12. I have a client who wants to be able to send me files from his computer to my server via FTP. The problem is that he does not have an ftp client on his computer. I created a PHP script that would let him upload files directly using the <form><input type="file" method. The problem with that is that the PHP settings on the server restrict files to 3 Mb or less. The client wants to send me entire folders of his work and they can be up to 50Mb in size. Is there a way to use the Public FTP folder to set it up as portal for this customer to send me files larger than 3 Mb in size. I am not asking for the Server settings to be changed because I feel that is a crazy way to try to solve this problem. I have asked the client to purchase some FTP software, but he seems unresponsive to that solution. Any ideas?
  13. Thumbs Up Thanks Rob, I think that will do it. I will incorporate that extra code into the mail program, and change the names a little to match the names used in the HTML Form, and I think it will work Great.. I have been programming in PHP for a while now, but I had never figured out a solution to the problem. I was thinking I was going to have to write a little "c" code to create a function, but I figured if I asked, someone else had already seen it done. I like the Codewalkers website, as it is full of PHP tips and tricks. Again, Thank you. Rock Sign
  14. I am working on a PHP mailer program, and everything on a normal email works fine. I cannot figure out how to make an attachment link to the email. Has anyone used the PHP mail command with attachments? Rock Sign
  15. The Host, Username and Database name all seem to be correct. After I go through the connect procedure to the database This is my code: All I want to do at this time is to query the db so I can read the files I have already added using the tools TCM provides Here is my query code: I first define the DB_HOST, DB_USER,, DB_PASSWORD, and the DB_NAME. Then my code continues as: $dbh=mysql_connect (DB_HOST, DB_USER, DB_PASSWORD) or die ('I cannot connect to the database because: ' . mysql_error()); @mysql_select_db (DB_NAME) or die ('I cannot connect to the database because: ' . mysql_error()); echo "Database is (DB_NAME) and has connected properly: <p>"; $query ="SELECT * FROM dbase22 LIMIT 0, 30" ; $result = mysql_query($query ) or die ('I cannot read the database because: ' . mysql_error()); echo "$result <br>" ; echo " . . . were the results of this show query <br><br><br>"; echo " <br><br> $query "; echo '<table align="center" cellspacing="2" cellpadding="2"> <tr> <td align="left"><b>CALLSIGN</b></td><td align="left"><b>NAME</b></td><td align="left"><b>EMAIL</b> </td> </tr>'; // Fetch the records. while ($row = mysql_fetch_array($result, MYSQL_NUM)) { echo" <tr><td align = \"left\"> $row[0]</td><td align = \"left\"> $row[1]</td> <td align = \"left\"> $row[2]</td></tr> \n"; } echo '</table>'; mysql_free_result($result); }else{ echo'<p> no info due to a system error</p> <p>'. mysql_error().'</p>'; } mysql_close(); Ok So where did I go wrong?
  16. I am atempting to build a small database using php and MySql. When I try to connect, I do not get any MySql errors but I am not able to read any of the data I have built into the small database with the phpadmin tools on the server. Does anyone have any suggestions? Nativeg
×
×
  • Create New...