Help, new users can´t register in my forum.

Allgemeiner Support zum phpBB 2 Board und phpBB 2 Modifikationen
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Antworten
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Help, new users can´t register in my forum.

Beitrag von mariokaz »

Hi oxpus,

First I want to wish you an excellente year my friend. ;)

Well I have a problem with my forum, because I have very very low registrations and today I see why, is because in one of my 2 templates don´t appears the "Submit" Button and I don´t know why because I take a look into the profile add template file and I didn´t see anything strange. ^6

Please my friend can you help me with my problem ?? ¢¦ , here is my template file, also if you need any other file please tell me and immediately I put it ok. :p

And here are the images of my 2 templates if you want to take a look.

No Submit Button template
Bild

Template with the Submit Button
Bild

Thank you a lot!!

Cheers,

Mario
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.
femu
Beiträge: 176
Registriert: Mo 22.Mai, 2006 10:36
Wohnort: Pfaffenhofen
Kontaktdaten:

Beitrag von femu »

The only difference I see against mine ist one line, which you have after the
UPI2DB function in the beginning.

Put follwoing before the UPI2DB part:

Code: Alles auswählen

<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post" name="addprofile">
No idea, if this causes problem. Just try it.
Angi0570
Beiträge: 34
Registriert: Di 04.Jul, 2006 11:20

Beitrag von Angi0570 »

Always a good idea for problems apearing with just one style - use WinMerge and compare the template file from working style with the one from not working style.
Of course you have to ignore lines just dealing with different html-tags, but you can identify missing variables or things like that pretty easy.
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

[quote="femu";p="80697"]The only difference I see against mine ist one line, which you have after the
UPI2DB function in the beginning.

Put follwoing before the UPI2DB part:

Code: Alles auswählen

<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post" name="addprofile">
No idea, if this causes problem. Just try it.[/quote]

Thank you femu for your idea, I did it and nothing, also I have that line after the UPI2DB in my other template that appears the submit button, so that is not the problem.

Also thank you to Angi0570 and yes I always do that but this time I can´t find the problem.

any other idea ??

Oxpus, please help me my friend.
femu
Beiträge: 176
Registriert: Mo 22.Mai, 2006 10:36
Wohnort: Pfaffenhofen
Kontaktdaten:

Beitrag von femu »

As it looks like, avatar is not allowed during the registration process. So try to see, what happens, if you delete the complete UPI2DB and avatar block, which ist defined before the buttons (starts wth <!-- BEGIN switch_upi2db_is_on -->
). Just another stupid brainstorming idea, as I can't really see any errors ...
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Ok thank you so much for all your help.

Ok let me try that.
femu
Beiträge: 176
Registriert: Mo 22.Mai, 2006 10:36
Wohnort: Pfaffenhofen
Kontaktdaten:

Beitrag von femu »

I just had a similar problem. I wanted to hide a link in the same area and put a <!-- BEGIN switch_user_logged_in --> MY LINK <!-- END switch_user_logged_in -->.

This caused to hide the complete line instead only the link. But: This only happens in the Vanilla phpBB with subSilver theme (my test forum). The same switch works in Orion (my main board).

So I presume, that some switches are going to make trouble. In that case i think, Oxpus help would be really appreciated ¢¦

Let us know, what happens on your side ...

Regards,
Felix

Ok. I played around. Try following:

Search

Code: Alles auswählen

</tr>
<!-- END switch_avatar_local_gallery -->
<!-- END switch_avatar_block -->
<tr>
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS} 
<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" />
&nbsp;&nbsp; 
<input type="reset" value="{L_RESET}" name="reset" class="button" />
</td>
</tr>
</table>
Replace with

Code: Alles auswählen

</tr>
<!-- END switch_avatar_local_gallery -->
<!-- END switch_avatar_block -->
</table>
<table width="70%" cellspacing="2" cellpadding="0" border="0" align="center">
<tr>
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS} 
<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" />
&nbsp;&nbsp; 
<input type="reset" value="{L_RESET}" name="reset" class="button" />
</td>
</tr>
</table>
So splitting the button line into an own table. As this one works for me, it might work for you too.
Zuletzt geändert von femu am Mi 16.Jan, 2008 08:44, insgesamt 2-mal geändert.
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

ok let me try that, I hope this solves the problem.

--------------------------

Wow you are awesome, that solved my problem! :D

But will I have some problem with that modification ? ^5

I don´t think so but please confirme me. :p
Zuletzt geändert von mariokaz am Mi 16.Jan, 2008 20:38, insgesamt 3-mal geändert.
femu
Beiträge: 176
Registriert: Mo 22.Mai, 2006 10:36
Wohnort: Pfaffenhofen
Kontaktdaten:

Beitrag von femu »

Good to hear!

No. Should not causes any problems. But the question is, why the Vanilla phpBB makes troubles on that part ... I will try to find out something.
mariokaz
Beiträge: 222
Registriert: So 12.Jun, 2005 21:46

Beitrag von mariokaz »

Thank you femu,

If you find something please tell me.
Antworten