Ghost_chu I want link the Another my website program with Flarum, but i need change the same encrypt and use same APP_KEY. What is Flarum's encrypt method(e.g SALTEDMD5 SHA-256) and where i can found my website APP_KEY?
luceos Flarum doesn't use an APP_KEY, because it's not based on Laravel as a whole, but only uses some of its components. The easiest way to hook Laravel to Flarum is to use a single sign on method.
Ghost_chu luceos Actually, i need to do that based Database, can you tell me about Flarum's encrypt method?
clarkwinkelmann Ghost_chu Flarum does not encrypt anything, so there's no APP_KEY. If you're talking about passwords, they are hashed via bcrypt, just like Laravel, and this doesn't make use of any key.