Jump to content

A Zayed

Clients
  • Posts

    900
  • Joined

  • Days Won

    3

 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 A Zayed

  1. Thanks Adriano, I used own custom table template rather than core admin templates...
  2. I'm using the core admin tables: <div data-role="tablePagination" class='ipsSpacer_bottom'> {template="pagination" group="global" app="core" location="global" params="$table->baseUrl, $table->pages, $table->page, $table->limit"} </div>
  3. I'm trying to show 2 tables in the same page, everything goes fine except for the pagination part, table reloads without changing contents... Even I use different paginationKey and different sortKey for both tables, but pagination is broken, is it a bug? or am I missing something? Code: /* First Table */ $table_1 = new \IPS\Helpers\Table\Db('first_table', \IPS\Request::i()->url(), array() ); $table_1->include = array( 'col1', 'col2', 'col3'); $table_1->mainColumn = 'col1'; $table_1->parsers = array( 'col2' => function ($val, $row) { return \IPS\DateTime::ts($val); } ); $table_1->sortBy = $table_1->sortBy ?: 'col2'; $table_1->sortDirection = $table_1->sortDirection ?: 'desc'; $table_1->limit = 5; $table_1->rowsTemplate = array( \IPS\Theme::i()->getTemplate( 'tables', 'core', 'admin' ), 'rows' ); $table_1->tableTemplate = array( \IPS\Theme::i()->getTemplate( 'tables', 'core', 'admin' ), 'table' ); $table_1->paginationKey = 'firstTablePage'; $table_1->resortKey = 'firstTableResort'; /* Second Table */ $table_2 = new \IPS\Helpers\Table\Db('second_table', \IPS\Request::i()->url(), array() ); $table_2->include = array( 'col1', 'col2', 'col3'); $table_2->mainColumn = 'col1'; $table_2->parsers = array( 'col2' => function ($val, $row) { return \IPS\DateTime::ts($val); } ); $table_2->sortBy = $table_2->sortBy ?: 'col2'; $table_2->sortDirection = $table_2->sortDirection ? : 'desc'; $table_2->limit = 5; $table_2->rowsTemplate = array( \IPS\Theme::i()->getTemplate( 'tables', 'core', 'admin' ), 'rows' ); $table_2->tableTemplate = array( \IPS\Theme::i()->getTemplate( 'tables', 'core', 'admin' ), 'table' ); $table_2->paginationKey = 'secondTablePage'; $table_2->resortKey = 'secondTableResort'; return \IPS\Theme::i()->getTemplate( 'tempGroup', 'temp' )->browse( (string) $table_1, (string) $table_2 );
  4. Font size issue should be fixed now
  5. Aha, got it... Will fix it in a while... It should be fixed now, please try the new version and feedback
  6. I couldn't reproduce this bug at any of my machines (Windows7, Windows10... FF & Chrome). Could you please share a website url that have this issue, also please mention what browser and what OS are you using.
  7. What's New in Version 1.4.7 Released Just now Performance Improvement: Removed gzipChecker function that may cause some issues with some urls in some servers. Content encoding is already handled by the IPS\Url
  8. Everything is going fine here... Looks like a server side problem, I can gladly support to find out what's wrong in there...
  9. Sorry, I couldn't reproduce this on my server: Please send the url you're trying to embed.
  10. Could you please check that option in your ACP, it seems you don't allow posting remote images, in this case, the images from remote urls will not show up
  11. What's new in version 1.4.6: Performance Improvement: Started using IPS\Http\Url that depends on Server Settings and IPS configuration will either use CURL or a Socket Connection as fallback instead of forced native CURL. This is mainly released to improve performance of the plugin by making it flexible to work according to server configuration after the recent bug report by @Nebthtet
  12. I can't reproduce this issue with the latest IPS version, If possible, please PM me with login details for ACP so that I can find the reason, may be some ACP setting is causing this.
  13. Well, I'm just back after vacation... Do you have a screenshot for the issue of image size? basically it should take the same dimensions of event cover, Just confirmed this on my localhost as well
  14. Well, in this case I'd ask for ACP login so that I'd investigate further... please PM me with ACP admin account.
  15. Already support eBay, but didn't check Amazon yet... I can't reproduce this on my local server, Also checked the same url on my server and it works: Do you have this issue with specific urls? or all urls? Can you double check one more time for the same url and feedback?
  16. What's New in Version 1.4.5 Released 1 minute ago Bug Fix, related to conflict with other plugins/apps that use the same hook area.
  17. Just tested the plugin with version 4.4.4 and issues detected. According to the change log, the hook area not touched in this version. I've to check if they support oEmbed, if not I'l try to find another work around.
  18. Thank you for your suggestion, Just added this as a feature in version 1.0.4, please check and feedback: https://invisioncommunity.com/files/file/8252-copyright-notice-on-copying/
  19. I really can't seem to reproduce this issue, I think there's conflict somewhere, If possible, could you PM with a list of plugins/apps you have?
  20. Hello; I couldn't reproduce this issue, by the way the plugin has the option to exclude urls from being auto embedded.
  21. Aha, yes this is due to the same reason of the 1st point... Content is posted as written content, not IFrame like default IPS content. Yes, I got what you mean, The plugin captures og:image, twitter:image, image meta names or properties... If none of them are found it skips it. This is better than capturing image randomly from the page.
  22. No, this is not possible at least in the current versions... I'd make a plan for this in the future. Could you please send me url sample? No, You already can move the block to whatever area inside the editor.
  23. I'm sorry for that, but I can't reproduce the problem... Could you please try unistalling then re-install the new version one more time. It should work for newly posted urls only
  24. This is not a plugin bug, the problem is that imageproxy is not serving images with signatures (for example: image.png?signature=abcdefgh) If you tried to post this image url (https://www.christforums.com/applications/core/interface/imageproxy/imageproxy.php?img=https://files.logoscdn.com/v1/files/3490000/content.ico?signature=kllyP4JcH1hAFE7qFTTfYfH_ZhU&key=59d81b3a6fb6ab1b3be5a45c1653eaf6878c6b314dd350cbb4e0f88375056020) in your website it will not get fetched in case you have imageproxy enabled, BTW I'll release a new version to avoid this situation and display a default icon image in case imageproxy is enabled.
×
×
  • Create New...