I just started using CakePHP using this tutorial from IBM... I have the cake directory in localhost/cake
I access a simple register.thtml from http://localhost/cake/users/register When I click the register button, the browser gives me an 'Object not found' error. The address in the address bar at this time is http://localhost/users/register So I think it is not accessing what it should. My register.html is as follows: <form action="/users/register" method="post"> <p>Please fill out the form below to register an account.</p> <label>Username:</label><input name="userName" size="40" /> <label>Password:</label><input type="password" name="password" size="40" /> <label>Email Address:</label><input name="email" size="40" maxlength="255" /> <label>First Name:</label><input name="fName" size="40" /> <label>Last Name:</label><input name="lName" size="40" /> <input type="submit" value="register" /> </form> Do I need to change some settings? Any help would be appreciated. QJ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
