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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.