Jump to content

onlyME

Clients
  • Posts

    2,707
  • Joined

  • Days Won

    17

Reputation Activity

  1. Like
    onlyME reacted to Matt in will IC5 support PHP 8.3?   
    It does.
  2. Thanks
    onlyME reacted to Marc Stridgen in Third part hooks issues and can't uninstall the app   
    I see thats now sorted for you  🙂 
  3. Thanks
    onlyME reacted to Adriano Faria in Third part hooks issues and can't uninstall the app   
    You need to get the updated version: https://ipsappzone.com/file/1-chatbox/
    You better ask to @onlyME how to redeem your purchase key.
  4. Like
    onlyME reacted to teraßyte in [v5 REQUEST] Implement extension functions more consistently   
    Please keep the extension's behavior consistent across all the functions. Some extensions first check if the extension implements a certain function before calling it, while others expect the function to exist at all times and throw errors if they're missing.
     
    For example, the core/ModeratorPermissions currently has 4 functions available (preSave, getPermissions, onChange, onDelete) but only preSave checks if the function is available before calling it:
    /* Allow extensions an opportunity to inspect the values and make adjustments */ foreach ( \IPS\Application::allExtensions( 'core', 'ModeratorPermissions', FALSE ) as $k => $ext ) { if( method_exists( $ext, 'preSave' ) ) { $ext->preSave( $values ); } }  
    The other functions instead are called without any check:
    foreach ( \IPS\Application::allExtensions( 'core', 'ModeratorPermissions', FALSE, 'core' ) as $k => $ext ) { foreach( $ext->getPermissions( array() ) as $name => $data ) { // ... } } === foreach ( \IPS\Application::allExtensions( 'core', 'ModeratorPermissions', FALSE ) as $k => $ext ) { $ext->onChange( $current, $changed ); } === foreach ( \IPS\Application::allExtensions( 'core', 'ModeratorPermissions', FALSE ) as $k => $ext ) { $ext->onDelete( $current ); }  
    While I understand that getPermission() must be always implemented (the extension would have no meaning otherwise), the other 2 functions onChange() and onDelete() are completely optional and cause empty functions to be left around. For example, this code below comes from the Blog's extension:
    /** * After change * * @param array $moderator The moderator * @param array $changed Values that were changed * @return void */ public function onChange( $moderator, $changed ) { } /** * After delete * * @param array $moderator The moderator * @return void */ public function onDelete( $moderator ) { }
  5. Like
    onlyME reacted to Adriano Faria in Advanced Profile Privacy System   
    Gabriel, the app to redeem the keys was developed by me and it's available for those who want to use it. You won't find it on all contributors boards. A few are using it and they seem to be happy with it ( @DawPi @Nathan Explosion @onlyME ).
  6. Like
    onlyME got a reaction from ArashDev in Videobox   
    VideoBox is an application that allows sharing various video embed codes from Picasa, YouTube, Vimeo, Dailymotion, or MP4. The best choice to run your own Movies/TV Shows website.

    Features:
    2 display modes: Grid view & List view. Categories/subcategories. Custom fields for video's informations. Can choose Protect Fields that only display for logged members, or who liked the video. Quicksearch menu. Search videos by title, content, custom field, tags,... Video Collection system. Various widgets: top poster, top videos, random videos, featured videos in slider, collections in carousel,... Pages system: easy to add new page with custom content. Using Videojs to display video embed codes from Picasa, YouTube, Vimeo, Dailymotion. Support subtitles *.vtt extension (For MP4, Youtube, Picasa, Dailymotion, not Vimeo). Watermark on video player. Friendly URL. Comment system. Rating system. BUY IT NOW
  7. Thanks
    onlyME got a reaction from FM Graphics in Videobox   
    Hi,
    It doesn’t have this feature. You need to post video manually.
  8. Like
    onlyME reacted to SeNioR- in Buying new self hosted licence - how to choose few applications?   
    Thanks, Charles. This is a serious change that should be described on a blog or in a dedicated topic.
    For me and for many clients it is breaking news 😬
  9. Like
    onlyME reacted to Hisashi in Videobox   
    Suggestion
    Ability to schedule publication.
  10. Like
    onlyME reacted to Hisashi in Videobox   
    Suggestion
    If the content has many parts/episode the layout ends up being polluted with many buttons.

     
    Wouldn't it be possible to create an option for the administrator choose between buttons or dropdown?

  11. Like
    onlyME got a reaction from Hisashi in Videobox   
    It’s updated in 4.5.2
  12. Like
    onlyME reacted to Adriano Faria in 4.7.2.1 - disable app   
    My bad... the block changed its position:

     
    @Matt, it was fine a couple of days ago. Please don't say we'll have to go through every app again!
    😞
  13. Like
    onlyME got a reaction from Senior2323 in Videobox   
    ​You don't need to edit file, go to your ACP -> System -> Settings -> Advanced Configuration -> Friendly URLs
    At here you can edit your urls.
  14. Like
    onlyME got a reaction from Senior2323 in Videobox   
    I also think about this idea
  15. Like
    onlyME got a reaction from Senior2323 in Videobox   
    ​It supports Youtube, Daiymotion, Picasa, Vimeo, and MP4. And uses  Videojs for the player.
  16. Like
    onlyME got a reaction from Senior2323 in Videobox   
    <iframe src="//www.youtube.com/embed/https://www.youtube.com/watch?v=kcz0-woADvQ" frameborder="0" allowfullscreen></iframe> You used full url, the field only allows youtube ID
    kcz0-woADvQ 
  17. Like
    onlyME got a reaction from Senior2323 in Videobox   
    Can y
    I can not reproduce this issue. Can you give me url to test? 
  18. Like
    onlyME got a reaction from Senior2323 in Videobox   
    Hi,
    There is permission setting for who can watch video
  19. Like
    onlyME got a reaction from Senior2323 in Videobox   
    Sorry, I missunderstood The video in Video Info is a custom field that I call "trailer"
    Try to create a custom field:
    Type: Text
    Description: Enter youtube ID, Eg: teNcFh89H7o
    Format:
    <div class="video-container"> <iframe src="//www.youtube.com/embed/{content}" frameborder="0" allowfullscreen></iframe> </div> Save.
    When user gives it the youtube ID, it will show youtube player.
    (Remember edit your Catergories and choose that custom field to active it)
  20. Like
    onlyME got a reaction from Senior2323 in Videobox   
    Ok I will update it in the next version.
  21. Like
    onlyME got a reaction from Senior2323 in Videobox   
    ​If it has Online video, the tab will be displayed. Make sure you enabled "Show in Tab" (ACP ->Videobox -> Settings -> Watch Online)
  22. Like
    onlyME got a reaction from Senior2323 in Videobox   
    ​Yes, I'm using convert tool to convert str to vtt. That's a reason currently this app only supports *.vtt
  23. Like
    onlyME got a reaction from Senior2323 in Videobox   
    ​I tried but .str sometimes doesn't work fine on videojs, I'm still looking for a solution.
  24. Haha
    onlyME got a reaction from Senior2323 in Videobox   
    VideoBox is an application that allows sharing various video embed codes from Picasa, YouTube, Vimeo, Dailymotion, or MP4. The best choice to run your own Movies/TV Shows website.

    Features:
    2 display modes: Grid view & List view. Categories/subcategories. Custom fields for video's informations. Can choose Protect Fields that only display for logged members, or who liked the video. Quicksearch menu. Search videos by title, content, custom field, tags,... Video Collection system. Various widgets: top poster, top videos, random videos, featured videos in slider, collections in carousel,... Pages system: easy to add new page with custom content. Using Videojs to display video embed codes from Picasa, YouTube, Vimeo, Dailymotion. Support subtitles *.vtt extension (For MP4, Youtube, Picasa, Dailymotion, not Vimeo). Watermark on video player. Friendly URL. Comment system. Rating system. BUY IT NOW
  25. Like
    onlyME got a reaction from Hisashi in Videobox   
    I will update it.
×
×
  • Create New...