{"id":28240376,"url":"https://github.com/superswan/anyspace","last_synced_at":"2025-10-07T02:12:37.410Z","repository":{"id":221607909,"uuid":"754415461","full_name":"superswan/anyspace","owner":"superswan","description":"A simple Social Network similar to MySpace circa 2005 ","archived":false,"fork":false,"pushed_at":"2024-11-12T02:40:59.000Z","size":4138,"stargazers_count":29,"open_issues_count":6,"forks_count":8,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-06-12T05:40:39.727Z","etag":null,"topics":["crud","myspace","php","social-network","spacemy"],"latest_commit_sha":null,"homepage":"https://anyspace.3to.moe/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/superswan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-08T01:58:56.000Z","updated_at":"2025-04-11T01:21:08.000Z","dependencies_parsed_at":"2024-11-11T01:25:20.401Z","dependency_job_id":"860774a0-c6ac-4cff-abc3-3454c5327d9b","html_url":"https://github.com/superswan/anyspace","commit_stats":null,"previous_names":["superswan/anyspace"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/superswan/anyspace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superswan%2Fanyspace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superswan%2Fanyspace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superswan%2Fanyspace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superswan%2Fanyspace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/superswan","download_url":"https://codeload.github.com/superswan/anyspace/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superswan%2Fanyspace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278708004,"owners_count":26031932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crud","myspace","php","social-network","spacemy"],"created_at":"2025-05-19T03:13:11.144Z","updated_at":"2025-10-07T02:12:37.377Z","avatar_url":"https://github.com/superswan.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AnySpace \nAnySpace is an Open Source Social Network platform similar to MySpace circa 2005-2007, designed with self-hosting in mind. A homage to the golden era of social networking, bringing back the simplicity and charm of early social media platforms with a focus on privacy, user experience, and community \n\nDesigned to be lightweight, user-friendly, and customizable, allowing users to express themselves just like in the old days but with the peace of mind that modern security practices bring.\n\n- **Profiles:** Customizable user profiles with options for background images, music, and integrated layout support.\n- **Blogging:** A blogging platform for users to share thoughts, stories, and updates.\n- **Messaging:** Private and secure messaging between users.\n- **Friends:** Connect with others, manage friendship requests, and explore user profiles.\n- **Groups:** Create and join interest-based groups for discussions and events.\n- **Customization:** Extensive customization options for user profiles and blogs.\n\n## Prerequisites\n- PHP \u003e= 5.3\n- MySQL \u003e= 5.0 or compatible database\n- Web Server (Apache/Nginx)\n\n## Install\n\n1. Clone repo and transfer files to webserver. Webserver should serve files in `public` directory. (Example Apache and Nginx configurations are provided in the repo)\n2. Navigate to you webserver to create config.php and setup the database. The `core` directory will need to be writable by the webserver user.\n\n`pfp` and `music` folders need r/w/x permissions for the webserver user. \n\nIt's recommended to set the following in your `php.ini`\n\n```\nfile_uploads = On\nupload_max_filesize = 10M\npost_max_size = 15M\nmax_execution_time = 60\nmax_input_time = 120\nmemory_limit = 128M\n```\n\n### Admin Panel\nThe admin panel should not be made available to the public. The id of the admin user can be set in `config.php`, by\ndefault it is set to user with id 1. Future plans include multi-user access to the admin panel using a permissions\nsystem.  \n\n## Features\n\n- [x] Admin Panel \n- [ ] Authentication\n  - [x] Login/Logout\n  - [x] Registration\n  - [ ] Password Reset\n  - [ ] Email Verification\n- [x] Blog\n- [x] Bulletins\n- [x] Comment System\n- [x] Favorite Users\n- [ ] Forum\n- [x] Friend System\n- [ ] Group System\n- [ ] Layout sharing feature\n- [ ] Private Messaging\n- [ ] Report System\n- [ ] Session Management\n- [x] User Browser\n- [x] User Search\n- [x] User Profiles\n- [x] Custom HTML/CSS Profile Layouts\n\n## Screenshot\n\n![screenshot](public/docs/screenshot.png)\n\n## Project Structure\n\n```\nproject-root/\n│\n├───admin/                    # Administration tools and dashboards\n│\n├───core/                     # Core application logic\n│   ├───components/           # Shared site components\n│   ├───site/                 # Site-specific functionality\n│   └───tools/                # Tools and utilities\n│\n├───lib/                      # Libraries and dependencies\n│\n└───public/                   # Publicly accessible files\n    │\n    ├───blog/                 # Blog related files\n    │   └───editor/           # Trumbowyg WYSIWIG editor components\n    │       ├───langs/        # Language files for Trumbowyg\n    │       └───plugins/      # Plugins for Trumbowyg \n    │\n    ├───bulletins/             # Bulletins related files\n    ├───docs/                  # Documentation files\n    ├───forum/                 # Forum related files\n    ├───groups/                # Groups related files\n    ├───layouts/               # Layout related files\n    ├───media/                 # User uploaded media files\n    │   ├───music/             # Music files\n    │   └───pfp/               # Profile picture files\n    │\n    └───static/                # Static assets\n        ├───css/               # CSS files\n        ├───icons/             # Icon files\n        └───img/               # Image files\n\n```\n\n## Quirks\n- Developed with PHP 5.3 compatibility in mind due to limitations of developer hardware\n- Database schema will change frequently at this stage of development. If you receive a \"PDO exception\" you most likely need to create the appropriate  table or column.\n\n## Credits\n\n[MySpace](myspace.com) \u003cbr\u003e\n[SpaceHey](spacehey.com) \u003cbr\u003e\n[This spacemy.xyz codebase](https://github.com/Ahe4d/spacemy.xyz) \u003cbr\u003e\n[Trumbowyg](https://github.com/Alex-D/Trumbowyg)\u003cbr\u003e\n[@wittenbrock](https://github.com/wittenbrock/toms-myspace-page) ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperswan%2Fanyspace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuperswan%2Fanyspace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperswan%2Fanyspace/lists"}