Are you on windows? The error message is very much self explanatory. Check php.ini and find the session.save_path. Make sure that the file mentioned exists and is writable.
Category Archives: Programming
.htaccess Generator
.htaccess File Wizard The .htaccess is a simple method that allows you to customise the way the webserver works on a per directory basis. The .htaccess file is a simple ASCII text file, which when placed in a certain directory in your webspace, will cause the webserver to use that configuration on all files in …
Absolute CSS Boxes
Quite some time ago, I had an argument with a friend who is a big fan of Microsoft products. While I’m no Xbox hater, I am not very fond of some of their more shoddy products such as Internet Explorer. He was justifying the shortcomings of IE6, saying that absolute positioning is rarely used in …
Flash convert String To Number
var myhe:Number=parseInt(mystring);
Flash countdown preloader
this.onEnterFrame = function() { var amount:Number = this.getBytesLoaded() / this.getBytesTotal() *100; loader.bar._xscale = amount; loader.loadText.text = 100 – Math.floor(Math.round(amount)/1)+”%”; if(amount < 85){ loader.alphaTo(0,2,"easeOutSine",0); } if(amount == 100) { gotoAndPlay("fadeout"); delete this.onEnterFrame; } }
Zigoengine multiple effects
multiple effects ZigoEngine.doTween(logo, “_alpha,Blur_blur”, [0,50], 0, “linear”,0); ZigoEngine.doTween(logo, “_alpha,Blur_blur”, [100,0], 4, “linear”, 0.2); logo= instance name of MC