Radu andreherberth here is the composer.log Installing flarum/flarum (v0.1.0-beta.7) - Installing flarum/flarum (v0.1.0-beta.7): Downloading (100%) The Process class relies on proc_open, which is not available on your PHP installation. The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems) Unzip with unzip command failed, falling back to ZipArchive class Created project in ./flarumtemp Loading composer repositories with package information Updating dependencies (including require-dev)
andreherberth Issue fixed, was some security related php functions that was locked down.(proc_open,proc_close and proc_get_status). Host allowed this to be maintained on user level, so a few edits, and flarum is now installed.
andreherberth Ridan Hi, sorry for not seeing this before. Can you provide me with any more information in regards of your issue?
Kryonoglou I cant post, upload image, use administrator page. DEBUG: GET http://www.mantepse.gr/api/users/1 File not found. POST http://www.mantepse.gr/api/discussions File not found. POST http://www.mantepse.gr/api/users/1/avatar File not found. ADMINISTRATOR PAGE: File not found.
andreherberth Kryonoglou The api.php file is present: http://www.mantepse.gr/api.php, so, your issue seems to be related to missing NGINX rewrite rules. You need at least the following to make it work. location / { try_files $uri $uri/ /index.php?$query_string; } location /api { try_files $uri $uri/ /api.php?$query_string; } location /admin { try_files $uri $uri/ /admin.php?$query_string; } Take a look at https://flarum.org/docs/installation/ for an example nginx config (Can't be used as a copy paste config though, due to the "location ~* .php$" part. )
BrandHyde Hello there! Stuck on 6, on shared hosting. If you could discord me, or anyone! I would really appreciate it thanks! actualbrand#9355
andreherberth Issue fixed. Host allowed increasing timeout's and add some missing extensions to php from their panel.
EvelinaAdamovi Great installer. Works perfect. But have one question, can Pockethold do upgrade to newer Flarum version? If I now use Flarum 0.1.0-beta.7 how in future I can update it to 0.1.0-beta.8 with Pockethold?
andreherberth EvelinaAdamovi Hi, as for now, Pockethold will not include an update function on it's own ? I could, in theory, create an update version of PH, but, I am unsure how to handle extension updates and the way flarums folder structure will change.
luceos andreherberth updating flarum is a possible feature of bazaar for the future; i think that reduces complexity in pockethold that would not benefit from an increased runtime size?
andreherberth luceos True. If pockethold ever provides update functionality, it would be trough a separate file. Alas, I believe if it was included in Bazaar, it could making sure update is only available if extensions are compatible, or let users disable extensions if they are not?
luceos andreherberth it could making sure update is only available if extensions are compatible, or let users disable extensions if they are not Indeed.