Tilly The Coder
Tilly The Coder
Glassy theme

Glassy theme

Resolved
By Horváth András 3 weeks ago

Hello Tilly!

I need some help, recently i bought the theme on Anystack and the time comes now to test it out, but i stuck in the installation on windows. Please resolve the issue.

This is what i tried:

λ composer require matildevoldsen/glassy-filament

In CurlDownloader.php line 370:

curl error 23 while downloading https://glassy-filament-theme.composer.sh/packages.json: Failed writing received data to disk/application

require [--dev] [--dry-run] [--prefer-source] [--prefer-dist] [--prefer-install PREFER-INSTALL] [--fixed] [--no-suggest] [--no-progress] [--no-update] [--no-install] [--no-audit] [--audit-format AUDIT-FORMAT] [--update-no-dev] [-w|--update-with-dependencies] [-W|--update-with-all-dependencies] [--with-dependencies] [--with-all-dependencies] [--ignore-platform-req IGNORE-PLATFORM-REQ] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [-m|--minimal-changes] [--sort-packages] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--apcu-autoloader-prefix APCU-AUTOLOADER-PREFIX] [--] [...]

I also tried this:

λ composer config repositories.glassy '{"type":"composer","url":"https://repo.anystack.sh"}'

In JsonFile.php line 372:

The input does not contain valid JSON Parse error on line 1: '... ^ Invalid string, it appears you used single quotes instead of double quotes

config [-g|--global] [-e|--editor] [-a|--auth] [--unset] [-l|--list] [-f|--file FILE] [--absolute] [-j|--json] [-m|--merge] [--append] [--source] [--] [ [...]]

I really love your content, just keep up :)

Thank you Bundy

Filament
Glassy Filament

Replies (2)

Horváth András 2 weeks ago

Thank you for your kind response.

I resolved the issue, it was caused by php 8.3 and composer relation, on Windows, using Laragon. Switch to 8.4, all problems resolved.

So, i just now see your theme, it is amazing, thank you for your work and your motivating videos :)

Tilly The Coder 3 weeks ago

Hey! I don't use Window's but this appear to be a composer issue rather than an issue with the package. Try this out:

  1. Fix Composer’s temp/cache on Windows (for the curl error 23) PowerShell
# from your project folder
$env:COMPOSER_HOME="$HOME\AppData\Roaming\Composer"
$env:COMPOSER_CACHE_DIR="$env:LOCALAPPDATA\Composer"
composer clear-cache

Command Prompt (cmd.exe / Cmder)

set COMPOSER_HOME=%USERPROFILE%\AppData\Roaming\Composer
set COMPOSER_CACHE_DIR=%LOCALAPPDATA%\Composer
composer clear-cache

Also make sure the drive with %TEMP% has free space and that antivirus isn’t locking those folders.

  1. Composer dumpautoload

Ensure composer is up to date and run dumpautoload.

If that doesn't work let me know!

Please sign in to reply.

Sign in

Are you sure you want to permanently delete this reply? This action cannot be undone.