Beiträge: 7.002
Themen: 4.703
Registriert seit: 06.12.2006
11.09.2014, 21:25
(Dieser Beitrag wurde zuletzt bearbeitet: 15.11.2024, 10:55 von MyBB.de Bot.)
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.
Beiträge: 7.002
Themen: 4.703
Registriert seit: 06.12.2006
Eine neue Version wurde veröffentlicht:
Profile Picture 1.1
Beiträge: 7.002
Themen: 4.703
Registriert seit: 06.12.2006
Eine neue Version wurde veröffentlicht:
Profile Picture 1.2
Beiträge: 7.002
Themen: 4.703
Registriert seit: 06.12.2006
Eine neue Version wurde veröffentlicht:
Profile Picture 1.3
Beiträge: 7.002
Themen: 4.703
Registriert seit: 06.12.2006
Eine neue Version wurde veröffentlicht:
Profile Picture 1.4
Beiträge: 7.002
Themen: 4.703
Registriert seit: 06.12.2006
Eine neue Version wurde veröffentlicht:
Profile Picture 1.5
Beiträge: 403
Themen: 30
Registriert seit: 26.07.2020
MyBB-Version: 1.8.38
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
Karin
Beiträge: 2.239
Themen: 33
Registriert seit: 25.05.2018
MyBB-Version: 1.8.38
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.
Beiträge: 403
Themen: 30
Registriert seit: 26.07.2020
MyBB-Version: 1.8.38
Hallo Schnapsnase!
Vielen lieben Dank für Deine Hilfe - es funktioniert
Danke und schönes Wochenende !
Karin