Giter Site home page Giter Site logo

Comments (14)

artistro08 avatar artistro08 commented on May 19, 2024

Should be fixed in v6.2.4

This also means that you may lose all your posts from the Blog\Posts entry type. I had to change the uuid for this to be fixed.

You also may be able to export and import the posts as well

from tailor-starter.

chrisvidal avatar chrisvidal commented on May 19, 2024

Still no Blog menu after updating to v6.2.5 and re-seeding everything

from tailor-starter.

artistro08 avatar artistro08 commented on May 19, 2024

Hmm, I'll investigate more. In the meantime, try changing the primaryNavigation handle to see if that helps

from tailor-starter.

artistro08 avatar artistro08 commented on May 19, 2024

Looks like it was a plugin issue. It's fixed in v1.0.17.

Since the plugin looks for all menu items that contain the text "Blog" when disabled, it hides the demo one as well. Update the plugin and let me know if that fix helps.

from tailor-starter.

chrisvidal avatar chrisvidal commented on May 19, 2024

got it , makes sense. Let me try to update and check

from tailor-starter.

chrisvidal avatar chrisvidal commented on May 19, 2024

It's fixed in v1.0.17.

this plugin version is not yet published, right?
Cant get it to update to 1.0.17 with the PHP artisan command

from tailor-starter.

artistro08 avatar artistro08 commented on May 19, 2024

That's really weird. It's up on the tags now and on the marketplace. Since the plugin name has changed, I'd check to see if the github version is updating.

from tailor-starter.

chrisvidal avatar chrisvidal commented on May 19, 2024

the command line is not updating the plugin
and the backend system updates settings menu can see the new version but it can't update.
not sure why.
I did try a new install from scratch with the plugin, and I got the 1.0.16 installed, not the 1.0.17

from tailor-starter.

artistro08 avatar artistro08 commented on May 19, 2024

Sounds like a composer issue. What's in your composer.json file? Send it to me directly

from tailor-starter.

chrisvidal avatar chrisvidal commented on May 19, 2024

for the new fresh install, composer.json is

{
    "name": "october/october",
    "description": "Built using October CMS: The Laravel-Based CMS Engineered For Simplicity",
    "type": "project",
    "homepage": "https://octobercms.com",
    "license": "proprietary",
    "require": {
        "php": "^8.0.2",
        "october/rain": "^3.2",
        "laravel/framework": "^9.0",
        "october/all": "^3.1",
        "artistro08/tailorstartercompanion-plugin": "^1.0",
        "artistro08/tailorstartertheme-theme": "^6.2"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.5|^9.0"
    },
    "scripts": {
        "post-root-package-install": [
            "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
        ],
        "post-create-project-cmd": [
            "php artisan key:generate --ansi"
        ],
        "post-autoload-dump": [
            "System\\Console\\ComposerScript::postAutoloadDump"
        ],
        "post-update-cmd": [
            "System\\Console\\ComposerScript::postUpdateCmd"
        ],
        "pre-package-uninstall": [
            "System\\Console\\ComposerScript::prePackageUninstall"
        ],
        "test": [
            "phpunit --stop-on-failure"
        ]
    },
    "config": {
        "preferred-install": "dist",
        "allow-plugins": {
            "composer/installers": true
        }
    },
    "autoload": {
        "psr-4": {
            "System\\Console\\": "modules/system/console"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "repositories": {
        "octobercms": {
            "type": "composer",
            "url": "https://gateway.octobercms.com",
            "only": [
                "october/*",
                "*-plugin",
                "*-theme"
            ]
        }
    }
}

from tailor-starter.

artistro08 avatar artistro08 commented on May 19, 2024

Your composer file looks good. Try running just:

composer update

from tailor-starter.

chrisvidal avatar chrisvidal commented on May 19, 2024

interesting, after the composer update result:

composer update
Loading composer repositories with package information
Info from https://repo.packagist.org: #StandWithUkraine
Updating dependencies
Lock file operations: 0 installs, 4 updates, 0 removals
  - Upgrading artistro08/tailorstartercompanion-plugin (v1.0.16 => v1.0.18)
  - Upgrading artistro08/tailorstartertheme-theme (v6.2.5 => v6.3.0)
  - Upgrading composer/composer (2.5.3 => 2.5.4)
  - Upgrading league/commonmark (2.3.8 => 2.3.9)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 0 installs, 4 updates, 0 removals
  - Downloading artistro08/tailorstartercompanion-plugin (v1.0.18)
  - Downloading artistro08/tailorstartertheme-theme (v6.3.0)
  - Downloading league/commonmark (2.3.9)
  - Downloading composer/composer (2.5.4)
  - Upgrading artistro08/tailorstartercompanion-plugin (v1.0.16 => v1.0.18): Extracting archive
  - Upgrading artistro08/tailorstartertheme-theme (v6.2.5 => v6.3.0): Extracting archive
  - Upgrading league/commonmark (2.3.8 => 2.3.9): Extracting archive
  - Upgrading composer/composer (2.5.3 => 2.5.4): Extracting archive
Generating autoload files
> System\Console\ComposerScript::postAutoloadDump

   INFO  Discovering packages.  

  laravel/tinker ..................................................................... DONE
  nesbot/carbon ...................................................................... DONE
  nunomaduro/termwind ................................................................ DONE
  october/rain ....................................................................... DONE

95 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
> System\Console\ComposerScript::postUpdateCmd

* You are using October CMS version: v3.2.13

but the plugin is still in version 1.0.16 after update in the backend

image

and checking the version.yaml of the plugin, it looks properly updated

image

it looks like an issue with the OC platform then

from tailor-starter.

chrisvidal avatar chrisvidal commented on May 19, 2024

After this update, the homepage works again, without me doing anything than navigating to the homepage

from tailor-starter.

artistro08 avatar artistro08 commented on May 19, 2024

try running php artisan october:migrate as well, it should update the version after that too.

and glad that it's working again!

from tailor-starter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.