Jump to content

Askancy

Members
  • Posts

    221
  • Joined

  • Last visited

  • Days Won

    1

 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 Askancy

  1. How many images do you try to upload together? This also happens to me when I try to upload many images all at once, especially if they have a "major" size. This is precisely why I upload about 10 images at a time, not more.... Obviously depending on the size.
  2. As Daniel said, that hash indicates that the user is not logged in. Check cookies if the cookie is saved correctly. I did the integration years ago so I don't remember precisely, but you will see on the IP.Board constants.php file you have to indicate the Cookie Domain and the path, here is my configuration: \define( 'COOKIE_DOMAIN', 'MainDomin.ext' ); \define( 'COOKIE_PATH', '/' ); Because otherwise IP.Board cookies will be only for the subdomain
  3. I for my project with Laravel 9 decided to use the user management of IP.Board, the user logs in from the forum and has full access also to the portal in Laravel, like commenting articles. To make Laravel communicate with IP.Board just call the file init.php in AppServiceProvider.php class AppServiceProvider extends ServiceProvider { public function register() { // } public function boot() { $path = base_path('../forum.***.ext/'); require_once $path . 'init.php'; view()->composer('*', function ($view) { \IPS\Session\Front::i(); }); To get user data on a laravel blade I use: {{\IPS\Member::loggedIn()->name}} I hope this can be a starting point to help you develop what you want.
  4. Askancy

    Private Topics

    And how does this differ from PM?
  5. If I have a topic on XenForo with the url: https://forum.tdl/threads/test.414 I would expect that after the conversion, if one clicks on that link, one is taken to the new IP.Board link, instead an error is displayed.
  6. I converted a community from XenForo to IP.Board, the converter worked great, too bad it doesn't generate a redirect system and so the indexing of XenForo is lost....
  7. I'll start by saying that I don't have Commerce installed as an app on my board. I believe that in user history, using the term customer is incorrect, and it is more correct to use member/user. key string: customer_no_history
  8. It would be nice that when one writes a post, to the side or below it loads in ajax the similar content based on the thread title, similar to what happens on Stackoverflow. This feature would have made Sonya find a discussion similar to the one she was posting already at creation, and not just later through the side widget...
  9. I was reading a topic here on support, and I saw that in the similar content widget, I get a content pending approval. I believe the content pending approval: They should NEVER appear in similar content They should NEVER appear to users, maybe only moderators and administrators. Clicking on the result I get the error: "We could not find that topic", rightly so... Even as a visitor with incognito browsing, if you want the reference topic:
  10. All products from themes to applications can add copyright, except translations. All other products from XenForo, vBulletin, phpBB etc provide a string to insert the copyright of the translation, it would be nice if IP.Board also thought about the translators every now and then... Also you have the tool that shows the differences in themes from version to version, why not do something for the translation system as well?
  11. It appears that $ is not an officially supported entity: https://entitycode.com/#currency-content https://www.w3.org/TR/html4/sgml/entities.html
  12. I ask one thing though, you have created the "Theme Differences" tool, because your team does not develop something similar for the language strings as well? I use github to do this and upload .xml files, however, it's not a convenient thing....
  13. I was trying the function import member list from CSV file (downloaded from a community for testing). On First row is header, I leave the option selected How come even though I said the first row is the header, he takes the whole header as a single column? I attach the CSV file that IP.Board has generated for me. Utenti(2).csv
  14. Hi Mark, thankfully yes, otherwise my fee to pay for AWS S3 would have skyrocketed.... 😂 I used a drastic measure, clean the background actions thing table from the database. Definitely not the best choice to make, but luckily I had just changed php version to the server and cronjob hadn't started migrating data yet. It would still be useful to have a button to stop actions with: Pause (useful when you have the server overloaded and one thing is not essential) and an Undo and Restore
  15. It would be really very nice, if it would be possible to comment on the tasks, this would allow to have a greater colleboration between teams. otherwise if not introduce a system of comments in the tasks, create a topic for each task (section chosen at the time of opening the task), a bit 'as it does with downloads and support topics. Do you already have plans for such an implementation?
  16. How come even though I put a url to mask the AWS S3 address, when I download a product from Downloads, it serves it to me on the S3 link? It also does this with attachments to download in posts, while images are correctly served on the custom url set to Storage
  17. I was configuring a new storage for files, unfortunately I forgot to uncheck "Move files automatically", now my IP.Board is trying to move in a storage almost 75GB of attachments, how can I stop the task?
  18. I uploaded a profile image, an animated gif, the library for manipulating the image is GD, when I chose cropping, it gave me an error: ValueError: imagecolorsforindex(): Argument #2 ($color) is out of range (0) #0 /var/www/vhosts/**.it/httpdocs/system/Image/Gd.php(298): imagecolorsforindex() #1 /var/www/vhosts/**.it/httpdocs/applications/core/modules/front/members/profile.php(1487): IPS\Image\_Gd->cropToPoints() #2 /var/www/vhosts/**.it/httpdocs/system/Dispatcher/Controller.php(90): IPS\core\modules\front\members\_profile->cropPhoto() #3 /var/www/vhosts/**.it/httpdocs/applications/core/modules/front/members/profile.php(73): IPS\Dispatcher\_Controller->execute() #4 /var/www/vhosts/**.it/httpdocs/system/Dispatcher/Dispatcher.php(153): IPS\core\modules\front\members\_profile->execute() #5 /var/www/vhosts/**.it/httpdocs/index.php(13): IPS\_Dispatcher->run() #6 {main} I changed it to ImageMagick and it's gone. I have tried on both my forums, if it helps I attach the gif that creates this problem.
  19. I am getting this error when visiting the AdminCP dashboard DivisionByZeroError: Division by zero (0) #0 /var/www/vhosts/**.it/forum.**.it/applications/spaciouswidgets/extensions/core/Dashboard/systemOverview.php(103): IPS\spaciouswidgets\_Spacious::systemLocalDriveInfo() #1 /var/www/vhosts/**.it/forum.**.it/applications/core/modules/admin/overview/dashboard.php(64): IPS\spaciouswidgets\extensions\core\Dashboard\_systemOverview->getBlock() #2 /var/www/vhosts/**.it/forum.**.it/system/Dispatcher/Controller.php(101): IPS\core\modules\admin\overview\_dashboard->manage() #3 /var/www/vhosts/**.it/forum.**.it/system/Dispatcher/Dispatcher.php(153): IPS\Dispatcher\_Controller->execute() #4 /var/www/vhosts/**.it/forum.**.it/admin/index.php(13): IPS\_Dispatcher->run() #5 {main} Self Hosted IP.Board: 4.6.6 PHP: 8.0.10 Database: v5.5.5-10.3.31-MariaDB-0ubuntu0.20.04.1 Let me know if you need more data...
  20. I take this opportunity to ask you something too... I use this request api to print the notifications of the logged in user: @php $url = 'https://forum.***.it/'; $apiKey = '***'; $point = '/core/members/'.\IPS\Member::loggedIn()->member_id.'/notifications'; $endpoint = $url. 'api'. $point. '?key='. $apiKey; $json = file_get_contents($endpoint); $json_data = json_decode($json, true); @endphp @foreach($json_data["results"] as $value) @if ($value["notificationData"][unread] == 'true') <strong> @endif <a href='{{$value["notificationData"]["url"]}}'> <li class="dropdown-list-item"> <span class="dropdown-list-text text-success"> @if ($value["notificationType"] == "new_badge") <i class="fas fa-certificate"></i> @else <i class="far fa-envelope"></i> @endif </span> <div class="dropdown-list-body"> {{$value["notificationData"]["title"]}} </div> </li> </a> @if ($value["notificationData"][unread] == 'true') </strong> @endif @endforeach why does it print all the notifications in English, even if the user has the language set in Italian? Otherwise, how do I tell the API request to return the notification to me in Italian?
  21. Missing images here: https://invisioncommunity.com/features/calendar/ Here the smartphone is without image: https://invisioncommunity.com/features/gallery/ When viewing the Pages product, the menu for watching other applications is lost in the footer: https://invisioncommunity.com/features/pages/ The images in the showcase do not go if they open in lightbox: https://invisioncommunity.com/solutions/micro-communities/ However, a really nice portal. I hope a hypothetical IP.Board 5 has some darker base colors like your portal... IPB 3.1 style, my favorite ever...
  22. I noticed that I'm registering this error for the API: ArgumentCountError: Too few arguments to function IPS\core\api\_members::POSTitem_achievements_awardbadge(), 2 passed in /var/www/vhosts/***.it/forum.****.it/system/Api/Controller.php on line 180 and at least 5 expected (0) #0 /var/www/vhosts/***.it/forum.***.it/system/Api/Controller.php(180): IPS\core\api\_members->POSTitem_achievements_awardbadge() #1 /var/www/vhosts/***.it/forum.***.it/system/Dispatcher/Api.php(329): IPS\Api\_Controller->execute() #2 /var/www/vhosts/***.it/forum.***.it/api/index.php(11): IPS\Dispatcher\_Api->run() #3 {main} Is the error fixed? I hope to implement this function soon in my cms...
×
×
  • Create New...