Jump to content

CheersnGears

Clients
  • Posts

    2,186
  • Joined

  • Last visited

  • Days Won

    7

 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 CheersnGears

  1. Was there an update on the duplicate bullets issue?
  2. Posted here by request of @Matt I tried moving my attachments folder to S3, but it broke the image links embedded in my Pages articles. Since all of my articles were made when local storage was set up, I'd have to fix 6400+ articles manually. So I moved everything back and only had to fix the five articles that went up while S3 was the storage method. When writing an article, I simply upload the images to the editor as I type the article and double-click to insert from there. This seemed like the intended method of use. I am using the articles database that shipped with IPS however many years ago. It is stock except for a few extra reference-only fields that aren't used anymore. This is an article after the move back from S3 to local storage: Inspecting the object shows that it still expects it to be in S3: But editing the article, the Editor knows the current home of the attachments and shows them: And on inspection, is looking in the right spot:
  3. Well, that jiggled it loose. It crept up to 81.03% done. Once it is done, I'll drop my wait timeout back down to a reasonable (but higher than before) level.
  4. I increased my MySQL wait timeouts dramatically to see if that will help overnight. Running the task manually still doesn't seem to budge the task, but it's not putting errors into the logs anymore.
  5. I have a stuck file move task that got to 79.61% and has stayed there. This is a move from S3 -> server file system. It is throwing a "MySQL server has gone away" in the log when I try to run it manually. Only the SQL server hasn't gone away... my site is operating fine otherwise. I've restarted SQL, I've restarted the server, but that task remains stuck. I've run a table optimization on my entire database (I didn't expect this to do anything, it was more to test the SQL server under some additional load), and it was completed without issue. Notably, when I manually run the task queue, a few PWA notification tasks will run first before the file move process starts failing. The only recent changes to the system I can think of are an upgrade from MariaDB 10.5->10.6 just before the move. I had temporarily enabled the EXEC directive in PHP for an unrelated task outside of the IPS system.
  6. In my case, I use it when I have agreements with manufacturers for specific release dates/times, but for one reason or another, I'm getting the posting up late. This typically happens if I receive the information in an inconvenient window, like overnight, when I'm asleep. For the situation that arises on one of the WordPress sites I manage, I use it when a post about a new code or resolution goes into effect but the elected officials are late in getting me the official copy.
  7. This is funny because I've used this exact functionality for literally years. I'd like to say at least 5, but probably longer. I'll probably stop doing software updates for now to retain this functionality. As I said, I don't need it often on my IPS site, but when I need it, I need it. Exactly. I do use it often on my Wordpress sites. 🤔 It's a question I've muttered out loud for years.
  8. Interesting. I've encountered this as well, but the need to be able to do this isn't a common enough occurrence that I felt the need to raise a bug report. It was reproducible the last time it happened. I don't think I've had a need to do this since Oct/Nov time frame, but if you need additional testing, I'll assist.
  9. Some of us have other stuff in htaccess that we wouldn't want wiped out by an update
  10. I seem to be getting an extra bullet in the subforum list in the Forum view: This theme* the bullets do show up as solid in a browser. not sure why they're hollow in the screen shot. IPS Default theme
  11. Fair enough. I have it working for now, and it looks great.
  12. Get a CleanTalk subscription and the plug-in from the marketplace. Best $8 a year you'll spend.
  13. I'm not really a coder, so all I'm doing is using @opentype's app. But this is what I found in his SuperGrid categoryRow template. {{if $category->pcimage}}<div class="SG_cat_image" style="background-image:url('{file='$category->pcimage'}');"></div>{{endif}} I'm guessing he'll need to update.
  14. This is quite the rabbit hole today. Using the constants.php settings recommended by @Matt here \define( 'IPS_FOLDER_PERMISSION', '0777'); \define( 'FOLDER_PERMISSION_NO_WRITE', '0755'); \define( 'IPS_FILE_PERMISSION', '0666'); \define( 'FILE_PERMISSION_NO_WRITE', '0644'); And then looking in FTP, I find that the file gets uploaded with permissions of 1232, which of course means the file can't be read by Apache. Now, I added those settings today because for some reason the IPS file move process borks folder permissions on my server and the upload folder ends up unwriteable. If I take those lines out of constants.php, then both your app and opentype's work properly when both are set to my attachments folder. So, I think your app has to always match whatever is set in the Attachments location for Supergrid to work. So I guess I'll leave it as is for now and I'll just have to remember that I can never move files under storage settings without putting those lines in first. I really don't understand how that IPS permissions issue is happening since I have a bone stock AlmaLinux + CPanel setup. Absolutely nothing special and none of my other site installs with other software have this issue. If you want any troubleshooting feedback from my end, I'm happy to help and test.
  15. Thanks, I have more information to add for you in a few minutes. I'm testing some current settings with fresh files to make sure I'm not polluting new tests with old files.
  16. This has been driving me a bit nutz today. Initially, I left the file location for this app unconfigured, but then @opentype's SuperGrid couldn't find the attachment because it was looking in my attachments directory. I moved everything from the attachments directory to the uploads directory, and things worked. So, because I prefer to keep things tidy, I moved everything back to the attachments directory AND set the directory for Pages Category Images to the same attachments directory, and now neither this app nor Pages Supergrid points to the correct file. I can upload a file to the category, but the preview is immediately broken. If I copy the URL to another tab but remove the attachments folder from the URL, the file loads, which means it uploaded correctly but not to the directory it is supposed to upload to. So, somewhere, somehow, this app is not respecting the file location settings under Storage settings in ACP. My site is 20+ years old, so I really don't like dumping everything in Uploads.
  17. Apparently, this is a known issue. So ideally either he needs to use a standard location in his app or you'll need to grab the storage location set by his.
  18. If I do an inspect on the preview of the file in the ACP, I get: src="https://www.cheersandgears.com/uploads/monthly_2023_02/2023-Integra-performance-xl.png.4fa9a2dcb7f39ea84f9a01a7409d673c.png" which works, but shouldn't because that's not where it should be uploaded to. It should go to: <div class="SG_cat_image" style="background-image:url('https://www.cheersandgears.com/uploads/attachments/monthly_2023_02/2023-Integra-performance-xl.png.4fa9a2dcb7f39ea84f9a01a7409d673c.png');"></div> as reflected in the code from SuperGrid. I am testing by moving the attachements back to the upload directory.
  19. I have both installed, but when I upload a picture, the category looks like it has space made for the picture, but the picture doesn't actually appear. Anything special I need to do?
  20. I appear to have located a bug. In both the stream and the sidebar widget, the link to the forum name passes the wrong URL when a new topic is started. The correct URL is passed if it is a reply to an existing topic. In this case, the link from the title of the topic correctly takes you to the first post of that topic; however, the Forum/category name links incorrectly. In the above example, it links to https://www.cheersandgears.com/forums/forum/45-ford/?do=findComment&comment=96551 when it should be link to https://www.cheersandgears.com/forums/forum/45-ford/
  21. Great! Thanks. I'm sure if it is either of those plug-ins, the developers would want to know about it.
  22. Sorry, try again. I created a new group for external support to remove the 2FA requirement but didn't grant that access to ACP. Hopefully is good now.
×
×
  • Create New...