Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Warning: Unknown(): write failed: No space left on device


3 replies to this topic

#1 Paul UK

  • Community Member
  • 2 posts
  • Real Name:Paul

Posted 04 August 2003, 16:23

Hi,

I wonder if anyone can help.

I get the following error message on some of the catalog pages and some admin pages:

Warning: Unknown(): write failed: No space left on device (28) in Unknown on line 0

It has only just started happening, when I added a new item.

Do you have any ideas? :(

I have unlimited web hosting space, unlimited MySQL database space and unlimited data transfer.

Thanks in advance,

Paul

#2 Paul UK

  • Community Member
  • 2 posts
  • Real Name:Paul

Posted 04 August 2003, 16:28

The full error message:

Warning: Unknown(): write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/tmp) in Unknown on line 0

#3 The_Bear

  • Community Member
  • 5,388 posts
  • Real Name:Pierre Rollin
  • Location:Canada

Posted 04 August 2003, 16:30

Try saving your sessions in MySQL
Change it in both admin and catalog/includes/configure.php

HTH
The_Bear
Pierre Rollin

#4 jcurtis3

  • Community Member
  • 43 posts
  • Real Name:Jim Curtis

Posted 09 September 2004, 09:53

I copied this from another message. It worked for me:

Try storing session data in the database rather than in /tmp. It appears that /tmp is out of space....

So in both of the following files,

catalog/includes/configure.php
admin/includes/configure.php

Change

from

QUOTE

define('STORE_SESSIONS', '');




to

QUOTE

define('STORE_SESSIONS', 'mysql');