MyBB.de Forum
Profile Picture - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: Profile Picture (/thread-30462.html)



Profile Picture - MyBB.de Bot - 11.09.2014

Eine neue Erweiterung wurde veröffentlicht: Profile Picture

Zitat:Allows your users to upload a picture to display in their profile.

Features include usergroup-based permissions to control which usergroups can use profile pictures, which can upload them, the maximum file size and the maximum dimensions. Also included is the ability for moderators to remove a user's profile picture from the Mod CP profile editor.

The settings for this plugin are located under the 'Profile Picture Settings' added at the bottom of the settings page. The usergroup permission are located at the bottom section of the 'Miscellaneous' tab when editing a usergroup.

This plugin offers full language support.



RE: Profile Picture - MyBB.de Bot - 01.06.2015

Eine neue Version wurde veröffentlicht: Profile Picture 1.1


RE: Profile Picture - MyBB.de Bot - 22.03.2016

Eine neue Version wurde veröffentlicht: Profile Picture 1.2


RE: Profile Picture - MyBB.de Bot - 14.04.2017

Eine neue Version wurde veröffentlicht: Profile Picture 1.3


RE: Profile Picture - MyBB.de Bot - 28.06.2021

Eine neue Version wurde veröffentlicht: Profile Picture 1.4


RE: Profile Picture - MyBB.de Bot - 19.05.2024

Eine neue Version wurde veröffentlicht: Profile Picture 1.5


RE: Profile Picture - KarinB - 12.09.2024

Hallo, wieder mal !

Hab das Plugin installiert, funktioniert - aber bekomme folgende Warnung: 

PHP-Code:
<error>
    <
dateline>1726144925</dateline>
    <
script>inc/plugins/profilepic.php</script>
    <
line>575</line>
    <
type>2</type>
    <
friendly_type>Warning</friendly_type>
    <
message>Undefined array key "profilepictype"</message>
    <
back_trace>#0  errorHandler->error() called at [/inc/class_error.php:153]
#1  errorHandler->error_callback() called at [/inc/plugins/profilepic.php:575]
#2  profilepic_header() called at [/inc/class_plugins.php:142]
#3  pluginSystem->run_hooks() called at [/global.php:498]
#4  require_once() called at [/member.php:30]
</back_trace>
</
error


Bitte um Hilfe und vielen Dank im voraus  Wink 
Karin


RE: Profile Picture - Schnapsnase - 13.09.2024

Hallo Karin,

du kannst ja mal folgendes versuchen:
In /inc/plugins/profilepic.php Zeile 575
PHP-Code:
if(($mybb->user['profilepictype'] === 'remote' || $mybb->user['profilepictype'] === 'gravatar') && !$mybb->settings['allowremoteprofilepictures']) 

ändern in:
PHP-Code:
if(isset($mybb->user['profilepictype']) && ($mybb->user['profilepictype'] === 'remote' || $mybb->user['profilepictype'] === 'gravatar') && !$mybb->settings['allowremoteprofilepictures']) 

Vllt war´s das schon. Wink


RE: Profile Picture - KarinB - 13.09.2024

Hallo Schnapsnase!

Vielen lieben Dank für Deine Hilfe - es funktioniert  Smile

Danke und schönes Wochenende !

Karin