Giter VIP home page Giter VIP logo

Comments (11)

phpnode avatar phpnode commented on May 24, 2024

@ustmaestro I think the line should actually be:

$language = $request->getCookies()->getValue($this->languageCookieName);

please would you mind opening a PR?

from yii2-localeurls.

mikehaertl avatar mikehaertl commented on May 24, 2024

@ustmaestro Thanks for the report. I think @phpnode's suggestion should work. I'm just not sure, why the current test cases don't fail. They actually (shoul) also test the cookie feature. Will have to take a close look later.

If a PR is too much work for you, don't worry. I can also take care of this.

from yii2-localeurls.

mikehaertl avatar mikehaertl commented on May 24, 2024

@ustmaestro I've fixed this now. It's interesting to note though, that the bug had no effect. yii\web\Cookie implements a __toString() method. In matchCode($code), $code is used in two places:

$parts = explode('-', $code);
in_array($code, $this->languages);

I would have expected the cast to string in explode() - but not really for in_array(). Still it worked, even without my fix.

Anyhow, it's fixed now. Thanks again.

from yii2-localeurls.

ustmaestro avatar ustmaestro commented on May 24, 2024
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )

As you can see $needle is mixed and it can be an array (object) that's why your test is not throwing any error

In my case I changed the languages array like

'languages' = > [
    'en' => 'English',
    'ro' => 'Română',
    'ru' => 'Русский',
    ....
]

and changed in_array with array_key_exists that's how I found this bug.

I changed the languages array because of using https://github.com/OmgDef/yii2-multilingual-behavior in my application

from yii2-localeurls.

mikehaertl avatar mikehaertl commented on May 24, 2024

@ustmaestro Can you confirm that my change above fixes the problem? If everything is fine I'll create a new release.

from yii2-localeurls.

ustmaestro avatar ustmaestro commented on May 24, 2024

Yes, it's fine now.

Different controller/action names for different languages
#29

Have you planned to do this extension, that will be a great yii2 extension for multilingual websites
I and think many other users is need for this extension

Also it can be a great feature to add dinamic links
Example:

site.com/en/blog/post/sample-post
site.com/ro/blog/post/post-simplu
site.com/ru/blog/post/prostoi-post

This is the same post but in different languages with slug stored in db

from yii2-localeurls.

mikehaertl avatar mikehaertl commented on May 24, 2024

Have you planned to do this extension

Sorry, no plans on this. It's really a different story (writing a UrlRule class). It should not conflict with this extension, as we do our tricks here very early in the app life cycle. UrlRules should work as usual - if they simply ignore any locale code in the URL.

from yii2-localeurls.

ustmaestro avatar ustmaestro commented on May 24, 2024

I found a new strange issue

site.com/ro/blog/post/login is not existing url

with config
'urlManager' => [
'class' => 'yii\web\UrlManager',
]

    is throwing 404

with config
'urlManager' => [
'class' => 'common\components\UrlManager', // your module
]

    is showing post #1

what is wrong

from yii2-localeurls.

ustmaestro avatar ustmaestro commented on May 24, 2024

someone has tested not existing urls

from yii2-localeurls.

mikehaertl avatar mikehaertl commented on May 24, 2024

Could you open a new issue with a full report (what is your exact configuration and what do you expect to see), please?

from yii2-localeurls.

ustmaestro avatar ustmaestro commented on May 24, 2024

OK

from yii2-localeurls.

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.