Error when submitting form in Typo3 Code: 201905310232036dfcc153 - typo3

I created a Contact Form using the 'Forms' tab and added it as a content element to my Contact page. However, after I submit the form I get the following error message:
Oops, an error occurred! Code: 201905310232036dfcc153
The content of the form is supposed to be send to my e-mail address and the user is supposed to be redirected to the Contact page (so the page is supposed to be refreshed).
Here's a screenshot of the finisher settings for the email to receiver:
I am not sure what could be causing the error, so please let me know if there's any code I need to show or screenshots I need to take.
Not sure if it's related but I also keep on getting these errors:
Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1476107295: PHP Warning: rename(C:/Bitnami/typo3-9.5.6-0/apps/typo3/htdocs/public/typo3temp/var/cache/code/cache_core/5cf29916b377a673163679.temp,C:/Bitnami/typo3-9.5.6-0/apps/typo3/htdocs/public/typo3temp/var/cache/code/cache_core/site-configuration.php): Adgang n�gtet. (code: 5) in C:\Bitnami\typo3-9.5.6-0\apps\typo3\htdocs\public\typo3\sysext\core\Classes\Cache\Backend\SimpleFileBackend.php line 234 | TYPO3\CMS\Core\Error\Exception thrown in file C:\Bitnami\typo3-9.5.6-0\apps\typo3\htdocs\public\typo3\sysext\core\Classes\Error\ErrorHandler.php in line 124. Requested URL: http://localhost/typo3/typo3/index.php?route=%%2Fajax%%2Ficons%%2Fcache&token=--AnonymizedToken--

Related

How to create cascading page error handlers for a TYPO3 site

Currently it is only possible to add one error handler per HTTP status code in the site configuration, e.g. for 404 or 403. Alternatively you can always write your custom error handler. But this makes it a bit inflexible.
Imagine the following scenario:
default 404 handling would be a specific page, e.g. 12
in a custom error handler I have a cache of URI-to-page mapping. If this gets a hit, the page from that should be displayed. If not, the generic error page 12
which page is displayed should be configurable in the site configuration
or
for 403 I have an error handler which can redirect to a login page
however this may not work in some cases where it should default to standard 403 page
Nice would be if you could configure this for the site so you have something like this:
404
| - custom error handler 1
| - custom error handler 2
| - page error handler
Keeping your extension with the custom error handlers, you could just replace the "page error handler" with a Fluid template for the last step via site configuration.
However, the site module only allows for one error handler per status code (e.g. 404).
I am thinking it might be useful to change this in the TYPO3 core.
But would like to know how others would solve this first.

EXT:Form TYPO3 form finisher settings not working

I created a contact form with an 'email to recipient'-finisher but when the user sends the form, the message "Oops, an error occurred!" show up. However, when I use 'confirmation message' as a finisher no such error shows up. The 'page redirect'-finisher also returns an error.
Do you have any ideas how to fix this? (I'm also not getting anymore detailed error information even though I have the debug mode turned on in the configuration presets..)
I had not correctly configured the 'Mail handling settings' found under 'Configuration presets' in 'Settings'. I added custom settings to write the form replies to a local file, as the website was not live and I wanted to run tests.

Facebook Custom Tabs

I understand how to create the app for the custom tab. However when I try to layout the next step it comes back with an error message. Can someone help me to properly layout the "With URL Redirects".
I know to put the Id number where is says YOUR APP ID and I have also placed the website in the "YOUR URL" position but it doesn't work. I have watched several videos and they all seem to be prior to the latest FB update.
The problem I am having seems to be coming from the setup for this code below that leads you to the Add Page Tab Dialog prompt. facebook.com/dialog/pagetab? app_id=YOUR_APP_ID &redirect_uri=YOUR_URL When I insert the "Your App ID" and Your URL" and hit enter I am receiving a Facebook Error message that says:
This dialog has been passed a bad parameter. API Error Code: 100 API
Error Description: Invalid parameter Error Message: Requires valid
redirect URI.

Login and Registration error 3840

I'm following along on this tutorial
http://www.raywenderlich.com/13511/how-to-create-an-app-like-instagram-with-a-web-service-backend-part-12 and got to the part where you implement the login and registration through Objective-c. Every time I press register or login I receive an error saying "The operation couldn't be completed. (cocoa error 3840). Also I'm not getting an error back in xcode. Help please
I just checked the mysql database and it inserts a user id but no text into username and password field
This error can occur when the program encounters invalid JSON in the response. To determine if the JSON response is valid, use a tool like HTTPSnoop to examine the output of the PHP script.

simple modal contact form wordpress plugin gives "404 not found" on submit

I had this simple modal contact form working fine but must have broke it somewhere along the way and can't figure out where. Now when I hit submit I get a 404 Not found.
In Firefox the 404 message never shows and from the Error Console I'm seeing the following error repeated:
Error: uncaught exception: [Exception... "Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIXMLHttpRequest.open]" nsresult: "0x80070057 (NS_ERROR_ILLEGAL_VALUE)" location: "JS frame :: http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js :: anonymous :: line 125" data: no]
The popup form can be found here at this site in development:
http://dailybutter.com
It's been styled and there are 2 other popups on the home page that also use the smcf plugin "market statistics" and "quick search".
The contact form was working after customizing appearance and adding those 2 other popups so I don't know why it's not now. Any help would be greatly appreciated!
It's because the action is null and it's posting to the wrong page, the plugin is looking for the action here:
$('#smcf-content form').attr('action')
But your modal looks like this (when opened):
<div id="smcf-container" class="simplemodal-container">
<div id="modal_content1" class="simplemodal-data">
<div class='smcf-content'>
<form action='/wp-content/plugins/simplemodal-contact-form-smcf/smcf_data.php'>
That class='smcf-content' div needs to have an ID of id='smcf-content' instead of a class for the plugin to submit properly, or the plugin just wasn't updated...I see #smcf-container everywhere else, so it's possible this one ID selector was just missed and needs to be changed as well.