Recent content by Nickolas

  1. Nickolas

    Implemented Url Romanization

    Sorry for my english. XenForo has a feature about this. But as I looked there is no way to default using. The following code: XenForo/Link.php public static function buildIntegerAndTitleUrlComponent($integer, $title = '', $romanize = false) Could you please that the third parameter...
  2. Nickolas

    Fixed Non-English letters are not lowercasing in URLs.

    well yes... That solution not work for every language. But works for Turkish Language... That 's why, I wrote that code.
  3. Nickolas

    Fixed Non-English letters are not lowercasing in URLs.

    You can modify the UTF-8 Library accent array. Create a plugin and try following code... global $UTF8_LOWER_ACCENTS, $UTF8_UPPER_ACCENTS; $UTF8_LOWER_ACCENTS = array_merge($UTF8_LOWER_ACCENTS, array( 'ı' => 'i', 'ü' => 'u', 'ö' => 'o'...
  4. Nickolas

    PHP Reference Bug?

    I have found out that when we run this code the result is below (Result B). But expected result should be Result A: Array ( [0] => Test [1] => Tested [2] => Test ) Array ( [0] => Test 1 [1] => Tested [2] => Test 1 ) I believe that this is pointer/reference related...
  5. Nickolas

    Fixed  Attachment Model Bug

    okay, I think i find a bug... I just examining the code and i found this... Model/Attachment.php I think the correct line is...
  6. Nickolas

    Which PHP IDE? / What do you use to code?

    well... I have AMD X6 Phenom II 3.2 Ghz CPU and 8 GB RAM... I never feel that :)
  7. Nickolas

    As designed  Text Split BBCode Problem

    Well the pictures better explain than me :)
  8. Nickolas

    Small Artifact on 'Update Your Status'

    Yes... I can confirm that on windows 7 and Google Chrome
  9. Nickolas

    Show Us your XF!

    well this is the test site too... http://www.hyperspace.gen.tr
  10. Nickolas

    Is there a better way than DOMDocument?

    yes there is... writing your own class :) It takes 20 minutes. Then? You 'll be glad:)
  11. Nickolas

    for Turkish speaking people / Aramizda Türk Yok mu beyler?

    http://xenforo.com/community/threads/redirect-modifications-on-language-translations.7341/ Bu başlığa bir arkadaş bakabilir mi? İngilizceye çevirirse sevinirim
  12. Nickolas

    Redirect modifications on Language Translations

    My english not so good. But translation of this thread coming soon. -- İngilizcem çok iyi değil o yüzden gerekli açıklamaları ve değişiklikleri buraya Türkçe yazacağım. Türk arkadaşlardan biri bu konuda yardımcı olursa sevinirim. Bilindiği üzere, Çeviri yaparken sözcük listesinde, bir sözcüğü...
  13. Nickolas

    Fixed  Beta 2 Installation on Windows Apache 2

    Sorry for my english. Well.. There is a encoding problem. The picture can explain better than me. I temporarily fix this on XenForo/Application.php public static function gzipContentIfSupported(&$content) { return array(); if (!function_exists('gzencode') ||...
  14. Nickolas

    Fixed  Server Error while install?

    well I just downloaded beta and I 'm getting this errors: Notice: ob_end_clean() [ref.outcontrol]: failed to delete buffer zlib output compression. in D:\www\xen\library\XenForo\Application.php on line 139 Notice: ob_end_clean() [ref.outcontrol]: failed to delete buffer zlib output...
Back
Top Bottom