How to modify the logo of PHPCMS?
#How to modify the logo of PHPCMS?
Just replace the new logo icon into the directory of the old logo icon. The directory is "\statics\images\v9\logo.gif". If the icon name is the same as the original If it is different, you need to modify the path in the template file "header.html", the directory is "\phpcms\templates\default\content\header.html".
PHPCMS function module
##Function name
| Function description
|
Permission management | Rich permission settings and default Permission allocation makes it easier to set permissions; The permissions of user roles can be set according to each operation; Editor-in-chief: has all permissions for all columns and all topics, and can add columns And topic Column editor: has information entry, review and management permissions for certain columns, further detailed settings are requiredDesigner: has template and label management permissionsFinance Personnel: Have permissions to view orders, enter bank transfers, issue invoices, etc. |
Module management | Provide module development documents and development interface, supports module installation and uninstallation, you can choose to purchase or customize the modules required for development, and the function expansion is convenient and worry-free |
Administrator management | You can add administrators and reassign administrators at will;You can set up a founder, who has all management rights; |
Custom model management | The model is very flexible, you can set the field type, field length, data judgment at will, and automatically generate JS instant judgment and PHP judgment;Supports various attributes of fields: such as whether to add to full-text search, whether it is a unique value, whether to submit and display in the front desk; and you can arbitrarily control the adding permissions of fields, etc.; more settings Please go to the backend to experience |
Category management | Supports unlimited column classification;Supports columns Permission settings; supports template customization; supports columns to be bound to models at will; supports external column functions; supports binding workflow solutions ;Supports the function of binding second-level domain names;Supports column fee setting |
Database management | Supports batch backup function of database; Supports repair and optimization of database; Supports string replacement function; Supports online data recovery Function |
Category management | Supports simple first-level category addition, modification, deletion, and sorting |
Region management | Supports unlimited level regional management;Supports adding and deleting regions in batches |
Menu Management | The background menu can be modified and added at will, and supports menu permission settings |
Recommended position management |
Support adding, modifying and deleting recommended positions |
Keyword management |
Support keywords Add, modify, delete |
Author management |
Support the addition, modification, and deletion of authors |
Source management |
Supports adding, modifying, and deleting sources |
Associated link management
|
Supports the management, modification, and deletion of associated links |
Workflow management |
Free distribution of work review process |
Manuscript status management |
Manuscript status settings, such as pending review, first review, second review |
Database source management |
Data sources can be added. Add MYSQL, Access, MSSQL database sources |
Attachment management |
Statistics on all uploaded files based on different models Attachment |
URL rule management |
You can freely write and modify the URL paths supported by the system |
Trojan scanning |
Online Trojan scanning, find Trojans more quickly and safely, leaving Trojans nowhere to hide |
External data import |
Supports content model and member data import, and can import any system into phpcms |
Baidu/google map |
Generate standard XML map |
ILLEGAL INFORMATION WORDS SHIELD |
You can freely add and modify the words to be blocked |
Manuscript statistics |
According to member statistics Manuscript details |
Column access statistics |
According to column Statistics of all information |
##Data dictionary | Complete library structure database label |
IP Ban | Disable users who are not allowed to access the site based on IP and IP segment |
Pass | Support member integration of various external systems |
Content publishing |
Powerful Content publishing, making everything more free |
Batch update publishing web page |
Batch update can update more quickly Published information |
Batch update of columns |
Batch update of existing columns |
Template style management |
Editable templates, visual template label editing |
rssSubscription |
RssExternal call |
##Site map | Links to all columns of the website |
Verification code | supports random mixed display of numbers and letters, and the character position and size are not Rules, multiple colors, can be used as usual even if GD is not supported, anti-brute force cracking and advertising machine |
Save remote pictures | Automatically transfer remote pictures in the content to the local server to prevent the other party from deleting the pictures or not displaying the pictures when the server is abnormal |
Watermark thumbnail | Can be reduced proportionally as required, and pictures or text watermarks can be added at designated locations as required to increase publicity opportunities after the content is reprinted |
WYSIWYG online content editing function similar to word, supports table, picture, FLASH, player insertion, supports picture and attachment upload | |
#Install or set the ftp account and password in the background, the system automatically sets the directory file 777 attribute, making the operation more convenient. Easily solve the problem of not being able to run in safe mode |
、
The above is the detailed content of How to modify the logo of PHPCMS?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
