
srobbins
Members-
Posts
15 -
Joined
-
Last visited
Everything posted by srobbins
-
I have a client that wants a private domain and it says that it uses a proxy. My client is hosted here and already have 2 public domains registered through TCH as well. Once they purchase the new domain, (also through TCH) I will have to set it up for them since I leased their current server space and domains on their behalf. What do I need to do to accomplish this? Thanks you...
-
Hi. I want to change the domain name on one of my accounts here, primarily due to the fact that the current name is kind of long for email. The account is currently: pr-production.com and pr-productions.com Can I just park a new domain and have the email resolve to the new name or would the current names get parked and the new domain be the default. Whichever the case may be, how hard would this be to do? Or... Can I just simply log into where I purchased the new domain and change the DNS to the TCH server? Thanks in advance. srobbins
-
I got the above script to work......
-
Thanks surefire, I am specifying the db like you posted. I am wondering if it's a password problem. I am using HOST: "localhost" USER: "user_user" -except my actual user (the one that I set up in cpanel) PASS: "mypass" -except my actual pass (the one that I set up in cpanel) DB: "trial" I usually get error: 1044: Access denied for user: 'user_user@localhost' to database 'trial' There must be something that I am not doing right???? Thanks for the help so far Thumbs Up I'll keep trying Here is a copy of the script that I am currently playing with: ><?php $connection = mysql_connect ("localhost", "user_user", "pass"); if ($connection == false){ echo mysql_errno().": ".mysql_error()."<BR>"; exit; } $query = "create table email_info " . "(fullname varchar(255), email_address varchar(255))"; $result = mysql_db_query ("trial", $query); if ($result) echo "Table 'email_info' was successfully created!"; else echo mysql_errno().": ".mysql_error()."<BR>"; mysql_close (); ?> <?php if ($submit == "click"){ // The submit button was clicked! // Get the input for fullname and email then store it in the database. $connection = mysql_connect ("", "", ""); if ($connection == false){ echo mysql_errno().": ".mysql_error()."<BR>"; exit; } $query = "insert into email_info values ('$fullname', '$email')"; $result = mysql_db_query ("trial", $query); if ($result){ echo "Success!"; } else{ echo mysql_errno().": ".mysql_error()."<BR>"; } mysql_close (); } else{ echo " <html><body> <form method=\"post\" action=\"insert.php3\"> Enter your full name <input type=\"text\" name=\"fullname\"></input><br> Enter your email address <input type=\"text\" name=\"email\"></input><br> <input type=\"submit\" name=\"submit\" value=\"click\"></input> </form> </body></html> "; } ?> I get a similar error no matter what script I use...
-
Hi, One of the scripts that I am trying out is ez_sql. A database tool from hotscripts.com. I get the following error: SQL/DB Error -- [ Error establishing a database connection! Are you sure you have the correct user/password? Are you sure that you have typed the correct hostname? Are you sure that the database server is running? Here is a copy of the script where you make the changes for your server: >CHANGE HERE define("USER_USER", ""); // <-- mysql db user define("PASS", ""); // <-- mysql db password define("MYDB", "mysql"); // <-- mysql db pname define("EZSQL_DB_HOST", "localhost"); // <-- mysql server host // I leave everything just as it is except for USER_USER, PASS, and MYDB. The script says that this is the only area to modify. Thanks again, Thumbs Up srobbins
-
Hello, I am completely new to PHP and am trying to see if I can access any db on my site. I have tried just about every script featured on hotscripts.com but nothing will connect to any databases I have set up. Maybe I am COMPLETELY doing everything wrong but I am following the directions to the T and all I seem to get is errors or it will just display the script in the browser. I am entering ("localhost", "user_user", "pass") into the script and then I just choose a database that the user is allowed to access. I am just wondering if I need something else to connect to a database. Sorry if this makes little sence since I have been fighting with it for 2 days now Thanks for any ideas!
-
Hi all, I bought a domain and server space last night for a customer of mine. This morning, I bought another domain that closely resembles the firt one so he has 2 that direct to his website. My question is...Will they both direct to his site or do I have to set up the second one manually. I bought them both with totalchoice. When I looked at the DNS on the second domain that I purchesed today, it looks the same as the first domain's DNS info. The names are: pr-productions.com - first pr-production.com - second Thanks! <srobbins>
-
Thanks for all the help. I will give your suggestions a try. Try getting help like this at the Eudora site. Thanks again. Steve
-
I tried that too.. If i enter "@****" with the user name, when I check for new messages, it says something like: Ckecking for new messages for "User@****@user@****" I think I will just send that program to the recycle bin. I will try again and post the error messages... Thanks again.
-
I normally use outlook as my email client but I want to start using Eudora. In the options, incoming server - I type mail.**** login name - I type my login name (without the @myserver.com) outgoing server - I type mail.**** I keep gettin' different error messages when I attemt to check or receive mail. I tried to import from outlook but that didnt do anything (nothing imported) If someone has seen this problem and may be able to shed some light, I would appreciate it. Thanks.
-
Thanks for the answers. I think I will buy.
-
I was wondering if remote linking is allowed for small graphics or whatever. I was also wondering if POP email is available for use with outlook express. Thanks...