PHPackages                             aidsoul/vktote - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. aidsoul/vktote

ActiveProject[Utility &amp; Helpers](/categories/utility)

aidsoul/vktote
==============

Autoposting from a VK group to a Telegram channel

v2.2(2mo ago)9511MITPHPPHP &gt;=8.1

Since Mar 31Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/aidsoul/vktote)[ Packagist](https://packagist.org/packages/aidsoul/vktote)[ RSS](/packages/aidsoul-vktote/feed)WikiDiscussions main Synced 4w ago

READMEChangelog (10)Dependencies (7)Versions (15)Used By (0)

VKTote
======

[](#vktote)

[![Version](https://camo.githubusercontent.com/4aaf219d0bfe3be2c5810bb1c298a6b6dee49ba725f9c2cc29c05fc84a5b1212/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f616964736f756c2f766b746f7465)](https://github.com/aidsoul/vktote/releases/latest "GitHub release")[![License](https://camo.githubusercontent.com/5caa455d8debc46fb23abbadb45a733a937f3910a73fc875c2f7820468e1bb54/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e)](https://github.com/aidsoul/vktote/blob/main/LICENSE "License")[![PHP Version](https://camo.githubusercontent.com/83dd395020c37276225039739320f6c8e7e99963ab21ee3d09282cb48dad2a60/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e312532422d626c7565)](# "PHP Version")VKTote is an automatic posting tool that transfers posts from VK groups to Telegram channels.

Features
--------

[](#features)

- 📤 **Automatic Posting** - Automatically fetch and forward VK group posts to Telegram
- 👥 **Multiple Groups** - Support for managing multiple VK group profiles
- 🎛️ **Web Control Panel** - User-friendly interface for group management
- 🔗 **Rich Media Support** - Handles photos, videos, links, and text posts
- 🌐 **API Access** - RESTful API for programmatic access
- 🔒 **Security** - CSRF protection and secure authentication

Quick Start
-----------

[](#quick-start)

New to VKTote? Get started in minutes:

1. [Installation Guide](docs/getting-started/installation.md) - Set up the application
2. [Configuration Guide](docs/getting-started/configuration.md) - Configure your first group
3. [Basic Usage](docs/usage/basic-usage.md) - Learn the basics

Table of Contents
-----------------

[](#table-of-contents)

### Getting Started

[](#getting-started)

- [Installation](docs/getting-started/installation.md) - System requirements and setup
- [Configuration](docs/getting-started/configuration.md) - Configuring VK and Telegram

### Usage

[](#usage)

- [Basic Usage](docs/usage/basic-usage.md) - Core functionality
- [Control Panel](docs/usage/control-panel.md) - Web interface guide

### API Reference

[](#api-reference)

- [API Overview](docs/api/overview.md) - Introduction to the API
- [Endpoints](docs/api/endpoints.md) - Available API endpoints

### Development

[](#development)

- [Project Structure](docs/architecture/structure.md) - Code organization
- [Troubleshooting](docs/troubleshooting.md) - Common issues and solutions

System Requirements
-------------------

[](#system-requirements)

RequirementVersionPHP8.1 or higherMySQL5.7+Apache/NginxLatestComposer2.0+Installation
------------

[](#installation)

To install, use the command: `git clone https://github.com/aidsoul/vktote`. Download the necessary libraries using the command: `composer install`.

Or use command `composer create-project aidsoul/vktote`.

### Import Database

[](#import-database)

Import the database file: `db.sql`.

Configuration
-------------

[](#configuration)

All files for working with groups are located in the "groups" folder.

> In the "groups" folder, folders with the files listed below are added. All these files are needed for work. Come up with a name for the folder yourself.

The following example is a true profile group creation:

```
groups
[test]=>[config.ini]
[test1]=>[config.ini]
[test...]=>[config.ini]

```

> If necessary, you can change the folder and the name of the files in the configuration file "**config.php**".

Configuration file "**config.ini**" should look like this:

```
[Db]
host="localhost"
dbName="vk"
user="root"
pass=""
[Vk]
token  ="Your token"
idGroup="Group id or name"
count="Number of posts to capture"
[Telegram]
botApiKey="Bot API Key"
botName="Bot name"
chatId="Chat Id for send post"
[Bot]
lang = "eng"
```

If there is a need to use a different database for each profile of the group you need to change the constant "DB\_COMMON" in config.php by setting the value to "true". You should also add: DB\_HOST, DB\_NAME, DB\_USER, DB\_PASS.

The following bot languages are available: English (eng) and Russian (rus).

Control Panel
-------------

[](#control-panel)

For the convenience of creating group profiles, use the control panel.

Use "**localhost**" to log in to the control panel. Click on the log in button. The first time you login, a password will be created. You need to remember the password, it will be used to access the control panel. Go to settings "**localhost/settings**" and create a new group profile by clicking on the "Create a settings profile" button.

Task Scheduler
--------------

[](#task-scheduler)

Use crontab on your server or another task scheduler to get fresh posts without stopping.

### Usage example

[](#usage-example)

Open and add a task to the task list: `crontab -e`.

Get fresh entries every minute: `* * * * * php start.php group_folder`.

Below is an example of running a task for the "test" group profile. Test is specified as an argument.

```
*/5 * * * * php start.php test

```

API
---

[](#api)

All API queries start with

### bot.start

[](#botstart)

Accepts a GET request with the parameter "group".

Example: [https://domain/api/bot.start?group=group\_name](https://domain/api/bot.start?group=group_name)

Technology Stack
----------------

[](#technology-stack)

- **Framework**: Custom PHP MVC
- **Router**: League\\Route
- **Templating**: Twig
- **Database**: MySQL with PDO
- **HTTP Client**: Guzzle

Support
-------

[](#support)

- 📖 [GitHub Repository](https://github.com/aidsoul/vktote)
- 🐛 [Issue Tracker](https://github.com/aidsoul/vktote/issues)
- 📧 [Contact Author](mailto:work-aidsoul@outlook.com)

License
-------

[](#license)

This project is licensed under the [MIT License](https://github.com/aidsoul/vktote/blob/main/LICENSE).

###  Health Score

48

—

FairBetter than 94% of packages

Maintenance92

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~142 days

Recently: every ~308 days

Total

11

Last Release

71d ago

Major Versions

v1.4.2 → v2.02025-11-28

PHP version history (2 changes)v1.0.0PHP &gt;=8

v2.2PHP &gt;=8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/496f46da5b79aa3ef1bfacadafdc3c86ab57089853c0227b8596f8802d24fef1?d=identicon)[AidSoul](/maintainers/AidSoul)

---

Top Contributors

[![aidsoul](https://avatars.githubusercontent.com/u/47852283?v=4)](https://github.com/aidsoul "aidsoul (53 commits)")

---

Tags

autopostingphptelegramtelegram-botvk

### Embed Badge

![Health badge](/badges/aidsoul-vktote/health.svg)

```
[![Health](https://phpackages.com/badges/aidsoul-vktote/health.svg)](https://phpackages.com/packages/aidsoul-vktote)
```

###  Alternatives

[shlinkio/shlink

A self-hosted and PHP-based URL shortener application with CLI and REST interfaces

4.8k4.3k](/packages/shlinkio-shlink)[pantheon-systems/terminus

A command line interface for Pantheon

3391.5M13](/packages/pantheon-systems-terminus)[rareloop/lumberjack-core

A powerful MVC framework for the modern WordPress developer. Write better, more expressive and easier to maintain code

42155.0k19](/packages/rareloop-lumberjack-core)[simplesamlphp/simplesamlphp-module-oidc

A SimpleSAMLphp module adding support for the OpenID Connect protocol

5016.9k1](/packages/simplesamlphp-simplesamlphp-module-oidc)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
