Jump to content
DevFuse Forums

terabyte

Members
  • Posts

    34
  • Joined

  • Days Won

    1

Posts posted by terabyte

  1. Since you're posting here I suspect you're using a warez version of it :huh:

     

     

    "(T31) Hide Content" is a paid modification and I don't support it on third party sites (so PMing me here won't help), if you require support please post on my forum logging with your customer account if you have one otherwise purchase it first.

  2. I'm waiting also some minor mods and 2 big mods, I am the author of one of the 2 big mods so until I complete it I won't upgrade for sure :lol:

     

    Waiting. Still need some stuff worked out before we can upgrade. Mainly Tutorials and a ticket system, and two/three personal/unique apps.

    [...]

    Same here :P

     

    Btw the tickets system is coming soon ;)

  3. Find it a little odd that many of the free mods are being converted before Premium ones that people have paid for support and upgrades with. Any timescale when these will be completed?

    From another point of view releasing first some free mods is a way for us modders to test & improve our coding skills based on the new IPB 3 framework and with more experience there will be less bugs later working on a paid modification :)

  4. I've searched a bit but with encoded version was unable to find the new names of the following functions

     

    $this->ipsclass->DB->table_exists and field_exists, I've tried $this->DB->tableExists, TableExists etc.., but none of them seems to work.

     

    I've also been searching for the new name of the old api_topics_and_posts.php create_new_topic function. I'm assuming it's the admin/applications/forums/sources/classes/post/classPost.php file, but can't be sure with an encoded version.

    Here you go:

    $this->ipsclass->DB->table_exists => $this->DB->checkForTable( $table );

    $this->ipsclass->DB->field_exists => $this->DB->checkForField( $field, $table );

     

    API instead are not needed anymore, if you want to create a topic you have to include directly classPost:

    		require_once( IPSLib::getAppDir('forums') . '/sources/classes/post/classPost.php' );
    	$this->classPost		=  new classPost( $this->registry );

    I can give you the code to create a new topic, but you won't understand exactly how it works having an encoded file.. better to wait for the unencoded version in my opinion :)

  5. Yeah I don't plan on mass upgrading my mods until at least RC. But I'm glad they've added the application installer in beta 2, should be able to get more upgrading done now. They just need to add more hook access points now.

    Actually I haven't even installed/downloaded Beta 2 :P

     

    I'm still using an old build (let's call it Beta 1.5 xD) to develop, the app installer is already working on my build but they still need to work on it.

    For example the uninstallation process doesn't delete DB data installed, I haven't tried it on Beta 2 but I read that it is still a problem :o

  6. I am waiting for 3.0.0 come out beta before start upgrading my mods as i know what IPS like alway making code changes when its in beta

    Yup, I'm waiting at least Beta 2 or 3 to start upgrading my mods.

     

    Seeing how much are the changes between the 2 beta I might wait for the first RC as well :unsure:

×
×
  • Create New...