Login

    Experience summary

    SDXL: How to use Stable Diffusion

    Recently, a WordPress plugin based on the latest version of Stable Diffusion XL (SDXL) was developed. Stable Diffusion is a free, open source image generation model, and the code can be downloaded directly through the official website Stability AI. Although it is more expensive and difficult to deploy the model yourself, it is possible to use a Docker image or install it manually. In addition, large models and APIs can be consumed or deployed through the Replicate.com website. In general, Stable Diffusion and SDXL are widely used in AI image generation products.

    Nextjs+next-intl multi-language internationalization best practice (APP router)

    Nextjs offers two routers: APP and Page, with Page being phased out. The author previously used Page router internationalization, but has since implemented internationalization based on the APP router. They evaluated several solutions and found that next-intl is the simplest and most successful . The post outlines the directory structure, routing, middleware setup, how to load translation files, and how to implement translations, emphasizing that regardless of the internationalization solution chosen, routing, file structure, and translation implementation are key aspects.

    Nextjs+I18n multi-language internationalization best practices (search engine friendly)

    Note: This best practice is based on next pages routing. Not suitable for app routing. The basic idea of the directory is to use next-i18ne […]

    Google Gemini: How to use Google’s large language model Gemini

    Google's multi-modal large language model was recently released. Google Gemini official website Google Gemini is divided into three versions […]

    The new WordPress experience: building websites with SAAS, low-code and no-code

    On November 6, 2023, WordPress v6.4.2 was released. Two days later, I migrated my blog to another server. Later […]

    Review of virtual airline business lines - supply chain growth and structure

    1. The overall situation of air tickets 1. Business ecology Since the great development of the Internet and OTA, the air ticket business has gradually formed two business forms: platform and supply chain. […]

    Dismantle the low-code platform - generative is the direction of low-code

    Friends who are familiar with me know that during the epidemic, I coded myself and built a BAAS (back-end as a service cloud computing platform) and a low-code platform. The reason […]

    Time:2023/07/17

    Iteration of membership subscription module

     

     

    For the platform CMS I built myself, the membership subscription part has always been "simple to implement". This weekend I restructured this part and developed the core part.

    1. Method

    Generally speaking, membership subscription mainly includes three parts: membership subscription plan and purchase, member permission control, and member management.

    1. For membership subscription plans and purchases

    Just prepare to make some extensions based on the existing mall system.

    2. For member permission control,

    This needs to be mentioned in particular. We are not planning to do it based on a role permission system, but a separate member-controlled system.

    Based on the role authority system, members are made into a role series, and each type of member is made into a role in this role series. It sounds reasonable. However, in this case, it is very troublesome to do or use, especially when there is a lot of business, the various logics will be very complicated, and all kinds of confusion will be caused if you are not careful. And it's not flexible enough.

    Moreover, in fact, the membership subscription part of many excellent systems is not role-based. Instead, permission control is implemented based on "marks" or orders. Many well-selling membership subscription plug-ins, including WordPress, are done in this way.

    Based on "user tags":

    In essence, it is the same principle as the character system. It is to define some "marks" of members. Users who purchase the membership subscription plan associated with this "mark" will be "marked with this mark", so that the control of member permissions can be achieved.

    Based on order:

    Purchase a membership subscription plan and form an order. After payment, the expiration time will be written into the order. Therefore, you can judge based on the order whether the user is a member, what kind of member it is, and whether it has expired. This way you can control member permissions.

     

    I have done an order-based method before, and this time I plan to use "user tags".

    There is nothing wrong with being based on orders, but the order system of the platform CMS I am building now supports many order types, making the order model relatively "large". I don't plan to "add weight" to it anymore, so I chose Based on "user tags".

    3. Member management

    Based on the existing user management extension, we do not plan to do member management alone.

     

    2. Applicable scenarios

    1. Basic scenario

    The entire product has one or several subscription plans, which users purchase and enjoy membership services.

    Define membership tags globally. Each membership tag contains at least three fields: name, slug, and associated subscription plan id.

    When a user purchases a subscription plan with a membership mark, the membership mark and expiration time will be written into the user's meta data.

    2. Platform/multi-tenant scenario

    For platforms and multi-tenant SAAS, there is a very important scenario: the subscription plan provided by the vendor itself.

    Define the supplier's membership tag in the supplier's user's meta data. The key of the supplier's membership tag cannot be the same as the key of the global membership tag.

    When a user purchases a subscription plan from this provider, the corresponding membership tag and expiration date will be written to the purchasing user's meta data.

    This iteration only implements basic scenarios, but it must be able to be extended to platform and multi-tenant scenarios.

     

    3. Determine whether the membership has expired when logging in

    When the user logs in, it is judged whether it has expired. If it has expired, update the member mark in the meta data to false and the expiration date to false.

     

    How to build a successful social product (1) - user behavior and user relationships

    1. What do social products do? First of all, we need to know, what exactly do social products do? All social products are platform products. In other words, all […]

    For growth, the role of social media

      Traffic is drying up. Social media is becoming increasingly difficult to use. In the past two years, I have found that many people have some misunderstandings about social media and self-media […]



    copyright © www.lyustu.com all rights reserved.
    Theme: TheMoon V3.0. Author:neo yang