Jump to content

onlyME

Clients
  • Posts

    2,721
  • Joined

  • Days Won

    17

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by onlyME

  1. I tested by refreshing page, and I didn't see the problem. The background shows fast. But sometimes I have this issue when browsing your site
  2. The slider included inside $( document ).ready() so it will only run once the page is ready for javascript. But it was hidden by css opacity = 0, when all images loaded done it will set opacity = 1 to display to prevent the overflow images issue. Maybe your sliders has a lot of images, and the images have large file size so it's slow to show.
  3. onlyME

    Videobox

    It's just uploading and playing video file.
  4. onlyME

    Videobox

    I don't have a way to handle video length. But there is a setting to limit file size on upload. And you can setup the File Storage on local, ftp or Amazon..
  5. Try to go members > administrators to check the restrictions of your admin account .
  6. It's in ACP > Customization > Featured Content
  7. 1. You can use $topic->tthumb_show() 2. For old topics, you need to run rebuild tool for once after installation the plugin. For new topic if you don't set a thumb when posting, it will get the first image in post automatically.
  8. onlyME

    Videobox

    Please let me know the real url I will test it.
  9. onlyME

    Videobox

    Yes, they changed the url. I will update getting dailymotion's thumbnail in the next version.
  10. I see there is a js error Try to disable the plugin that is related to adBlock
  11. Hi, please give me the url so I can see the problem.
  12. Not sure but I will consider.
  13. It has been fixed by removing this custom css .bx-wrapper .bx-viewport { height: 100% !important; }
  14. It's only in the SQL, and unaffected to the current version. You can delete by running this query: DROP TABLE fcontent; DROP TABLE fcontent_slideshow;
  15. Try to go ACP > System > Support > You will see 'SQL Toolbox' in 'System Information' block. There are 2 old tables of V3 version you can drop them: fcontent & fcontent_slideshow
  16. You should uninstall Featured Content in IPB 3.4.9 first, upgrade IPS 4.1.x and then install new Featured Content. Edit: I missunderstood Do you want to pure the old database of V3 version?
  17. Check your pm, I sent you a file to fix.
  18. There is a known issue with the slider. It can not be shown if it has 1 or more broken images. See it https://www.vr6oc.com/forum/applications/core/interface/imageproxy/imageproxy.php?img=http:/uploads.tapatalk-cdn.com/20160914/47a98f4b98da05b8b253087d0d40be8c.jpg&key=20515b650b26ac5f99a2383703f6cc859e539d01021d68599a81b8afca952199 img=http:/uploads It should be img=http://
  19. Ok, I will test this problem.
  20. Do you still have the blank page when editting topics?
  21. This bug is also fixed. Which version are you using? How about the editing the post get a "1" error on a blank page?
  22. Please let me know the url.
  23. Try to edit your topic, the problem is fixed. Try to go Topic Thumbnail settings and run rebuild thumbnails.
  24. Can you give me ACP access so I can take a look?
  25. Try to open \applications\featuredcontent\widgets\fcontentWidget.php Find $form->add( new \IPS\Helpers\Form\Select( 'sliderID_to_show', isset( $this->configuration['sliderID_to_show'] ) ? $this->configuration['sliderID_to_show'] : 0, TRUE, array( 'options' => $options, 'parse' => 'normal' ) ) ); Replace by $form->add( new \IPS\Helpers\Form\Select( 'sliderID_to_show', isset( $this->configuration['sliderID_to_show'] ) ? intval( $this->configuration['sliderID_to_show'] ) : 0, TRUE, array( 'options' => $options, 'parse' => 'normal' ) ) ); Save I see the issue slider can not be shown because all images have dead links. Try to use this cimage version https://invisionpower.com/applications/core/interface/file/attachment.php?id=71715 Or config your cimage to allow external url.
×
×
  • Create New...