Jump to content

What is this error, i've never seen it before??


Orionsbelter

Recommended Posts

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 () in Unknown on line 0

 

This PHP error has only just popped up on my script, there has been no changes to the script. However i recently reformatted my laptop and reinstalled Google Chrome.

 

Can some please help me by telling me what this error means. Thank you :D

worked it out,

 

session_register('username');

$_SESSION['username'] = $fetch->Username;

 

CHANGED IT TO:

 

session_register('username');

$_SESSION['username'] = "$fetch->Username";

 

It did work before with the "" but i had to add the " " for it too work.

 

Thank you everybody :D

Well.. if its a shared hosting account, one of the shared accounts on the system could be abusing something causing the tmp folder to fill. It could also be just a fluke, I remember once that I had an Issue like that I think it was on godaddy of all hosting services, or yahoo, either way. The tmp directory was just refered to wrongly and just had to be added in through code as a quick fix.

 

I also had a similar issue when i set up a WAMP on my home machine for developement. The case there was windows was blocking it somehow.. I forget how, but I had to redo a section of my php.ini to fix the issue

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.