By Pasquale Basilio on Tuesday, 13 October 2015
Posted in General Issues
Replies 1
Likes 0
Views 400
Votes 0
Hi there,
I got a problem but I really don't know how to fix it and what could have caused it.

When a user of mine try to register on my site, it shows perfectly first step but after filling all required fields and clicking "continue", it re-direct user to registration page, where "you" can choose which kind of profile you are gonna be.

What could it be?

Thank you.
Hey Pasquale,

For some reasons, it seems like there's an issue with the "index.php" routing. Joomla seems to be generating /index.php/iscriviti in the form post's section. This seems to be causing issues.

I have modified the file /components/com_easysocial/themes/wireframe/registration/default.steps.php at line 25 from the following,


<form class="form-horizontal has-privacy" enctype="multipart/form-data" method="post" action="<?php echo JRoute::_( 'index.php' );?>" id="registrationForm" data-registration-form>


To,


<form class="form-horizontal has-privacy" enctype="multipart/form-data" method="post" action="index.php" id="registrationForm" data-registration-form>


I am still trying to figure out why Joomla is generating the incorrect url
·
Wednesday, 14 October 2015 15:12
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post