View Single Post
  #9  
Old 12-11-2012, 03:26 PM
powerchaos's Avatar
powerchaos powerchaos is offline
WebMaster
 
Join Date: May 2008
Posts: 130
Gender: Male
Credits: 10,399
powerchaos
Send a message via AIM to powerchaos Send a message via MSN to powerchaos
Default

well , lets start with the debug

first problem
Quote:
Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0
it says .. hard disk is full , or on the next line it says that the temp folder is full

contact your host and ask him to incrase the temp size or to clean the temp directory or to move the temp directory to a emty drive

then for the headers
those errors only happends if the script try to send a header when the header already exist

a example
Code:
session_start()
if that code is included in 2 pages and you acces both pages then the second page will FAIL to load ( can not start session , session already started at line 0 ) as it already loaded that part from a other page

probaly that error is generated in this case because of the disk error ( seems to reffer from the cookie php script)

as the other pages also contains the same function will it try to load ( as it does not exist) but it was loaded before so it trows out a error

nothing you can do to fix it with out debuggin and by getting rid of the thing that start all of this

in this case , first fix would be to get rid of the no space error by swapping a hd or cleaning the temp directory or by moving the temp directory to a other location

hopely i explained it right

Greetings From PowerChaos
Reply With Quote