Jump to content

All Astronauts

Clients
  • Posts

    1,365
  • Joined

  • Last visited

  • Days Won

    8

All Astronauts last won the day on September 24 2022

All Astronauts had the most liked content!

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Central Time Zone, USA

Recent Profile Visitors

14,245 profile views
  1. There was a nice comment thread with screenshots here: But comments have been disabled so those 60 responses are not accessible. You can see the initial first version screens there though. There have been other threads here and there that popped up talking about the old days but you'll have to search for those yourself. Honestly, just google for various INVCOM versions and look at the pic; probably the easiest way forward.
  2. I can't speak for the entire dev community but I, and I imagine nearly all the regulars, have a large archive of INVCOM versions going waaaay back. Tag someone to help; paid work of course. You'll have a dance of upgrading to 4.2 (that's where I would start), and then 4.5, then you'll need to make server adjustments for PHP requirements, possibly before the 4.5 upgrade, then you'll be clear. A slog, but a small one.
  3. Also, not worth a new report but a slight efficiency improvement cms/module/front/database/record/manage - line 263 if ( $record->record_image ) { Output::i()->metaTags['og:image'] = (string) File::get( 'cms_Records', $record->record_image )->url; } Starting at line 335 you run the same file obj init on record_image. I'd just shove that metatag output line there. Well... as Output::i()->metaTags['og:image'] = (string) $imageObj->url of course 🙂 /* Image is required */ if( $record->record_image ) { try { $imageObj = File::get( 'cms_Records', $record->record_image ); Output::i()->jsonLd['article']['image'] = array( '@type' => 'ImageObject', 'url' => (string) $imageObj->url ); } /* File doesn't exist */ catch ( RuntimeException | DomainException $e ){} } else
  4. Beta 4 this is still returning urls. However - instead of a plain text URL, it is outputting links: <a href="https://redacted.com/applications/cms/interface/file/file.php?record=1&amp;database=3&amp;fileKey=[!AES128GCM[EvImxn/4tK%2BtU9LTDMyzSb2gRDbGZo8wr5ImABetP/0MtK9dOLKpMJSh08O2gpV4CXOQnybz9jTQqDepccy9qS557UnZ1iUJyfOkEYr15xk695ds][e07f7365c1d48bec68685afd][7df3e82fad182d876135ff15f948c202]]&amp;file=SpreadView.pdf">SpreadView.pdf</a> A few newlines before that as well in the dump (cut for the example above)
  5. That's it exactly. The languages are wrong. Featured Records is actually the Index set and is the real first page when viewing a db, and Category List is then wrong as well. If I only knew to use Featured Records in the first place which is obvious and normal...
  6. Legit bug. 'by_skin_gen' is a 4x database column in the themes table that gets removed in 5x upgrades and is not present in new installs. When you upload a theme the system initializes a new theme prior to reading in the uploaded stuff and it inits it with that column variable. When it saves this new blank theme you get your error since that column does not exist to stick stuff into any more. /* Create a default theme */ $theme = new Theme; $theme->by_skin_gen = 0; $theme->editor_skin = 'ips'; $theme->order = $max + 1; $theme->save(); Line 355 and another by_skin_gen instance at 435 in core/modules/admin/customization/themes.php Easy fix/es but you are stuck until the next beta unless you want to hack the lines out manually (provided you are not on CIC).
  7. When using a database with no categories, you cannot assign a custom template of your own making to the Index Layout. The only options that appear are: If you create your own Index templates, they will never populate the above. You can assign a custom Index template to the Category Listing Layout: - and that might be intentional when using no categories for a database - but then those listing templates are never used on index/database home view with a no categories database; only the Index Layout, and available custom options as seen in the above screenshot, are used - effectively locking out customizing the view.
  8. You can close this for now. Why this file (others?) did not take correct ownership is a me problem to dig into. Weird, but there it is. chown fixed it easily enough.
  9. Page builder no longer works due to a broken JS file (GET fails) https://redacted.com//applications/core/interface/pagebuilder/assets/main-6937ae1a.js?csrfKey=&antiCache=483d3c0a2e1730497635 Cleared all the caches, logged out and in, etc. Upgrade worked fine, no errors. Everything else including theme editor working.
  10. After not getting any output with the usual $file->stuff I dumped the $values values as they iterated to txt to see what was there. Nothing but urls: https://redacted.com/uploads/monthly_2024_11/AnnualReport2023-SpreadView_pdf.d0f09d909c8223ab03f54e89e32b1de9 Tested against $formValue as well to be sure, no objects.
  11. Any app, template hook, simple insert of a <div>derp!</div>, any hook point, any location: before, after, inside, etc. Not a one works. Fresh install if that matters. No console errors. Nothin in system logs. Caches cleared, etc...
×
×
  • Create New...