Issues inserting data

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
jza
Posts: 5
Joined: Tue Aug 26, 2008 5:38 pm
Location: Mexico
Contact:

Issues inserting data

Post by jza »

Hi I have seen some problems inserting data in the PMF engine. Some of the problems relies really on the captcha which rebound a message saying that I needed to insert the name, email etc.

After some tries I finally get a 'thank you' note and i am able to insert as many more as I need but i still struggle to get some working.

Anyone has experienced this problems?
Alexandro Colorado
tmcguire
Posts: 14
Joined: Thu Aug 21, 2008 1:42 pm
Location: Near the kitchen.

Post by tmcguire »

The error you get is probably because of the captcha.

I opened up inc/Captcha.php and removed letters which can confuse visitors.

Here is my example. You will see that I have removed 1 and l because they look very similar as well as some other combinations of letters.

Code: Select all

        $this->letters   = array('2', '3', '4', '6', '7', '9',
                                    'C', 'F', 'G', 'H',
                                    'J', 'K', 'L', 'M', 'N', 'P', 'R',
                                    'T', 'W', 'X', 'Y' );
Post Reply