Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to install pspell for PHP 5 in Ubuntu. I have installed the aspell library which is required to run pspell as shown here

I am not sure if there are any settings I need to change, etc.

When I try to execute the below mentioned line of code

$pspell_link = pspell_new("en");

I get an error

Fatal error: Call to undefined function pspell_new()

Any idea on what could be wrong ?

Any help greatly appreciated.

share|improve this question
Should this be on Server fault? – Ben Everard Dec 24 '09 at 10:43
Definitely not Server Fault, since I don't think it deals with "networking, servers, or maintaining other people's PCs." It might be answered on Super User, but I think the best fit is here on SO. – Bill the Lizard Dec 24 '09 at 15:37

3 Answers

up vote 7 down vote accepted

just do

sudo apt-get install libpspell-dev 
sudo apt-get install php5-pspell
sudo apt-get install aspell-en

then restart your apache2 server

sudo services apache2 restart

it will be added automatically to your php.ini

you can try this example

share|improve this answer
Got it working . Thanks a bunch guys. – azy777 Dec 26 '09 at 13:07
Then please mark this as an answer. – Htbaa Jan 5 '10 at 13:56

"I have installed the aspell library which is required to run pspell as shown here"

  • that's if you compile your own PHP - did you recompile with pspell?

Note that this package just provides the API and data, you are getting an error becuase your PHP doesn't know how to interface with it.

If you're not into building your own code, the PHP extension is available as a package:

(NB this is JUST the PHP side of the service)

http://packages.ubuntu.com/source/dapper/php-pspell

C.

share|improve this answer

Have you configured php.ini to load the extension?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.