Quote:
Originally Posted by Kaycee123
I have tried this query under Maintenance - Run SQL query, and also on my PHPMyAdmin database query
Both come back with the same error:
An error occurred while attempting to execute your query. The following information was returned.
error number: 1146
error desc: Table 'iwfu2_main.template' doesn't exist
|
That is because you most likely have a table prefix inside of it. Try following this post instead:
Quote:
Originally Posted by Wayne Luke
Forms are not equal to templates but some templates have forms in them.
A form is anywhere your users can submit data. If you have modifications that submit data and cannot update their templates then you need to post for support in the modification thread.
It isn't hard to find out where this needs to go.
In your Admin CP under Styles & Template select Search In Templates...
Search for: value="$session[sessionhash]"
In every template this occurs in add this line directly after the line containing the above, if it doesn't exist already:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
Save the template.
|