10 years ago
Topic

Hello.
I have a project where I use two types of FORMS, the standard form of articles where I made some modifications and a second form where I record vehicle information.

I was developing smoothly, but now I can not modify or create new content!

The forms appear without problems, but after clicking the SUBMIT blank form is displayed again and the information is not recorded and is not generated error message!

What can it be?
How can I debug to identify the problem?

Get a Book for SEBLOD
154 Posts
WebOne
10 years ago
2
Level 1

First thing you should try to do is increase your max_input_vars ,  say to 2500. A form with a lot of fields can cause problems if this setting is too low.

10 years ago
1
Level 2

Hello,
Thanks for the reply WebOne!
I reviewed the settings and added the following lines to my php.ini file:
max_file_uploads = 100M
max_input_vars = 3000

SEBLOD reinstalled correctly identified and the same modifications as the following image, but the problem persists in the same way!

What else could be causing the problem?

154 Posts
WebOne
10 years ago
0
Level 3

From what I've seen there can be a number of reasons why this problem can happen. That's why you may often have to resort to trial and error. I've had a similar issue once before and found it was due to a JQUERY conflict with a template. The login function on the site was using a popup and that conflicted somehow with the Seblod  form. I know it was running in non-conflict mode, but still it didn't submit properly.

Perhaps someone else here has other ideas on this?

10 years ago
2
Level 1

Hello,

Found in part the problem!

The problem is a JavaScript line in my template as follows:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </ script>

If I remove the line, the FORMS are executed successfully, but if I leave the line, no FORM SEBLOD makes the recordings ...
I need the line to use in various parts of my template!

How can I do so that the line does not affect my FORMS?

154 Posts
WebOne
10 years ago
1
Level 2

There you go - and it turned out to be a JQUERY issue (see my reply before this). What Joomla version are you running? Is this line running before or after the seblod scripts load (in the header) ?

10 years ago
0
Level 3

I am using Joomla 3.1.5.
The problem is that the template I was using had a statement of JQuery and I was using another different version in my override.
I modified the template to a newer version and removed the declaration of the Override and everything was ok!

Thank you for your help Webone!

Get a Book for SEBLOD