vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Specify Avatar on Registration (https://vborg.vbsupport.ru/showthread.php?t=115488)

Tralala 02-16-2007 11:57 AM

Does this work in 3.6.4? I'd love it.

Tralala 04-22-2007 10:44 PM

Quote:

Originally Posted by Tralala (Post 1183813)
Does this work in 3.6.4? I'd love it.


Answering my own question; I just tried it and it does not work, at least not on 3.6.5.

Would love to see an update as I would very much appreciate this on my forum.

JoeIsuzu239 08-14-2007 10:31 PM

This looks like exactly what I need. However, it doesn't seem to work with 3.6.7 PL1. Does anyone know how to tweak it to work with the newer versions of the software?

Thug 02-18-2008 07:06 PM

this work with 3.7 beta 4?

jerx 10-10-2008 12:30 PM

This does not work correctly on vb 3.7 pl1. You can only specify a remote hosted avatar, but you cannot upload from your computer.

I have installed the product and added the following code to register template:

Code:

<if condition="$show[avatar_form]">
                        <fieldset class="fieldset">
                                <legend>$vbphrase[custom_avatar]</legend>

                                <div style="padding:$stylevar[formspacer]px">
                                <div class="fieldset">

                                <if condition="$vboptions[regava_show_url]">
                                $vbphrase[enter_url_to_image]

                                <div style="padding:$stylevar[formspacer]px">
                                        <input type="text" class="bginput" name="avatarurl" value="http://www." onchange="check_yes('avatar_yes')" size="45" dir="ltr" />
                                        <input type="hidden" name="MAX_FILE_SIZE" value="$inimaxattach" />
                                </div>
                                </if>

                                <if condition="$vboptions[regava_show_upload]">$vbphrase[upload_image_from_computer]</if>
                                <div style="padding:$stylevar[formspacer]px">
                                        <input type="file" class="bginput" name="upload" onchange="check_yes('avatar_yes')" size="45" />
                                </div>

                                <if condition="$show['maxnote']">
                                        $maxnote
                                </if>

                        </fieldset>
</if>

Can anyone please help me get this fixed?

Adult SEO 10-21-2008 09:51 AM

You may try adding this to the registration form in 3.7 for it to work:

ENCTYPE="multipart/form-data"

jerx 10-27-2008 06:48 AM

Quote:

Originally Posted by Adult SEO (Post 1649590)
You may try adding this to the registration form in 3.7 for it to work:

ENCTYPE="multipart/form-data"

Unfortunately this did not help. The changed part looks like this now:

Code:

<form action="register.php?do=addmember" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);" ENCTYPE="multipart/form-data">
Any other ideas?

Adult SEO 10-27-2008 07:53 AM

Did you install the latest version? For me it works on 3.7.1.

jerx 10-27-2008 09:09 AM

Yes, I have installed 3.7.3 pl1.

Have you changed anything in the product? Do you mind posting your registration template?

Since I was testing on a customized style, I just checked the problem on the default style. Although I have already applied some mods, the register template has been untouched.

I added the code I posted two weeks ago to the template and also tried the original from the install instructions. The template does not have the regimage conditional any more. It is called $human_verify now. I have added the code above that variable and also put the code you suggested to the form.

My modified default template with original mod code looks like this:

Code:

$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - <if condition="$show['coppa']">$vbphrase[coppa] </if>$vbphrase[registration]</title>
</head>
<body>

$header

<br />

<if condition="$show['coppa']">
        <div>$vbphrase[until_receive_signed_form]</div>
</if>

<if condition="$show['errors']">
        <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
        <tr>
                <td class="tcat">$vbphrase[errors_occurred_during_registration]</td>
        </tr>
        <tr>
                <td class="alt1"><ul>$errorlist</ul></td>
        </tr>
        </table>
        <br />
</if>

<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
<script type="text/javascript">
function verify_passwords(password1, password2)
{
        // do various checks, this will save people noticing mistakes on next page
        if (password1.value == '' || password2.value == '')
        {
                alert('$vbphrase[fill_out_both_password_fields]');
                return false;
        }
        else if (password1.value != password2.value)
        {
                alert('$vbphrase[entered_passwords_do_not_match]');
                return false;
        }
        else
        {
                <if condition="$show['coppa']">
                pass_copy = password1.value;
                passconfirm_copy = password2.value;
                </if>

                var junk_output;

                md5hash(password1, document.forms.register.password_md5, junk_output, $show[nopasswordempty]);
                md5hash(password2, document.forms.register.passwordconfirm_md5, junk_output, $show[nopasswordempty]);

                <if condition="$show['coppa']">
                document.forms.register.password.value = pass_copy;
                document.forms.register.passwordconfirm.value = passconfirm_copy;
                </if>

                return true;
        }
        return false;
}
</script>

<form action="register.php?do=addmember" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);" ENCTYPE="multipart/form-data">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="addmember" />
<input type="hidden" name="url" value="$url" />
<input type="hidden" name="agree" value="$agree" />
<input type="hidden" name="password_md5" />
<input type="hidden" name="passwordconfirm_md5" />
<if condition="!$show['birthday']">
        <input type="hidden" name="day" value="$day" />
        <input type="hidden" name="month" value="$month" />
        <input type="hidden" name="year" value="$year" />
</if>
<if condition="$show['coppa']">
        <input type="hidden" name="coppauser" value="1" />
</if>

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="tcat"><phrase 1="$vboptions[bbtitle]">$vbphrase[register_at_x]</phrase></td>
</tr>
<tr>
        <td class="panelsurround" align="center">
        <div class="panel">
                <div style="width:$stylevar[formwidth]" align="$stylevar[left]">

                        <div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
                                <phrase 1="$vboptions[bbtitle]">$vbphrase[to_post_must_first_register]</phrase>
                        </div>

                        <div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
                                <strong>$vbphrase[username]</strong>:<br />
                                <input type="text" class="bginput" name="username" size="50" maxlength="$vboptions[maxuserlength]" value="$username" />
                        </div>

                        <fieldset class="fieldset">
                                <legend>$vbphrase[password]</legend>
                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
                                <tr>
                                        <td colspan="2">$vbphrase[enter_password_for_account]</td>
                                </tr>
                                <tr>
                                        <td>
                                                $vbphrase[password]:<br />
                                                <input type="password" class="bginput" name="password" size="25" maxlength="50" value="$password" />
                                        </td>
                                        <td>
                                                $vbphrase[confirm_password]:<br />
                                                <input type="password" class="bginput" name="passwordconfirm" size="25" maxlength="50" value="$passwordconfirm" />
                                        </td>
                                </tr>
                                </table>
                        </fieldset>

                        <fieldset class="fieldset">
                                <legend>$vbphrase[email_address]</legend>
                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
                                <tr>
                                        <td colspan="2">$vbphrase[enter_valid_email_address]</td>
                                </tr>
                                <tr>
                                        <td>
                                                $vbphrase[email_address]:<br />
                                                <input type="text" class="bginput" name="email" size="25" maxlength="50" value="$email" dir="ltr" />
                                        </td>
                                        <td>
                                                $vbphrase[confirm_email_address]:<br />
                                                <input type="text" class="bginput" name="emailconfirm" size="25" maxlength="50" value="$emailconfirm" dir="ltr" />
                                        </td>
                                </tr>
                                <if condition="$show['coppa']">
                                <tr>
                                        <td>$vbphrase[if_under_13_provide_parent]</td>
                                </tr>
                                <tr>
                                        <td>
                                                $vbphrase[parent_guardian_email]:<br />
                                                <input type="text" class="bginput" name="parentemail" size="25" maxlength="50" value="$parentemail" dir="ltr" />
                                        </td>
                                </tr>
                                </if>
                                </table>
                        </fieldset>

<if condition="$show[avatar_form]">
<fieldset class="fieldset">
    <legend>$vbphrase[regava_custom_avatar]</legend>
    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
    <tr>
        <td>
            $vbphrase[regava_upload_custom_avatar]
            <if condition="$vboptions[regava_show_url]">$vbphrase[regava_enterurl]</if>
            <if condition="$vboptions[regava_show_upload]">$vbphrase[regava_upload]</if>
        </td>
    </tr>
    <if condition="$vboptions[regava_show_url]">
        <tr>
            <td>
                $vbphrase[regava_enter_avatar_url]<br />
                <input type="text" class="bginput" name="avatarurl" value="http://www." size="50" dir="ltr" />
            </td>
        </tr>
    </if>
    <if condition="$vboptions[regava_show_upload]">
        <tr>
            <td>
                <input type="hidden" name="MAX_FILE_SIZE" value="$inimaxattach" />
                $vbphrase[regava_upload_avatar_from_computer]<br />
                <input type="file" class="bginput" name="upload" size="50" />
            </td>
        </tr>
    </if>
    <if condition="$show['maxnote']">
    <tr>
        <td>$maxnote</td>
    </tr>
    </if>
    </table>
</fieldset>
</if>


                        $human_verify

                </div>
        </div>
        </td>
</tr>
</table>
<br />

<if condition="$show['customfields_profile']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="thead">$vbphrase[additional_required_information_profile]</td>
</tr>
<tr>
        <td class="panelsurround" align="center">
        <div class="panel">
                <div style="width:$stylevar[formwidth]" align="$stylevar[left]">

                        $customfields_profile

                        <if condition="$show['birthday']">$birthdayfields</if>

                </div>
        </div>
        </td>
</tr>
</table>
<br />
</if>

<if condition="$show['customfields_option']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="thead">$vbphrase[additional_required_information_option]</td>
</tr>
<tr>
        <td class="panelsurround" align="center">
        <div class="panel">
                <div style="width:$stylevar[formwidth]" align="$stylevar[left]">

                        $customfields_option

                </div>
        </div>
        </td>
</tr>
</table>
<br />
</if>

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
        <td class="thead">$vbphrase[additional_information]</td>
</tr>
<tr>
        <td class="panelsurround" align="center">
        <div class="panel">
                <div style="width:$stylevar[formwidth]" align="$stylevar[left]">

                        <if condition="$show['referrer']">
                        <fieldset class="fieldset">
                                <legend>$vbphrase[referrer]</legend>
                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
                                <tr>
                                        <td><phrase 1="$vboptions[bbtitle]">$vbphrase[if_referred_enter_name]</phrase></td>
                                </tr>
                                <tr>
                                        <td>
                                                $vbphrase[referrer]:<br />
                                                <div id="referrerfield"><input id="referrerfield_txt" type="text" class="bginput" name="referrername" value="$referrername" size="50" maxlength="$vboptions[maxuserlength]" /></div>
                                                <if condition="$show['popups']">
                                                        <div id="referrerfield_menu" class="vbmenu_popup" style="display:none; z-index:50"></div>
                                                        <script type="text/javascript" src="clientscript/vbulletin_ajax_namesugg.js?v=$vboptions[simpleversion]"></script>
                                                        <script type="text/javascript">
                                                        <!--
                                                                vbmenu_register('referrerfield', true);
                                                                rnc = new vB_AJAX_NameSuggest('rnc', 'referrerfield_txt', 'referrerfield');
                                                                rnc.allow_multiple = false;
                                                        //-->
                                                        </script>
                                                </if>
                                        </td>
                                </tr>
                                </table>
                        </fieldset>
                        </if>

                        $timezoneoptions

                        <fieldset class="fieldset">
                                <legend>$vbphrase[receive_email]</legend>
                                <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
                                <tr>
                                        <td>
                                                $vbphrase[administrators_may_send_email]
                                        </td>
                                </tr>
                                <tr>
                                        <td><label for="cb_adminemail"><input type="checkbox" name="options[adminemail]" value="1" id="cb_adminemail" $checkedoff[adminemail] />$vbphrase[receive_email_from_bulletin_board_staff]</label></td>
                                </tr>
                                <if condition="$show['email']">
                                <tr>
                                        <td>$vbphrase[allow_members_send_you_email]</td>
                                </tr>
                                <tr>
                                        <td><label for="cb_showemail"><input type="checkbox" name="options[showemail]" value="1" id="cb_showemail" $checkedoff[showemail] />$vbphrase[receive_email_from_other_members]</label></td>
                                </tr>
                                </if>
                                </table>
                        </fieldset>


                        $customfields_other

                </div>
        </div>

        <div style="margin-top:$stylevar[cellpadding]px">
                <input type="submit" class="button" value="$vbphrase[complete_registration]" accesskey="s" />
                <input type="reset" class="button" name="Reset" value="$vbphrase[reset_fields]" />
        </div>
        </td>
</tr>
</table>

</form>

$footer

</body>
</html>

I also get this error on the registration form:
Quote:

Could not find phrase 'note_maximum_size_x_y_or_z'.
Here is the code from the instructions:
Code:

<if condition="$show[avatar_form]">
<fieldset class="fieldset">
    <legend>$vbphrase[regava_custom_avatar]</legend>
    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
    <tr>
        <td>
            $vbphrase[regava_upload_custom_avatar]
            <if condition="$vboptions[regava_show_url]">$vbphrase[regava_enterurl]</if>
            <if condition="$vboptions[regava_show_upload]">$vbphrase[regava_upload]</if>
        </td>
    </tr>
    <if condition="$vboptions[regava_show_url]">
        <tr>
            <td>
                $vbphrase[regava_enter_avatar_url]<br />
                <input type="text" class="bginput" name="avatarurl" value="http://www." size="50" dir="ltr" />
            </td>
        </tr>
    </if>
    <if condition="$vboptions[regava_show_upload]">
        <tr>
            <td>
                <input type="hidden" name="MAX_FILE_SIZE" value="$inimaxattach" />
                $vbphrase[regava_upload_avatar_from_computer]<br />
                <input type="file" class="bginput" name="upload" size="50" />
            </td>
        </tr>
    </if>
    <if condition="$show['maxnote']">
    <tr>
        <td>$maxnote</td>
    </tr>
    </if>
    </table>
</fieldset>
</if>

I checked this with different jpg pictures. All with bigger dimensions than the maximum avatar setting, but smaller than the maximum file size.

Adult SEO 10-27-2008 10:51 AM

I meant the latest product ;) It may have been updated recently.

I checked the plugins, and they make use of the same avatar upload system as used in vB 3.7.1.


All times are GMT. The time now is 03:12 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01219 seconds
  • Memory Usage 1,844KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete