> ## Documentation Index
> Fetch the complete documentation index at: https://docs.minestorecms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Images Aren't Updating

> Learn how to fix the issue when your logo and other images are not updating on your MineStoreCMS webstore. Follow issue solutions step by step.

## My Logo and other Images are not updating?

### Possible Issue: Browser Cache

If your logo and other images are not updating, it might be due to **browser cache**. Simply **clear your browser cache** by **pressing** the following keys: `Ctrl + F5`.

### Possible Issue: Cloudflare Cache

If your logo and other images are not updating, there might be a **Cloudflare Cache Issue**.

You can purge the Cloudflare cache by **following the steps below**:

1. Login to your **Cloudflare Account**.
2. Go to the **Caching > Configuration** tab.
3. Click on the **Purge Everything** button.

After purging the **Cloudflare Cache**, your logo and other images will be updated on the webstore.

### Possible Issue: File Permissions

If your logo and other images are still not updating after purging **Cloudflare Cache**, you can try to **reset default file permissions** by running the following commands in the terminal:

```bash theme={null}
cd /var/www/minestore
chown -R www-data:www-data .
chmod -R 755 .env storage/* bootstrap/cache public/img public/img/*
chown root updater
chmod u=rwx,go=xr,+s updater
chmod +x /var/www/minestore/frontend.sh
```
