Topic: The entered information is a duplicate.

Hi,

Can any one tell me how i can get this same message " The entered information is a duplicate. Please go back and enter different values. " Under any of my page.

As if i want above message on my specific page then how i can do it  ?

2 (edited by apmuthu 09/29/2013 05:46:03 pm)

Re: The entered information is a duplicate.

The following is declared inside the function set_global_connection($company=-1) in includes\db\connect_db.inc:

$db_duplicate_error_code = 1062;

The said error is triggered when the $db_error matches the above in function frindly_db_error($db_error) in includes/error.inc. The phrase frindly is used here instead of the more intuitive spelling friendly.

The function frindly_db_error is called in function check_db_error also in the same file includes/error.inc, which displays all other errors than this duplicate error.

Re: The entered information is a duplicate.

thanks smile