I've created two forms with contour (well umbraco forms). I've got umbraco 7.2.1.
The forms work great when I don't have the send email workflows enabled. However when I add the send email workflows. It takes between 2-4 mins for the form to submit and display the redirect page.
I'm using gmail as the smtp server. My web.config contains the following for the smtp settings
<system.net>
<mailSettings>
<smtp>
<network host="smtp.gmail.com" port="465"
enableSsl="true"
defaultCredentials="false"
userName="admin@******.co.nz"
password="********" />
</smtp>
</mailSettings>
</system.net>
I've set the default email in the umbracosettings.config file as well.
Also now I can't view the entries on one of the forms, it just doesn't load anything.
I've now made an edit on the form (removed the workflows so the forms actually work for end users). But now on the entire site I'm receiving this error. I can't access the site at all.
Server Error in '/' Application.
Error running Reader: SQL Statement: SELECT id, domainName FROM umbracoDomains ORDER BY id
Exception: System.Data.SqlServerCe.SqlCeException (0x80004005): Not enough storage is available to complete this operation. at System.Data.SqlServerCe.SqlCeConnection.Open(Boolean silent) at System.Data.SqlServerCe.SqlCeConnection.Open() at SQLCE4Umbraco.SqlCeContextGuardian.Open(String connectionString) at SqlCE4Umbraco.SqlCeApplicationBlock.ExecuteReader(String connectionString, CommandType commandType, String commandText, SqlCeParameter[] commandParameters)
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: SqlCE4Umbraco.SqlCeProviderException: Error running Reader: SQL Statement: SELECT id, domainName FROM umbracoDomains ORDER BY id
Exception: System.Data.SqlServerCe.SqlCeException (0x80004005): Not enough storage is available to complete this operation. at System.Data.SqlServerCe.SqlCeConnection.Open(Boolean silent) at System.Data.SqlServerCe.SqlCeConnection.Open() at SQLCE4Umbraco.SqlCeContextGuardian.Open(String connectionString) at SqlCE4Umbraco.SqlCeApplicationBlock.ExecuteReader(String connectionString, CommandType commandType, String commandText, SqlCeParameter[] commandParameters)
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Form slow when send email workflows created
Hi,
I've created two forms with contour (well umbraco forms). I've got umbraco 7.2.1.
The forms work great when I don't have the send email workflows enabled. However when I add the send email workflows. It takes between 2-4 mins for the form to submit and display the redirect page.
I'm using gmail as the smtp server. My web.config contains the following for the smtp settings
<system.net>
<mailSettings>
<smtp>
<network host="smtp.gmail.com" port="465"
enableSsl="true"
defaultCredentials="false"
userName="admin@******.co.nz"
password="********" />
</smtp>
</mailSettings>
</system.net>
I've set the default email in the umbracosettings.config file as well.
Also now I can't view the entries on one of the forms, it just doesn't load anything.
I've now made an edit on the form (removed the workflows so the forms actually work for end users). But now on the entire site I'm receiving this error. I can't access the site at all.
Server Error in '/' Application.
Error running Reader:
SQL Statement:
SELECT id, domainName FROM umbracoDomains ORDER BY id
Exception:
System.Data.SqlServerCe.SqlCeException (0x80004005): Not enough storage is available to complete this operation.
at System.Data.SqlServerCe.SqlCeConnection.Open(Boolean silent)
at System.Data.SqlServerCe.SqlCeConnection.Open()
at SQLCE4Umbraco.SqlCeContextGuardian.Open(String connectionString)
at SqlCE4Umbraco.SqlCeApplicationBlock.ExecuteReader(String connectionString, CommandType commandType, String commandText, SqlCeParameter[] commandParameters)
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: SqlCE4Umbraco.SqlCeProviderException: Error running Reader:
SQL Statement:
SELECT id, domainName FROM umbracoDomains ORDER BY id
Exception:
System.Data.SqlServerCe.SqlCeException (0x80004005): Not enough storage is available to complete this operation.
at System.Data.SqlServerCe.SqlCeConnection.Open(Boolean silent)
at System.Data.SqlServerCe.SqlCeConnection.Open()
at SQLCE4Umbraco.SqlCeContextGuardian.Open(String connectionString)
at SqlCE4Umbraco.SqlCeApplicationBlock.ExecuteReader(String connectionString, CommandType commandType, String commandText, SqlCeParameter[] commandParameters)
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
I've reset the website by resending all the files back up using FTP from my local machine.
It appears to stop as soon as I add the gmail smtp settings into the web.config.
Hi
did you try setup a pickup directory instead of using the real smtp?
is working on a reply...