Jump to content

TCH-RobertM

Members
  • Posts

    1,230
  • Joined

  • Last visited

Everything posted by TCH-RobertM

  1. kentucky
  2. Box
  3. Hey Thomas, sounds like a wicked storm to keep you up like this. I would tell you what I do but it would probably just give you nightmares and that wont help much with sleep. good luck getting rest
  4. Thank You Lisa
  5. Please add my website to the Personal links section www.rmulhern.com The purpose of my website is so that I may learn how do code valid XHTML CSS PHP and other web code languages and scripts. My site has a family section as well that contains Family orientated photographs. Also playing around with a multitude of different software packages such as wordpress blog, Oscommerce ( so I can assist a friend of mine with her website which she is transfering here to TCH as well. I do proudly have a link to TCH on ALL of my pages located in the footer of my webpages. I do appreciate all the help and support that ALL of the Staff and members of the forums have provided me. I hope to be able to assist someone as well. thank you PS sorry for missing this information of my original post ... I jumped the gun a wee bit
  6. sorry I just saw that , I was a bit premature I am filling it all out now
  7. Please add www.rmulhern.com to the family link, Thank you guys the link is located on all my pages in the footer Thanks TCH you guys / gals are the best !! Robert
  8. hmmm gonna have to fix that... Thanks Raul
  9. Hi Raul, Just wanted to let you know I did get a Client log in process working pretty smooth You can test it and see if you find any holes if you like the current set up allows you check out the Client Demo page if you get in I have tried looking at the page directly without logging in and it appears to be working smooth here is the user id info to test id = "Demo" no quotes pass = "Demo" no quotesMy Webpage Right side has login I ended up breaking down some scripts I found at Hotscripts modified them to do what I needed... Seemed a lot more secure than what I was attempting before... This method uses both cookies and sessions so should be a little more robust. Thanks again for helping me If you want to see the code just message me
  10. HAPPY NEW YEAR MY FELLOW TCH FRIENDS may this year be a Great one for all
  11. Rob and Chris, First off I would like to thank you both for giving me some insight as to what to look for and what to expect. One of the Big reasons I came to TCH is exactly this kind of support both the Staff and Users of this Hosting service provide. Also this is the reason I have reccomended TCH to my friend. As far as how her site is going to be constructed, and layed out is something that she and I have been working on over the past few weeks. There is at this time a set number of products which will be offered. They are One of a kind products so I will need to make sure that when an Item is purchased it no longer will be displayed as a option for another shopper to add to the cart. Her business volume is not very high at the moment and she currently does not have anytype of shopping cart system yet. Making the move to a TCH hosted plan should not be a very big deal and will probably require Little downtime if any at all. I have been playing with Html for just over a year and have recently started playing with PHP since joining TCH about 3 months ago. So my skills are not the best but I dig and dig until I get something working. Which is why I like to ask upfront what might be some pitfalls I might encounter. I do think that based upon some of the info presented here so far I will probably persue the Oscommerce route becuase it is more so customizable then the other product. I will have to do some reading and find out more about it as we work this site into its infancy stages. Thank you again for the information I am sure I will be posting more questions as I work the tasks to get this project into production. Robert
  12. Hi everyone, I have a friend that I am helping with the design and setup of her business website. I have a few questions as I have never done this before with the exception of setting up my own little website as a playground for me to learn with. What are some of the concerns I should be aware of prior to transfering her site to TCH I would think that setting her up on a Starter plan would be the way to go for now, and monitor the bandwitch and status and upgrade as needed. I am interested in learning more about setting up her Shopping cart. how this works ( is it a template based system ? Is it simple to implement within an already designed site ? ) I noticed in previous posts that a lot of folks are using Oscommerce ? Was this because of ease of use or functionality of it over other shopping cart systems ? when choosing a Credit card processing company to be used what might some things I need to be aware of using such a company ? Costs, Address Verifications / fraud checks etc ? any recommendations on this would also be helpful I know that the servers are shared, and that there is a Shared SSL how would I go about utilizing this or would it be best to get my own pros/cons here would be great. Also any thing I might be overlooking ? Thank you all for helping me out with this.... Robert
  13. Raul Thanks for the help there, I will try to modify that and especially thanks for the tip about the session_register() I will change that and test it once all changes are back in Thanks again
  14. Hi Everyone, I have been playing around with a client login process that would allow a user to log in on any of my Visable pages and once logged in the user would be directed to a page specifically for them. I am having a problem with the login process itself If I enter an incorrect user id the process works correctly if I enter an incorrect Password the process works correctly If I enter in a valid user and Valid password I have problems with sessions the exact error I am getting is ok I know that I cant send any data to the browser prior to the php code executing or this message occurs... What I dont know is how I should go about changing all my pages where the login form is located to not have this issue occur The Login form is a php file that is dynamically built into each page on the right hand column Here is the TESTFORM LINK User id to test this is "tina" and pasword = "tina" I hope someone here can assist with this headache... thank you again everyone the login code is here ><?php include $_SERVER['DOCUMENT_ROOT']."/php/mysql.php"; ?> <?php function print_login(){ //prints the login table ?> <h2>Login</h2> <form method="post" action="<?php $PHP_SELF ?>" name="login"> <p>Username:<input type="text" name="username"></p> <p>User Password:<input type="password" name= "password" /></p> <input type="submit" name="submit" value="Login" /> </form> <? } if($username!="") { $query = "SELECT * FROM login_users WHERE username=\"$username\""; $result = mysql_query($query, $link); $password = md5($password); //password from the user is encrpyed to compare with the already encrpyted one in the database if(mysql_num_rows($result)<1){ //checks to make sure the username exists print "<h3>Sorry, username does not exist!</h3>"; print_login(); } else{ while($tmp = mysql_fetch_assoc($result)){ if($tmp['password'] != $password){ //checks ot make sure the passwords are the same print "Sorry, you have entered an incorrect password!"; print_login(); } else{ session_start(); extract($tmp); // creates variables named by the keys in array $tmp $legal=$username.md5("my personal code"); //establishes an authentication variable beyond a valid session (must be present) $name="$first $last"; //creates a complete name from 'first' and 'last' used in the table (for page title and welcome msg) session_register("name"); // passes on the session variables session_register("legal"); //ditto header("Location: $username.php"); // redirects valid users to their personal page (you have to create them, can be done automatically (through scripting) when you first register. } } } } else{ print_login(); } ?> the code for the Testform page is here ><?php $thisPage="NONE";?> <?php include $_SERVER['DOCUMENT_ROOT']."/php/header_blank.php"; ?> <?php include $_SERVER['DOCUMENT_ROOT']."/php/nav_blank.php"; ?> <div id="sidebar"> <?php include $_SERVER['DOCUMENT_ROOT']."/php/login_form.php"; ?> </div> <div id="content"> </div> <?php include $_SERVER['DOCUMENT_ROOT']."/php/footer_blank.php"; ?>
  15. Hi Shady, there are a number of tutorials / examples on the web.... but you would need to be a bit more clear on what your looking for... What kind of form are you looking for ? a simple Contact form that would allow someone to Email you or something a bit more complex that would be for loading a database ? or setting up pages based upon answers to the form.... PHP / Javascipt ? etc if you do not know what I mean just message me and I will show you some examples here is a google search that I just ran http://www.google.com/search?hl=en&q=html+...G=Google+Search
  16. Shane I am not sure I follow what your are requesting...when I looked at the page it appears you have 2 seperate navigation bars the NAVBAR Div and the SUBNAVBAR Div Both of these appear to be within the BIGBOX Div is this not what you want.. maybe you already solved your issue not sure ?
  17. not sure if you are the same person in the contacts for Both http://mirror.sketchy-milk.net/betty.html and http://with-great-power.net/X_G they both have the same name for Contact when you hover above the Contact link at bottom of page... if so disreguard this message and Congratulations
  18. I would just like to say Happy Holidays and a Very Merry Christmas everyone, I really do appreciate all your help and friendships. Thanks and may you have a Safe and Happy Holiday
  19. I really like the fact that the Support staff as well as all the users here seem to help each other out... One of the BIG REASONS I chose TCH ...I am not at all unhappy with my choice there....
  20. yes I realized that also when I attempted to do the drop database command as well.. Did you open a ticket ? If you find out an answer will you post it back here .... Thanks
  21. I tried to do the same thing with a test database and I am coming up empty as well , I tried to drop the database with the SQL command as well and Drop Database command is disabled ..... Ticket time will probably be best answer Sorry
  22. on the left hand side you see if you see your database test_test there if so click that you should see the missing tabs
  23. Hi erisande you can drop tables by going into CPANEL then under the MySql Database Icon Down towards the bottom there is phpMyAdmin Click that that will show you your Datbases click Database you want then on the top you should see Drop towards the top right hope this helps
  24. pretty simple really , your site http://octomoto.com/ has a file named index.htm or index.html or index.php rename that to main.whatever the extension currently is then create a new file that you want to be your Banner page and save it as index.htm see when folks type your URL it looks for index.htm (php,html) if it exists it automatically loads it on the new page you create just make sure you put a link to the page that currently exists make sense....? Lisa Beat me to the punch lol
  25. Ripple good ol Sandfoed and Son hiccup
×
×
  • Create New...