vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   saving picture... (https://vborg.vbsupport.ru/showthread.php?t=115645)

smiles 05-15-2006 10:37 AM

saving picture...
 
I am trying to make an avatar creator for the forum, but I am not sure how to make it so that once people make their avatar, that they can save it as their avatar, and have the image go right into the spot, without them having to do anything.
Also, how could I integrate the ushop system, so that they have to pay for the stuff they use?

hambil 05-16-2006 12:19 PM

The binary data and avatar info (user id, filename, size, width, etc...) have to be inserted into the customavatar table.

You don't have to do that manually - there is a data manager. Look at the if($_POST['do'] == 'updateavatar') code in profile.php. Of special interest is:

PHP Code:

// begin custom avatar code
            
require_once(DIR '/includes/class_upload.php');
            require_once(
DIR '/includes/class_image.php');

            
$upload = new vB_Upload_Userpic($vbulletin);

            
$upload->data =& datamanager_init('Userpic_Avatar'$vbulletinERRTYPE_STANDARD'userpic');
            
$upload->image =& vB_Image::fetch_library($vbulletin);
            
$upload->maxwidth $vbulletin->userinfo['permissions']['avatarmaxwidth'];
            
$upload->maxheight $vbulletin->userinfo['permissions']['avatarmaxheight'];
            
$upload->maxuploadsize $vbulletin->userinfo['permissions']['avatarmaxsize'];
            
$upload->allowanimation = ($vbulletin->userinfo['permissions']['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['cananimateavatar']) ? true false;

            if (!
$upload->process_upload($vbulletin->GPC['avatarurl']))
            {
                eval(
standard_error($upload->fetch_error()));
            } 


smiles 05-19-2006 07:38 AM

that doesn't help a whole lot. I basically know nothing about what I am doing, and I am just going from another boards version of an avatar maker.
I would be willing to pay quite a bit for some help in developing this...

hambil 05-19-2006 03:17 PM

PM me, I'm sure we can work something out. Actually, you might want to post in the Service forum.


All times are GMT. The time now is 04:56 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.01093 seconds
  • Memory Usage 1,725KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete