I posted "failure to generate code" earlier. This time I stopped being lazy and turned on error reporting in php. result :
PHP Notice: Use of undefined constant ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS - assumed 'ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS' in C:\\Program Files\\Apache Group\\Apache\\htdocs\\phpCodeGenie3\\app\\common\\utils\\requestUtils\\requestUtils.class.php on line 48\n
Can anyone help ?? I'd really like to use this application. Sigh. Thanks.
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 guys,
I posted "failure to generate code" earlier. This time I stopped being lazy and turned on error reporting in php. result :
PHP Notice: Use of undefined constant ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS - assumed 'ALLOW_HTML_TAGS_IN_POST_GET_REQUESTS' in C:\\Program Files\\Apache Group\\Apache\\htdocs\\phpCodeGenie3\\app\\common\\utils\\requestUtils\\requestUtils.class.php on line 48\n
Can anyone help ?? I'd really like to use this application. Sigh. Thanks.
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.