
|
php: 'Fatal error: Call to undefined function session_name()' keywords : php php.ini extensions 'Fatal error: Call to undefined function session_name()' I had this error on a old php4.3 and it took me a while to solve it. The message means that sessions are not working well in php. There are a lot of session-related configentries in php.ini but setting them is not all. You need to have sessions enabled in php first. And information about how to do this is rare. Seems that either you have to compile it in php manually or - if you installed php via packages - you have to install the php-sessions-package (php4-sessions in my case : suse9.1) and enable it by adding the following line to your php.ini extension=session.so serial : 383 If you found any nonsense in this entry or want to see important improvements, I would appreatiate to receive your comments at knowledge@goldfisch.at disclaimer : all these entries are part of my very private knowledgebase that I created while solving problems. Many solutions are taken from other webpages or from usenet. There is no warranty for this entries of course. Some of the articles are even stupid and one day you might even find the name of my prefered pizza-service in here, cause I always forget about it. Remember : This is my knowledgebase. If you need professional support and are willing to pay for it just email me at pilsl@goldfisch.at For enlightment take a look at http://leblogsportif.sportnation.at |