Jump to content

aXenDev

Friends
  • Joined

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. No, these are files sent to the server using CKEditor.
  3. 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?
  4. Currently, I don't have much time to extend this functionality.
  5. Provide a link to the forum where this error is found.
  6. The next version is waiting for approval. One of the most important changes is the removal of support for IPS 4.5.
  7. Not yet, I'm working on it.
  8. You have this in header widgets container. Change its position to the main container.
  9. 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.
  10. Same on the default theme?
  11. A support topic for submitting suggestions and bugs.
  12. @WEBTH The error is on your translation side.
  13. aXenDev replied to Michael.J's post in a topic in Marketplace
    I know that, but it doesn't work anyway.
  14. aXenDev replied to Michael.J's post in a topic in Marketplace
    Disabling the application does nothing, I have to uninstall it.
  15. aXenDev replied to Michael.J's post in a topic in Marketplace
    When I want to copy group, I get the error: IPS\Db\Exception: Unknown column 'group_id' in 'field list' (1054)
  16. 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
  17. These are not theme errors, but the videos app.
  18. The theme does not affect caching. Are there any errors in the browser console or in the AdminCP logs?
  19. Refresh cache by support in AdminCP. I guess your ad is misplaced.