{"id":45423542,"url":"https://github.com/guillermomartinez/filemanager-php","last_synced_at":"2026-02-22T01:44:44.001Z","repository":{"id":28263860,"uuid":"31774093","full_name":"guillermomartinez/filemanager-php","owner":"guillermomartinez","description":"It is the connector to the File Manager, regardless of the GUI.","archived":false,"fork":false,"pushed_at":"2023-03-07T05:21:45.000Z","size":3384,"stargazers_count":25,"open_issues_count":4,"forks_count":16,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-09-03T01:52:11.272Z","etag":null,"topics":["connector","file-manager","filemanager","filemanager-ui","gallery","gui","media-center","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guillermomartinez.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}},"created_at":"2015-03-06T14:55:41.000Z","updated_at":"2024-12-29T15:49:23.000Z","dependencies_parsed_at":"2022-08-21T12:20:53.129Z","dependency_job_id":null,"html_url":"https://github.com/guillermomartinez/filemanager-php","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/guillermomartinez/filemanager-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillermomartinez%2Ffilemanager-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillermomartinez%2Ffilemanager-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillermomartinez%2Ffilemanager-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillermomartinez%2Ffilemanager-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guillermomartinez","download_url":"https://codeload.github.com/guillermomartinez/filemanager-php/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillermomartinez%2Ffilemanager-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29703227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T23:35:04.139Z","status":"ssl_error","status_checked_at":"2026-02-21T23:35:03.832Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["connector","file-manager","filemanager","filemanager-ui","gallery","gui","media-center","php"],"created_at":"2026-02-22T01:44:43.400Z","updated_at":"2026-02-22T01:44:43.993Z","avatar_url":"https://github.com/guillermomartinez.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Filemanager for PHP\nIt is the connector to the File Manager, [guillermomartinez/filemanager-ui](https://github.com/guillermomartinez/filemanager-ui) It is the GUI.\n\n## Required\n- PHP \u003e= 5.4\n\n## Wiki\n[Wiki](https://github.com/guillermomartinez/filemanager-ui/wiki)\n\n## Installation\n```\ncomposer require guillermomartinez/filemanager-php:0.1.*\n```\nCreate file conector.php in folder public_html\n\n```\n\u003c?php\ninclude(\"vendor/autoload.php\");\nuse GuillermoMartinez\\Filemanager\\Filemanager;\n\n// Add your own authentication method\n//if(!isset($_SESSION['username']) || $_SESSION['username']!=\"\")\n//  exit();\n$extra = array(\n\t// path after of root folder\n\t// if /var/www/public_html is your document root web server\n\t// then source= usefiles o filemanager/usefiles\n\t\"source\" =\u003e \"userfiles\",\n\t// url domain\n\t// so that the files and show well http://php-filemanager.rhcloud.com/userfiles/imagen.jpg\n\t// o http://php-filemanager.rhcloud.com/filemanager/userfiles/imagen.jpg\n\t\"url\" =\u003e \"http://php-filemanager.rhcloud.com/\",\n\t\"debug\" =\u003e false,\n\t\"images\" =\u003e [\n        \t'resize'=\u003e[\n\t\t\t// width,height,IF TRUE crop in width ELSEIF NULL is auto,IF TRUE crop in height ELSEIF NULL is auto\n            \t\t'medium' =\u003e array(340,180,true,true),\n\t\t\t'large' =\u003e array(1024,768,true,true),\n        \t]\n    \t],\n\t);\nif(isset($_POST['typeFile']) \u0026\u0026 $_POST['typeFile']=='images'){\n    $extra['type_file'] = 'images';\n}\n$f = new Filemanager($extra);\n$f-\u003erun();\n?\u003e\n```\n\nInstall https://github.com/guillermomartinez/filemanager-ui for user interface.\n\n## Demo\nhttp://php-filemanager.rhcloud.com/\n\n![demo2](https://cloud.githubusercontent.com/assets/5642429/8630887/aec46114-2731-11e5-9a7b-907127d77891.jpg)\n![demo1](https://cloud.githubusercontent.com/assets/5642429/8630885/ae7e7122-2731-11e5-88bb-b8fd2f5ae9a5.jpg)\n![demo3](https://cloud.githubusercontent.com/assets/5642429/8630886/aeaa1b7e-2731-11e5-9097-cafeefba1aea.jpg)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillermomartinez%2Ffilemanager-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguillermomartinez%2Ffilemanager-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillermomartinez%2Ffilemanager-php/lists"}