Jump to content

teraßyte

Clients
  • Posts

    33,392
  • Joined

  • Days Won

    47

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by teraßyte

  1. I was hoping that you implement this small change for 3.0.0 :( Actually I have already rewritten the function on my own just for fun lol static public function getCache( $keys ) { if ( is_string( $keys ) ) { if ( ! in_array( $keys, array_keys( self::$data_store ) ) ) { self::_loadCaches( array( $keys ) ); } return self::$data_store[ $keys ]; } elseif ( is_array( $keys ) && count( $keys ) ) { $toLoad = array(); foreach( $keys as $key ) { if ( ! in_array( $key, array_keys( self::$data_store ) ) ) { $toLoad[] = $key; } } self::_loadCaches( $toLoad ); return TRUE; } return FALSE; }
  2. No I can't, the global shoutbox is an Hook so I can't load the shoutbox coreVariables.php :)
  3. I am in the process of converting the global shoutbox and I've come across an issue with the caches. In IPB 2.3 was possible to use init_load_cache to load an array of caches at once but now in IPB 3 this is not possible anymore, the only way is to use $this->cache->getCache('cache_name') but in this way I need to use 3 different queries to load 3 caches. A quick solution would be to change the function _loadCache from private to public so everyone can access it or update the function getCache to support an array of caches.
  4. And then everyone will enable it and their DB will grown infinitely in size because people won't read the notice that the option uses a lot of DB space :P
  5. Then purchase a license, IP.Board is not a free software.
  6. You're not blind, there is no tool for that :P Make a copy of the files from the folder with ID 1 (same goes for CSS)
  7. Welcome in the IPB world so :P You also might want to logout and login again so your status here on the board is updated to active customer :)
  8. You can setup an image even in the language string editing the language string in ACP. Now with IPB3 language strings are meant to be edited in ACP without downloading the files in the cache with an FTP program :)
  9. I was saying exactly that :P Not a big problem for me as I don't run multi-language forums but I can see it be a problem for others.
  10. I have always wondered why Poll/Pinned/Moved prefixes are a setting in ACP :huh: This is bad for multi-language forum that cannot use a different word for each language, you might want to move those 3 lang strings in the lang files instead :whistle: EDIT: This is probably more a suggestion than a bug so I posted there, let me know if you want me to open a bug report on that :P
  11. hahaha, he got you there bfarber :P
  12. +1, give us the topic author back lol :P
  13. Always worked fine for me with FF 2 & 3
  14. I have noticed a files.xml in the xml directory while I was packing IP.Shoutbox Beta 1. Perhaps the "Permission Checker" could load those files.xml from each application and you can list there the folders that needs to be writable? :P
  15. Ah thanks that's explains why I never noticed it, I rarely use the support tab lol :rolleyes: Is there any way to add also CHMOD checks for our applications? Maybe adding an xml file in the xml folder for the application? I haven't checked the code yet but would be good if you can tell me :P
  16. Never noticed/used this tools :huh: Where is it located? I'll have a look in ACP right now O.
  17. I have noticed often that people get errors because of a wrong CHMOD when they move forums on another server or in similar situations. It would be a good idea to have a Tool in ACP to check if all the needed folders have a proper CHMOD.
  18. teraßyte

    LoFI folder?

    The lofi folder is there to redirect the old lofi links crawled by bots/spiders to the new links :)
  19. Actually the template plugin js_module allows to add only js file that have ips. as prefix. Of course us modders can add JS file naming them in this way but people would be confused and think that mod files instead are "official" IPB files. Would be great to have an option to specify to not add the ips. prefix, something like this code: {parse js_module="MY_JS_FILENAME" prefix="no"}
  20. Now that you mention it I have refreshed the CSS in my browser cache, those roll over are really nice :) Green dot for sub forums with new replies are there from some days instead :P Good job Rikki :thumbsup:
  21. Same here, thanks for adding it Rikki lol
×
×
  • Create New...