Uploading user profile images only in SIGMA theme takes place, other themes (BENDER, BETA) fail. While it says the upload was successful, the image is not uploaded to the user's profile.
Tested with Osclass V 8.2.0 in BENTER and BETA theme.
I placed in the file user-profile.php this code:
<?php if(osc_profile_img_users_enabled()) { ?>
<div class="control-group">
<label class="control-label" for="name"><?php _e('Picture', 'sigma'); ?></label>
<div class="controls">
<div class="user-img">
<div class="img-preview">
<img src="<?php echo osc_user_profile_img_url(osc_logged_user_id()); ?>" alt="<?php echo osc_esc_html(osc_logged_user_name()); ?>"/>
</div>
</div>
<div class="user-img-button">
<?php UserForm::upload_profile_img(); ?>
</div>
</div>
</div>
<?php } ?>
[b]The code then looks like this: [/b]
<?php
$locales = __get('locales');
$user = osc_user();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="<?php echo str_replace('_', '-', osc_current_user_locale()); ?>">
<head>
<?php osc_current_web_theme_path('head.php') ; ?>
<meta name="robots" content="noindex, nofollow" />
<meta name="googlebot" content="noindex, nofollow" />
</head>
<body id="body-user-profile" class="body-ua">
<?php osc_current_web_theme_path('header.php') ; ?>
<div class="inside user_account">
<div class="user-menu-wrap">
<div class="user-button isMobile">
<div class="lns"><span class="ln ln1"></span><span class="ln ln2"></span><span class="ln ln3"></span></div>
<span><?php _e('Menu', 'beta'); ?></span>
<i class="fa fa-angle-down"></i>
</div>
<div id="user-menu" class="sc-block">
<?php echo bet_user_menu(); ?>
<?php if(function_exists('profile_picture_upload')) { profile_picture_upload(); } ?>
</div>
</div>
<div id="main" class="profile">
<div class="inside">
<div class="box">
<h1><?php _e('My profile', 'beta'); ?></h1>
<form action="<?php echo osc_base_url(true); ?>" method="post">
<input type="hidden" name="page" value="user" />
<input type="hidden" name="action" value="profile_post" />
<div id="left-user" class="line">
<div class="row">
<label for="name"><span><?php _e('Name', 'beta'); ?></span><span class="req">*</span></label>
<div class="input-box"><?php UserForm::name_text(osc_user()); ?></div>
<?php if(function_exists('profile_picture_show')) { ?>
<a href="#" class="update-avatar"><?php _e('Update avatar', 'beta'); ?></a>
<?php } ?>
</div>
<?php if(osc_profile_img_users_enabled()) { ?>
<div class="control-group">
<label class="control-label" for="name"><?php _e('Picture', 'sigma'); ?></label>
<div class="controls">
<div class="user-img">
<div class="img-preview">
<img src="<?php echo osc_user_profile_img_url(osc_logged_user_id()); ?>" alt="<?php echo osc_esc_html(osc_logged_user_name()); ?>"/>
</div>
</div>
<div class="user-img-button">
<?php UserForm::upload_profile_img(); ?>
</div>
</div>
</div>
<?php } ?>
<div class="row">
<label for="email"><span><?php _e('E-mail', 'beta'); ?></span></label>
<span class="update current_email">
<span><?php echo osc_user_email(); ?></span>
</span>
</div>
<div class="row">
<label for="phoneMobile"><span><?php _e('Mobile phone', 'beta'); ?></span><span class="req">*</span></label>
<div class="input-box"><?php UserForm::mobile_text(osc_user()); ?></div>
</div>
<div class="row">
<label for="phoneLand"><?php _e('Land Phone', 'beta'); ?></label>
<div class="input-box"><?php UserForm::phone_land_text(osc_user()); ?></div>
</div>
<div class="row">
<label for="info"><?php _e('About you', 'beta'); ?></label>
<?php UserForm::multilanguage_info($locales, osc_user()); ?>
</div>
</div>
<div id="right-user" class="line">
<div class="row">
<input type="hidden" name="countryId" id="countryId" class="sCountry" value="<?php echo $user['fk_c_country_code']; ?>"/>
<input type="hidden" name="regionId" id="regionId" class="sRegion" value="<?php echo $user['fk_i_region_id']; ?>"/>
<input type="hidden" name="cityId" id="cityId" class="sCity" value="<?php echo $user['fk_i_city_id']; ?>"/>
<label for="term"><?php _e('Location', 'beta'); ?></label>
<div id="location-picker" class="loc-picker ctr-<?php echo (bet_count_countries() == 1 ? 'one' : 'more'); ?>">
<input type="text" name="term2" id="term2" class="term2" placeholder="<?php _e('Location', 'beta'); ?>" value="<?php echo bet_get_term(Params::getParam('term'), bet_ajax_country(), bet_ajax_region(), bet_ajax_city()); ?>" autocomplete="off"/>
<i class="fa fa-angle-down"></i>
<div class="shower-wrap">
<div class="shower" id="shower">
<?php echo bet_locbox_short($prepare['i_country'], $prepare['i_region'], $prepare['i_city']); ?>
<a href="#" class="btn btn-primary mbBg loc-confirm isMobile"><i class="fa fa-check"></i></a>
<div class="button-wrap isTablet isDesktop">
<a href="#" class="btn btn-primary mbBg loc-confirm"><?php _e('Continue', 'beta'); ?></a>
</div>
</div>
</div>
<div class="loader"></div>
</div>
</div>
<div class="row">
<label for="cityArea"><?php _e('City Area', 'beta'); ?></label>
<div class="input-box"><?php UserForm::city_area_text(osc_user()); ?></div>
</div>
<div class="row">
<label for="address"><?php _e('Street', 'beta'); ?></label>
<div class="input-box"><?php UserForm::address_text(osc_user()); ?></div>
</div>
<div class="row">
<label for="address"><?php _e('ZIP', 'beta'); ?></label>
<div class="input-box"><?php UserForm::zip_text(osc_user()); ?></div>
</div>
<div class="row">
<label for="user_type"><?php _e('User type', 'beta'); ?></label>
<div class="input-box"><?php UserForm::is_company_select(osc_user()); ?></div>
</div>
<div class="row">
<label for="webSite"><?php _e('Website', 'beta'); ?></label>
<div class="input-box"><?php UserForm::website_text(osc_user()); ?></div>
</div>
<?php osc_run_hook('user_form'); ?>
<div class="row user-buttons">
<button type="submit" class="btn btn-primary mbBg"><?php _e('Save changes', 'beta'); ?></button>
</div>
</div>
</form>
</div>
<!-- CHANGE EMAIL FORM -->
<div class="box second">
<h3 class="tblock"><?php _e('Change email', 'beta'); ?></h3>
<form action="<?php echo osc_base_url(true); ?>" method="post" id="user_email_change" class="user-change" style="display:none;">
<?php if(bet_is_demo()) { ?>
<input type="hidden" name="page" value="user" />
<input type="hidden" name="action" value="change_email_post" />
<?php } ?>
<div class="row">
<label for="email"><?php _e('Current e-mail', 'beta'); ?></label>
<span class="bold current_email"><?php echo osc_logged_user_email(); ?></span>
</div>
<div class="row">
<label for="new_email"><?php _e('New e-mail', 'beta'); ?> *</label>
<div class="input-box"><input type="text" name="new_email" id="new_email" value="" /></div>
</div>
<div class="row user-buttons">
<?php if(bet_is_demo()) { ?>
<a class="btn mbBg disabled" onclick="return false;" title="<?php echo osc_esc_html(__('You cannot do this on demo site', 'beta')); ?>"><?php _e('Change email', 'beta'); ?></a>
<?php } else { ?>
<button type="submit" class="btn mbBg"><?php _e('Change email', 'beta'); ?></button>
<?php } ?>
</div>
</form>
</div>
<!-- CHANGE PASSWORD FORM -->
<div class="box third">
<h3 class="tblock"><?php _e('Change password', 'beta'); ?></h3>
<form action="<?php echo osc_base_url(true); ?>" method="post" id="user_password_change" class="user-change" style="display:none;">
<?php if(!bet_is_demo()) { ?>
<input type="hidden" name="page" value="user" />
<input type="hidden" name="action" value="change_password_post" />
<?php } ?>
<div class="row">
<label for="password"><?php _e('Current password', 'beta'); ?> *</label>
<div class="input-box"><input type="password" name="password" id="password" value="" /></div>
</div>
<div class="row">
<label for="new_password"><?php _e('New password', 'beta'); ?> *</label>
<div class="input-box"><input type="password" name="new_password" id="new_password" value="" /></div>
</div>
<div class="row">
<label for="new_password2"><?php _e('Repeat new password', 'beta'); ?> *</label>
<div class="input-box"><input type="password" name="new_password2" id="new_password2" value="" /></div>
</div>
<div class="row user-buttons">
<?php if(bet_is_demo()) { ?>
<a class="btn mbBg disabled" onclick="return false;" title="<?php echo osc_esc_html(__('You cannot do this on demo site', 'beta')); ?>"><?php _e('Change password', 'beta'); ?></a>
<?php } else { ?>
<button type="submit" class="btn mbBg"><?php _e('Change password', 'beta'); ?></button>
<?php } ?>
</div>
</form>
</div>
</div>
<?php if(!bet_is_demo()) { ?>
<a class="btn-remove-account btn" href="<?php echo osc_base_url(true).'?page=user&action=delete&id='.osc_user_id().'&secret='.$user['s_secret']; ?>" onclick="return confirm('<?php echo osc_esc_js(__('Are you sure you want to delete your account? This action cannot be undone', 'beta')); ?>?')"><span><?php _e('Delete account', 'beta'); ?></span></a>
<?php } ?>
</div>
</div>
<?php
$locale = osc_get_current_user_locale();
$locale_code = $locale['pk_c_code'];
$locale_name = $locale['s_name'];
?>
<script>
$(document).ready(function() {
// Unify selected locale
function betUserLocCheck() {
if($('.tabbernav li').length) {
var localeText = "<?php echo trim(osc_esc_html($locale_name)); ?>";
$('.tabbernav > li > a:contains("' + localeText+ '")').click();
clearInterval(checkTimer);
return;
}
}
var checkTimer = setInterval(betUserLocCheck, 150);
});
</script>
<?php osc_current_web_theme_path('footer.php'); ?>
</body>
</html>