LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 12-04-2005, 06:24 AM   #1
marwan_mostafa
LQ Newbie
 
Registered: Nov 2005
Posts: 24

Rep: Reputation: 15
i have a problem please


hi body

i have SuSE operating system installed on machine and i install and configure the apache service to runninig the web with php pages i extract all the files that i need to run the php pages on the services i try it on windows it's running very perfect when i try to do it in linux noooooooooo way

every time it's appear to me this message :

Fatal error: Call to undefined function: session_is_registered() in /srv/www/htdocs/index.php on line 45

and any PHP page i try to open it on the localhost

can anybody give me any opinion for this problem and how i can solve it please

THANX A LOT
 
Old 12-04-2005, 06:29 AM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
please use suitable thread titles in future, thanks.
 
Old 12-04-2005, 07:17 AM   #3
marwan_mostafa
LQ Newbie
 
Registered: Nov 2005
Posts: 24

Original Poster
Rep: Reputation: 15
thank you sir for your replying

but what did you mean ????????????????????????

 
Old 12-04-2005, 08:27 AM   #4
slackist
Member
 
Registered: Feb 2004
Location: Phuket
Distribution: Slackware 14.2 and Slackware Arm
Posts: 479

Rep: Reputation: 44
He means that "I have a problem please" is not the best title for your question.

Here is some advice posted by trickykid before on creating good titles:
Quote:
-------------------------------------
Bad Titles - Should be avoided at all times.

"help"
"help me"
"please help me"
"need help"
"urgent linux doesn't work"
"i need help, its urgent"

-------------------------------------
Better Titles - Gives slight insight and clues to your question/thread.

"modem doesn't work"
"can't connect to the internet"
"my hard drive isn't being detected"
"linux keeps rebooting itself"
"can't receive email"
"ethernet card not detected"

-------------------------------------
Excellent Titles - Gives more details in title.

"External Motorola Modem Model 100CTX Blah doesn't work?"
"Cannot connect to internet but can ping IP addresses?"
"Installed new hard drive not detected: Maxtor Model Number Blah 80GB SATA"
"Fedora Core 4 new install keeps rebooting itself after kernel upgrade"
"Sendmail installation, can't recieve new mail but can send?"
"Installed 3com NIC, not detected?

-------------------------------------
Pure Genius Titles - The type of title that most could probably give a solution to without reading the actual thread.

"Fedora Core 3: External Motorola Modem Model Blah no dial tone when dialing?"
"Slackware: 3com NIC detected with IP address but can't reach web sites"
"Redhat ES3 MySQL 4.0.21 RPM installation issues, Error: error here blah blah"


If your in doubt of what to title your thread, simply pasting the error message is always a good start. Or if your not getting an error, stating the distribution used or application is always another good start. If its generic like a networking issue that you have no clue on what is going on, a simple "Network Issue: Brief description of what your doing here" works as well.
 
Old 12-04-2005, 11:04 AM   #5
comprookie2000
Gentoo Developer
 
Registered: Feb 2004
Location: Fort Lauderdale FL.
Distribution: Gentoo
Posts: 3,291
Blog Entries: 5

Rep: Reputation: 58
I would check this;
Fatal error: Call to undefined function: session_is_registered() in /srv/www/htdocs/index.php on line 45
 
Old 12-06-2005, 12:29 AM   #6
marwan_mostafa
LQ Newbie
 
Registered: Nov 2005
Posts: 24

Original Poster
Rep: Reputation: 15
thank you sir for your advise

please can you tell me how i can solve this problem

thanx a lot
 
Old 09-18-2010, 03:32 PM   #7
hubiedo
LQ Newbie
 
Registered: Feb 2008
Posts: 8

Rep: Reputation: 0
thank you for your old postings. i used it to fix my problems w/ a scsi tape drive on an old fc5 system that i am working on. the answer by kilgoretrout in this thread yielded the following commands which were invaluable to fix this.

#lsmod

#modprobe st

#mt -f /dev/nst0 retension (which i adjusted to my sitiuation st0)

the other things i picked up along the way that were also helpful are

#cat /proc/scsi/scsi

which helped to see if it was loaded and recognized.

#more /var/log/dmsg

you will have to try your luck to see how they all fit together -- basically the /dev/tape article is what really got it going the right direction plus the commands added to /etc/rc.local. you need to run the commands above first then see where you are at

this article (below) plus this post allowed me to fix the tape bu problems and i just wanted it out there somewhere that someone may find it like i did.

http://www.redhat.com/archives/fedor.../msg00160.html

text below:

Re: /dev/tape

--------------------------------------------------------------------------------

From: "Mikkel L. Ellertson" <mikkel infinity-ltd com>
To: For users of Fedora Core releases <fedora-list redhat com>
Subject: Re: /dev/tape
Date: Thu, 01 Jun 2006 17:50:54 -0500

--------------------------------------------------------------------------------

Les Mikesell wrote:
> On Thu, 2006-06-01 at 17:19 -0500, Mikkel L. Ellertson wrote:
>> Les Mikesell wrote:
>>> After installing FC5, I don't see /dev/tape showing up as a symlink
>>> to /dev/nst0 anymore and it disappears after a reboot if I add one
>>> manually to make mt and amanda work. The tape drive wasn't attached
>>> when I installed - would that make a difference?
>>> /etc/udev/rules.d/50-udev.rules does have an entry:
>>> KERNEL=="nst[0-9]", BUS=="scsi", SYMLINK+="tape-%k", MODE="0660"
>>> and I do have /dev/nst0. Does it need something else?
>>>
>> Looking at this rule, you probably have something like /dev/tape-0
>> instead of /dev/tape. The %k is replaced with the kernel number, so
>> that /dev/nst0 gets a /dev/tape-0 symlink. /dev/nst1 would get
>> /dev/tape-1, and so forth.
>
> Actually it is making tape-nst0 -> nst0, but that doesn't help
> much.
>
Oops - you are correct. %k is kernel name, and %n is number. In any
case, if you are only using one tape device, you could create a rule
to give you /dev/tape and /dev/ntape. What I would do is create a
file in /etc/udev/rules.d called 15-local.rules and put in two lines:

******* NOTE THIS WORKS LIKE A CHARM******

KERNEL=="nst0", BUS=="scsi", SYMLINK+="ntape", MODE="0660"
KERNEL=="st0", BUS=="scsi", SYMLINK+="tape", MODE="0660"

At least, I normally use tape for the rewinding device and ntape for
the non-rewinding device. The name used is not critical as long as
your rules come before the default rules listed above.

Mikkel
--

Do not meddle in the affairs of dragons,
for thou art crunchy and taste good with Ketchup!


from another source ??? i also got this little jewel:

put these in /etc/rc.local

modprobe st
modprobe ide-scsi

evidently it will cause everything to "load" after everything else is done. two reboots and i was in business!!

Last edited by hubiedo; 09-18-2010 at 03:50 PM. Reason: additional information
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
perl problem? apache problem? cgi problem? WorldBuilder Linux - Software 1 09-17-2003 07:45 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:44 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration