Recent content by Bugfix

  1. Bugfix

    Fixed Additional Index for deleting

    thank you for adding this to the release!
  2. Bugfix

    Fixed Additional Index for deleting

    Hello, I don't know if it should be in bugreports or suggestions - but: We had big problems while deleting medias in XFMG. This took 1-2 minutes and resulted in server-errors: After some digging we found out that the problem is this SQL: SELECT * FROM xengallery_comment WHERE rating_id =...
  3. Bugfix

    copy: failed to open stream: No such file or directory

    Hello Chris D, thank you for your answer. Here you go: XF 1.5.9 (+Patch xf_patch_1510), XFMG 1.1.8 Since the error always occures when uploading/saving new media, it is always a other filename - a new filename. The file does NOT exist actually. It appears to be random - I cannot reproduce...
  4. Bugfix

    copy: failed to open stream: No such file or directory

    Hello! We often get this error in our server-errors: Code: $success = copy($internalDataPath, $originalPath); Is it possible to add also a file_exists check for $internalDataPath and not only for $watermarkPath? Best regards Harald
  5. Bugfix

    Fixed User ignore limimit (Server-Error XenGallery/Model/Media.php)

    Sorry - I can't answer it. I do not know a way of doing this without adding it one by one - so I assume this was the way.
  6. Bugfix

    Fixed User ignore limimit (Server-Error XenGallery/Model/Media.php)

    Thank you for the info. I really do not know why or how this user did this - just wanted to tell you, because even if it's not reasonable - it's still a bug :p Limiting this feature is of course the best solution!
  7. Bugfix

    Fixed User ignore limimit (Server-Error XenGallery/Model/Media.php)

    Hello, we have this problem: array_key_exists() expects parameter 2 to be array, boolean given - library/XenGallery/Model/Media.php:1068 The reason for this is a user with about 2500 ignores in his ignore list. The field "ignored" in table "xf_user_profile" cannot hold the whole data and...
  8. Bugfix

    Fixed Wrong use of quote in getUsersByIds

    Can you tell me a quickfix for this? These SQLs run up to 1min when there are many users online and slow down the website :cry:
  9. Bugfix

    Fixed Wrong use of quote in getUsersByIds

    here is the output from the "problem-call"...
  10. Bugfix

    Fixed Wrong use of quote in getUsersByIds

    I found a little "bug" in my understanding: print_r does not show the datatype: $string = (string)"12345"; $integer = (int)67890; $arr[0] = $string; $arr[1] = $integer; echo '<pre>'; print_r($arr); echo '</pre>'; var_dump($string); var_dump($integer); Array (...
  11. Bugfix

    Fixed Wrong use of quote in getUsersByIds

    What I ment is this: Even if the SQL is created with a mixed userid-string, the incoming user-id-array is CORRECT! I added this code to the function: $sql = 'SELECT user.* ' . $joinOptions['selectFields'] . ' FROM xf_user AS user ' ...
  12. Bugfix

    Fixed Wrong use of quote in getUsersByIds

    This is true - i can see it. Problem is the generated SQL - not the incoming array. I will search for this. That is true. That was the slow query log of the mysql-server.
  13. Bugfix

    Fixed Wrong use of quote in getUsersByIds

    But in XenForo_ControllerPublic_Member there is a call in line 1501: $users = $userModel->getUsersByIds($userIds, array( 'join' => XenForo_Model_User::FETCH_USER_PRIVACY )); How do I get this?
  14. Bugfix

    CTA Featured Threads & Portal [Paid]

    Sure. And it was possible to add it one time - so I think it cannot be a permission issue? Maximum threads in options is 20. They are all "green". But I will recheck them.
  15. Bugfix

    CTA Featured Threads & Portal [Paid]

    Thank you for the hint! No - also in the thread-options dropdown there is no feature link. I only have: /edit /poll/add /delete /move /reply-bans /moderator-actions I will try to search for this. Thank you!
Top Bottom