I have created a database that contains 2 tables. I created this dbase using phpmyadmin.
My problem is when on Code Genie Form maker, I got these error messages:-
Notice: Use of undefined constant ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS - assumed 'ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS' in c:\Program Files\EasyPHP1-7\www\phpCodeGenie3.0.2\app\common\utils\requestUtils\requestUtils.class.php on line 48
I have no clue what it's trying to say, could someone explain it to me and help me to solve it?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Check that your error_reporting is set to show errors only:
error_reporting = E_ALL & ~E_NOTICE (show all -notices)
;error_reporting = E_ALL (show all + notices)
Save php.ini -> try again.
ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS 'failure' is only notice. If you change error handling and logging options from php.ini, everything should work fine.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
I finally got my Genie to run. Thank god!
I have created a database that contains 2 tables. I created this dbase using phpmyadmin.
My problem is when on Code Genie Form maker, I got these error messages:-
Notice: Use of undefined constant ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS - assumed 'ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS' in c:\Program Files\EasyPHP1-7\www\phpCodeGenie3.0.2\app\common\utils\requestUtils\requestUtils.class.php on line 48
I have no clue what it's trying to say, could someone explain it to me and help me to solve it?
Edit your php.ini / Error handling and logging
Check that your error_reporting is set to show errors only:
error_reporting = E_ALL & ~E_NOTICE (show all -notices)
;error_reporting = E_ALL (show all + notices)
Save php.ini -> try again.
ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS 'failure' is only notice. If you change error handling and logging options from php.ini, everything should work fine.