Jump to content

aXenDev

Members
  • Posts

    658
  • Joined

  • Days Won

    6

 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 aXenDev

  1. https://1shot2kill.pl/portal/inne/aleksandria-–-drugie-co-do-wielkości-miasto-egiptu-r233/ Forum is connected with @PawelCode account. At the bottom, I added graphics from Amazon S3.
  2. Hi, I transferred graphics to Amazon S3. Background tasks completed successfully, but not all graphics changed the URL. In Pages app, article graphics have an old URL. Is there a tool to rebuild graphics from records in the Pages database?
  3. Currently, I don't have much time to extend this functionality.
  4. Provide a link to the forum where this error is found.
  5. The next version is waiting for approval. One of the most important changes is the removal of support for IPS 4.5.
  6. You have this in header widgets container. Change its position to the main container.
  7. This isn't fault of the theme. I see this problem also on the default theme, but to a lesser extent. It is likely fault of the ads you have on the page or the pages template itself.
  8. A support topic for submitting suggestions and bugs.
  9. I know that, but it doesn't work anyway.
  10. Disabling the application does nothing, I have to uninstall it.
  11. When I want to copy group, I get the error: IPS\Db\Exception: Unknown column 'group_id' in 'field list' (1054)
  12. Hi, I have a problem with pagination in user profiles (Tabs). I create an application: I'll add a Profile named ProfileClassname.php in Extensions Its contents have not been changed, except for the render function to: /** * Display * * @return string */ public function render() { $table = new \IPS\Helpers\Table\Content('IPS\testpagination\TestPagination', $this->member->url()->setQueryString(array('tab' => 'node_testpagination_Profile'))); $table->rowsTemplate = array(\IPS\Theme::i()->getTemplate('profile', 'testpagination', 'front'), 'testpaginationRow'); $table->limit = 2; $table->noModerate = TRUE; return (string) $table; } I have created a testpaginationRow.phtml file with the contents: <ips:template parameters="$table, $headers, $rows" /> {{foreach $rows as $row}} test {{endforeach}} IPS\testpagination\TestPagination class content: <?php namespace IPS\testpagination; /* To prevent PHP errors (extending class does not exist) revealing path */ if (!\defined('\IPS\SUITE_UNIQUE_KEY')) { header((isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0') . ' 403 Forbidden'); exit; } class _TestPagination extends \IPS\Content\Item { /** * @brief Database Table */ public static $databaseTable = 'testpagination_members'; /** * @brief Application */ public static $application = 'testpagination'; /** * @brief Database Prefix */ public static $databasePrefix = 'testpagination_'; /** * @brief Database Column Map */ public static $databaseColumnMap = array( 'date' => 'date' ); } The effect is what I wanted: But when I change the page, nothing happens and console in the browser shows me an error: Ajax request failed (parsererror): SyntaxError: Unexpected token < in JSON at position 0 Here is test application: test pagination 1.0.0 (1).tar dev.zip
  13. The theme does not affect caching. Are there any errors in the browser console or in the AdminCP logs?
  14. Refresh cache by support in AdminCP. I guess your ad is misplaced.
×
×
  • Create New...