Stormtribe Development
Forum Replies Created
-
Forum: Plugins
In reply to: [Asgaros Forum] BUG, last post spacingAha, didn’t think about that, we have based our asgaros theme/skin on an older version. So our designer will have to merge the changes.
Cheers!
Forum: Plugins
In reply to: [Asgaros Forum] Display image uploadsThanks for your support and thanks for the code. 🙂
Forum: Plugins
In reply to: [Advanced Browser Check] Not working with Safari 7.1?Same thing for Chrome v38.
browser_name: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36
browser_name_regex: ^mozilla/5\.0 \(.*linux x86_64.*\) applewebkit/.* \(khtml, like gecko\).*chrome/.*safari/.*$
browser_name_pattern: Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*
Parent: Chrome Generic
Platform: Linux
Browser: Chrome
Frames: 1
IFrames: 1
Tables: 1
Cookies: 1
JavaScript: 1
JavaApplets: 1
CssVersion: 1
Comment: DefaultProperties
Version: 0.0
MajorVer: 0
MinorVer: 0
Platform_Version: unknown
Alpha:
Beta:
Win16:
Win32:
Win64:
BackgroundSounds:
VBScript:
ActiveXControls:
isMobileDevice:
isTablet:
isSyndicationReader:
Crawler:
AolVersion: 0Forum: Plugins
In reply to: [Basic User Avatars] 500 Internal Server Error with bbPressFind that this plugin could casuse the internal server error while trying to edit some posts.
Found the problem thou.Around line 145 in init.php replace:
$avatar_full_path = str_replace( $upload_path['baseurl'], $upload_path['basedir'], $local_avatars['full'] ) );With:
$path_parts = pathinfo($local_avatars['full']); $avatar_full_path = $upload_path['basedir'].$upload_path['subdir'].'/'.$path_parts['basename'];The problem at our server was that the url never got replaced with server path. Probably because url in user meta was saved with http. And our upload url is httpS. SSL.
Had the same error. By turning off magic quotes in php.ini and be sure that the files you import in phpmyadmin is in utf-8, if you choose utf-8 in phpmyadmin.