(0)

Cart.

Qty. Item Subtotal
Total $0.00
(Close)

Bus
Projects

GF, 7 Ltl. Miller St
Brunswick East,
VIC 3057 AUS

Opening Hours

Wed–Fri 12–5pm
Sat 12–4pm

FB, TW, IG.

Engages,

2021 Online Fundraiser

Dates: Tuesday 16th November, 6–8pm

This year we are doing things slightly differently and hosting our fundraiser exhibition online. For one night only, unique artworks by our community of emerging, mid-career, and established artists will be available for acquisition. The artworks will be released on Instagram from 6pm.

100% of the proceeds from this fundraiser will go towards ensuring a greater level of continued investment in the artists who take part in our programs. In 2020, we removed the inequitable economy of charging artists fees to exhibit. Your support this year ensures that Bus Projects can continue to offer accessible exhibition opportunities to artists in 2022, including increased artist fees and production support. All donations big and small will help us to meet our goal of raising $10,000.

Artists generously providing artworks include:

Abbra Kotlarczyk, Andrew Browne, Arini Byng, Bill Hawkins, Brent Harris, Caspar Connolly, Danni McGrath, Darcey Bella Arnold, Dell Stewart, Elvis Richardson, Emily Ferretti, Emily Floyd, Francis Carmody, Gian Manik, Grace Culley, Jaime Powell, James Geurts, Janelle Low, Jemi Gale, Jimmy Nuttall, Josephine Mead, Julia Gorman, Kari Lee McInneny Mcrae, Kate Tucker, Katherine Hattam, Kay Abude, Liam Denny, Linda Knight, Lou Hubbard, Lucy Foster, Mia Boe, Rose Nolan, Sarah crowEST, Snack Syndicate, Trent Walter, Zara Sully and more!



How the process will work:
– From 6pm on November 16th, Bus Projects will release a new work for sale on Instagram every 5 minutes.
– Comment SOLD to purchase.
– You will then be sent a link via Direct Message to process payment online. If payment is not received within 24 hours, the work will be offered to the next commenter.
– Purchased work to be collected from Bus Projects, Melbourne, Victoria or couriered at buyers expense.
– Purchases are only open to buyers based in Victoria.

Given the challenges of this past year, and the ongoing impact of the pandemic on our arts sector, we have invited each contributing artist to self-determine the commission percentage. This ensures that your donation directly supports not only Bus Projects but most importantly our community of artists.

Tuesday November 16th, 6–8pm

Kirby CMS Debugger
Whoops \ Exception \ ErrorException (E_NOTICE)
fwrite(): Write of 275 bytes failed with errno=28 No space left on device Whoops\Exception\ErrorException thrown with message "fwrite(): Write of 275 bytes failed with errno=28 No space left on device" Stacktrace: #3 Whoops\Exception\ErrorException in /var/www/bus-projects/kirby/src/Session/FileSessionStore.php:288 #2 fwrite in /var/www/bus-projects/kirby/src/Session/FileSessionStore.php:288 #1 Kirby\Session\FileSessionStore:set in /var/www/bus-projects/kirby/src/Session/Session.php:377 #0 Kirby\Session\Session:commit in [internal]:0
Stack frames (4)
3
Whoops\Exception\ErrorException
/kirby/src/Session/FileSessionStore.php288
2
fwrite
/kirby/src/Session/FileSessionStore.php288
1
Kirby\Session\FileSessionStore set
/kirby/src/Session/Session.php377
0
Kirby\Session\Session commit
[internal]0
/var/www/bus-projects/kirby/src/Session/FileSessionStore.php
                'fallback'  => 'Cannot write to session "' . $name . '", because it is not locked',
                'translate' => false,
                'httpCode'  => 500
            ]);
        }
 
        // delete all file contents first
        if (rewind($handle) !== true || ftruncate($handle, 0) !== true) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
 
        // write the new contents
        $result = fwrite($handle, $data);
        if (!is_int($result) || $result === 0) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
    }
 
    /**
     * Deletes the given session
     *
     * Needs to throw an Exception on error.
     *
     * @param int $expiryTime Timestamp
     * @param string $id Session ID
     * @return void
/var/www/bus-projects/kirby/src/Session/FileSessionStore.php
                'fallback'  => 'Cannot write to session "' . $name . '", because it is not locked',
                'translate' => false,
                'httpCode'  => 500
            ]);
        }
 
        // delete all file contents first
        if (rewind($handle) !== true || ftruncate($handle, 0) !== true) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
 
        // write the new contents
        $result = fwrite($handle, $data);
        if (!is_int($result) || $result === 0) {
            // @codeCoverageIgnoreStart
            throw new Exception([
                'key'       => 'session.filestore.unexpectedFilesystemError',
                'fallback'  => 'Unexpected file system error',
                'translate' => false,
                'httpCode'  => 500
            ]);
            // @codeCoverageIgnoreEnd
        }
    }
 
    /**
     * Deletes the given session
     *
     * Needs to throw an Exception on error.
     *
     * @param int $expiryTime Timestamp
     * @param string $id Session ID
     * @return void
/var/www/bus-projects/kirby/src/Session/Session.php
                'newSession' => $this->newSession
            ];
        } else {
            $data = [
                'startTime'    => $this->startTime(),
                'expiryTime'   => $this->expiryTime(),
                'duration'     => $this->duration(),
                'timeout'      => $this->timeout(),
                'lastActivity' => $this->lastActivity,
                'renewable'    => $this->renewable(),
                'data'         => $this->data()->get()
            ];
        }
 
        // encode the data and attach an HMAC
        $data = serialize($data);
        $data = hash_hmac('sha256', $data, $this->tokenKey) . "\n" . $data;
 
        // store the data
        $this->sessions->store()->set($this->tokenExpiry, $this->tokenId, $data);
        $this->sessions->store()->unlock($this->tokenExpiry, $this->tokenId);
        $this->writeMode = false;
    }
 
    /**
     * Entirely destroys the session
     *
     * @return void
     */
    public function destroy()
    {
        // no need to destroy new or destroyed sessions
        if ($this->tokenExpiry === null || $this->destroyed === true) {
            return;
        }
 
        // remove session file
        $this->sessions->store()->destroy($this->tokenExpiry, $this->tokenId);
        $this->destroyed           = true;
        $this->writeMode           = false;
[internal]

Environment & details:

empty
empty
empty
Key Value
kirby_session 4f1cd500b05590b70d67ef71bb10f769607082de+1731542132.beb632d232dc23e89871.313ac388e02d8ca31b1f54a891f46f00c84a25c93cfcc7fcd05cb02987052345
empty
Key Value
REDIRECT_HTTP_AUTHORIZATION
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI www.busprojects.org.au
REDIRECT_STATUS 200
HTTP_AUTHORIZATION
HTTPS on
SSL_TLS_SNI www.busprojects.org.au
HTTP_USER_AGENT CCBot/2.0 (https://commoncrawl.org/faq/)
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.5
HTTP_IF_MODIFIED_SINCE Wed, 22 May 2024 08:05:59 GMT
HTTP_ACCEPT_ENCODING br,gzip
HTTP_HOST www.busprojects.org.au
HTTP_CONNECTION Keep-Alive
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE <address>Apache/2.4.59 (Debian) Server at www.busprojects.org.au Port 443</address>
SERVER_SOFTWARE Apache/2.4.59 (Debian)
SERVER_NAME www.busprojects.org.au
SERVER_ADDR 178.128.118.106
SERVER_PORT 443
REMOTE_ADDR 3.233.242.216
DOCUMENT_ROOT /var/www/bus-projects
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/bus-projects
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /var/www/bus-projects/index.php
REMOTE_PORT 56276
REDIRECT_URL /program/2021-fundraiser
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /program/2021-fundraiser
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1731534932.2414
REQUEST_TIME 1731534932
empty
0. Whoops\Handler\PrettyPageHandler
1. Whoops\Handler\CallbackHandler