General

3 questions

This is a comprehensive PHP-based documentation management system that allows you to organize and present software documentation, installation tutorials, and application information in a clean, searchable format.

After installation, login to the admin panel using your credentials. From there, you can create categories, add documentation, and customize your site settings.

Yes! You can modify the CSS files in the assets/css directory to customize colors, fonts, and layout. The system uses CSS custom properties for easy theming.

Technical

3 questions

You need PHP 7.4 or higher, MySQL 5.7 or higher (or MariaDB 10.2+), and Apache web server with mod_rewrite enabled. The system also requires PDO and PDO_MySQL PHP extensions.

The system uses Prism.js for syntax highlighting. When adding code in the editor, wrap it in <pre><code class="language-xxx"> tags, where xxx is the language (php, javascript, python, etc.).

No, the search feature is case-insensitive and searches through document titles, content, and meta descriptions to provide comprehensive results.

Account & Access

3 questions

You can change the admin password by editing the config.php file and updating the ADMIN_PASSWORD constant with a new password_hash() value, or by modifying the authentication system to use a database-based user management.

The default system supports a single admin user. However, you can extend it to support multiple users by creating a users table and modifying the authentication logic.

The basic system does not include password recovery. You can reset the password by editing the config.php file directly or by implementing a custom password recovery system.