Posts: 5
Threads: 2
Joined: Dec 2010
Reputation:
0
I am continually perplexed at why this program has such a hard time keeping the password I use for the admin account.
I've not changed anything, but it refuses to allow me to log in with the username and password I used when I installed form tools to my server.
What is the hard part about keeping the password?
How do I reset it?
Also, after a couple of weeks use, it decided to stop forwarding the emails to my inbox. Why? Is this some sort of trial software?
If not, I should be able to set it and leave it alone while it functions correctly.
Posts: 1
Threads: 0
Joined: Mar 2011
Reputation:
0
I have the same problem.
How can I log in without the admin password? Or which file shall i look for i the ftp to correct the logins?
- When i try to send the password to my emailaddress nothing happens!!!
Posts: 5
Threads: 2
Joined: Dec 2010
Reputation:
0
Yep. I have yet to receive a single email after clicking that link either.
Checked the spam folders, checked the trash folder, NADA!!!
I've been through a conversation with the author when this happened before . . . don't have the emails any longer.
It isn't new.
What is new to me is the failure to forward emails after doing so correctly for a time.
I'll no longer use the software, but would REALLY REALLY REALLY like to retreive my emails that I should have been getting.
That would be so nice!
BTW, I checked my listed passwords in Firefox, and I am using the correct one, the same one I logged in with for a couple of weeks until I was "certain" that the program was working properly. It rejects that username and password.
Posts: 7
Threads: 2
Joined: May 2009
Reputation:
0
(Mar 29th, 2011, 7:28 AM)colbert Wrote: Yep. I have yet to receive a single email after clicking that link either.
Checked the spam folders, checked the trash folder, NADA!!!
I've been through a conversation with the author when this happened before . . . don't have the emails any longer.
It isn't new.
What is new to me is the failure to forward emails after doing so correctly for a time.
I'll no longer use the software, but would REALLY REALLY REALLY like to retreive my emails that I should have been getting.
That would be so nice!
BTW, I checked my listed passwords in Firefox, and I am using the correct one, the same one I logged in with for a couple of weeks until I was "certain" that the program was working properly. It rejects that username and password.
http://docs.formtools.org/tutorials/rese..._password/
Posts: 5
Threads: 2
Joined: Dec 2010
Reputation:
0
Mar 29th, 2011, 5:24 PM
(This post was last modified: Mar 29th, 2011, 5:46 PM by colbert.)
(Mar 29th, 2011, 3:03 PM)2x4 Wrote: http://docs.formtools.org/tutorials/rese..._password/ Take a look at this screen capture.
I changed the password after following your link, but still cannot log in.
Username shows NULL. Why?
Posts: 2,456
Threads: 39
Joined: Dec 2008
Reputation:
6
Hi Colbert,
I'm so sorry you're having trouble! I gotta admit though, not being able to reset your password as that doc page describes ( http://docs.formtools.org/tutorials/rese..._password/) is pretty weird... I've never heard of that not working before. All it does is encrypt a string for pasting into the DB. Maybe double check that when you copy & paste it over you don't include a final trailing space. That can mess it up.
If you're not getting emails from the "forgot your username"
page, then there are a few possibilities:
1. the PHP mail() function isn't configured to run on your server (very possible),
2. the email address for the admin record isn't the one you expect,
3. or finally, the Swift Mailer plugin is enabled but not configured properly so Form Tools is trying to use it to send out the emails but not able to.
You mentioned that other people have had this problem before: absolutely! The problem with writing a script to run in any PHP environment is that everyone has their server configured different ways. Some people just won't have it configured to have everything that's needed. *My* failing is with the error checking: there should be tighter tests at all key junctures to prevent people getting boxed in like this. For example, the Swift Mailer module can be enabled but not properly configured: this is a very possible scenario. They try to set it up but don't have all the SMTP info, so quit. but then Form Tools is set up to send via Swift and can't.
Believe me, I'm well, well aware of these problems! But it's a constant fight to find the time and prioritize which to focus on. Up until now, this has been an evenings-and-weekends project (but soon to change!).
By the way, with regard to the username field in the DB having "NULL" as the default value, true, it does seem a little funny (in fact, the username & password fields are now marked as NOT NULL in 2.1.0) - but it's functionally fine. The PHP code ensures that the entries being inserted into the DB have a username.
Anyway - long answer. Again, I'm really sorry it didn't work out for you, and that I haven't been around these forums enough to respond sooner to your posts.
You mentioned that you'd really like to receive the emails that you've been getting. But to be honest, since you're going to drop the script I don't really see the benefit in spending more time on it... they won't help you any.
All the best -
- Ben
Posts: 5
Threads: 2
Joined: Dec 2010
Reputation:
0
(Apr 3rd, 2011, 10:20 AM)Ben Wrote: Hi Colbert,
I'm so sorry you're having trouble! I gotta admit though, not being able to reset your password as that doc page describes (http://docs.formtools.org/tutorials/rese..._password/) is pretty weird... I've never heard of that not working before. All it does is encrypt a string for pasting into the DB. Maybe double check that when you copy & paste it over you don't include a final trailing space. That can mess it up.
If you're not getting emails from the "forgot your username"
page, then there are a few possibilities:
1. the PHP mail() function isn't configured to run on your server (very possible),
2. the email address for the admin record isn't the one you expect,
3. or finally, the Swift Mailer plugin is enabled but not configured properly so Form Tools is trying to use it to send out the emails but not able to.
You mentioned that other people have had this problem before: absolutely! The problem with writing a script to run in any PHP environment is that everyone has their server configured different ways. Some people just won't have it configured to have everything that's needed. *My* failing is with the error checking: there should be tighter tests at all key junctures to prevent people getting boxed in like this. For example, the Swift Mailer module can be enabled but not properly configured: this is a very possible scenario. They try to set it up but don't have all the SMTP info, so quit. but then Form Tools is set up to send via Swift and can't.
Believe me, I'm well, well aware of these problems! But it's a constant fight to find the time and prioritize which to focus on. Up until now, this has been an evenings-and-weekends project (but soon to change!).
By the way, with regard to the username field in the DB having "NULL" as the default value, true, it does seem a little funny (in fact, the username & password fields are now marked as NOT NULL in 2.1.0) - but it's functionally fine. The PHP code ensures that the entries being inserted into the DB have a username.
Anyway - long answer. Again, I'm really sorry it didn't work out for you, and that I haven't been around these forums enough to respond sooner to your posts.
You mentioned that you'd really like to receive the emails that you've been getting. But to be honest, since you're going to drop the script I don't really see the benefit in spending more time on it... they won't help you any.
All the best -
- Ben
Ben, one reason I would like to get whatever emails are there is because I do website design. I would like to see whatever business I missed, and try to salvage what I can. That is on server 1.
The other reason is on server 2. My wife is an artist, and she relies on communication from her customers . . . and a form makes it so very convenient. Until recently, I could go to the formtools account and read the emails (it refused to forward them to her email address), copy and paste them into a document and then let her handle them. Even so, it worked better than the service I had paid for . . . for a while. Then one day, that installation of formtools decided to go on the fritz as well. I can't log into that one now either.
I have one customer who asked me to use formtools for her account, and it is actually on the same physical server as my wife's site. It was set up almost 1 year ago. So far, that version is working fine and I can log into it still using her username and password, but I'm beginning to have concerns . . . which brings me to a very important question:
Does formtoos perhaps have problems with passwords of certain lengths (I use the same username and password on my account and my wife's but not on that customer's account) or perhaps with certain characters?
Also, is the username perhaps "case sensitive" as in "Colbert" not being the same as "colbert"?
Posts: 2,456
Threads: 39
Joined: Dec 2008
Reputation:
6
Ah, sorry Colbert - stupidly, it didn't dawn on me you were trying to track down emails that had already (possibly) been sent. Could you maybe ask your host to find out if there are logs that are created that keep track of outgoing emails? This is very possible.
[btw, the forms are down now on the FT installations that are having problems, I assume? No point compounding the issue.]
And TWO installations on two different servers started going wrong...??? Very strange.
Quote:Does formtoos perhaps have problems with passwords of certain lengths (I use the same username and password on my account and my wife's but not on that customer's account) or perhaps with certain characters?
No - they can be of any length and contain any characters. There's some functionality added into 2.0.4 that force your clients to enter certain characters & make it of a certain length, but it's off by default.
Quote:Also, is the username perhaps "case sensitive" as in "Colbert" not being the same as "colbert"?
The username is not case-sensitive, but the password is.
If you'd like (and if it's possible), feel free to email me with the FTP & database info for one of the broken sites. I could take a look at it and see if there's anything out of the ordinary going on. I won't be able to see what the existing account passwords are (they're encrypted), but I'd be surprised if I couldn't reset it!
ben.keen@gmail.com.
- Ben
Posts: 1
Threads: 0
Joined: Apr 2011
Reputation:
0
Great post!very informative post.. i am agreen with what you said,thanks again and have a good day!
|