niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » Programming » Perl » modules
Install Picks Wrong Dir for Include Files
Post new topic   Reply to topic Page 2 of 6 [76 Posts] View previous topic :: View next topic
Goto page:  Previous  1, 2, 3, 4, 5, 6 Next
Author Message
John Bokma
*nix forums Guru


Joined: 23 Feb 2005
Posts: 1136

PostPosted: Mon Apr 11, 2005 12:24 am    Post subject: Re: How do we compile for perl? Reply with quote

paul dallaire wrote:

Quote:
Hi! I got message in an installation text file and I am not sure what
or how to do it.

PHP4: PHP also needs to be compiled with MySQL support;
^^^


PHP is not Perl. You can get precompiled versions of PHP *with* MySQL
support.

--
John Small Perl scripts: http://johnbokma.com/perl/
Perl programmer available: http://castleamber.com/
Happy Customers: http://castleamber.com/testimonials.html
Back to top
paul dallaire
*nix forums beginner


Joined: 11 Apr 2005
Posts: 6

PostPosted: Mon Apr 11, 2005 1:09 am    Post subject: Re: How do we compile for perl? Reply with quote

HI! and Thanks for responding. what is PHP? and how do I compile it with PhP
support as it mentions in the text file..as it mentions that it is
required.?

Paul


"John Bokma" <postmaster@castleamber.com> wrote in message
news:Xns9634D9BBEFA71castleamber@130.133.1.4...
Quote:
paul dallaire wrote:

Hi! I got message in an installation text file and I am not sure what
or how to do it.

PHP4: PHP also needs to be compiled with MySQL support;
^^^

PHP is not Perl. You can get precompiled versions of PHP *with* MySQL
support.

--
John Small Perl scripts: http://johnbokma.com/perl/
Perl programmer available: http://castleamber.com/
Happy Customers: http://castleamber.com/testimonials.html
Back to top
paul dallaire
*nix forums beginner


Joined: 11 Apr 2005
Posts: 6

PostPosted: Mon Apr 11, 2005 1:14 am    Post subject: Ok I found one of my answers at google now just need the other one. :) Reply with quote

HI! I found one of my answers at google I just need the other one.

What is PHP.

PHP is a server-side, cross-platform, HTML embedded scripting language that
lets you create dynamic web pages. PHP-enabled web pages are treated just
like regular HTML pages and you can create and edit them the same way you
normally create regular HTML pages.

"paul dallaire" <paul.dallaire@sympatico.ca> wrote in message
news:8Tl6e.2132$MZ2.245386@news20.bellglobal.com...
Quote:
HI! and Thanks for responding. what is PHP? and how do I compile it with
PhP support as it mentions in the text file..as it mentions that it is
required.?

Paul


"John Bokma" <postmaster@castleamber.com> wrote in message
news:Xns9634D9BBEFA71castleamber@130.133.1.4...
paul dallaire wrote:

Hi! I got message in an installation text file and I am not sure what
or how to do it.

PHP4: PHP also needs to be compiled with MySQL support;
^^^

PHP is not Perl. You can get precompiled versions of PHP *with* MySQL
support.

--
John Small Perl scripts: http://johnbokma.com/perl/
Perl programmer available: http://castleamber.com/
Happy Customers: http://castleamber.com/testimonials.html


Back to top
John Bokma
*nix forums Guru


Joined: 23 Feb 2005
Posts: 1136

PostPosted: Mon Apr 11, 2005 2:04 am    Post subject: Re: How do we compile for perl? Reply with quote

paul dallaire wrote:

Quote:
HI! and Thanks for responding.

HI! I suggest to read up a bit on netiquette Smile Top posting is not done
here.

Quote:
what is PHP? and how do I compile it
with PhP support as it mentions in the text file..as it mentions that
it is required.?

http://www.php.net/

--
John Small Perl scripts: http://johnbokma.com/perl/
Perl programmer available: http://castleamber.com/
Happy Customers: http://castleamber.com/testimonials.html
Back to top
Jack D
*nix forums beginner


Joined: 23 Apr 2005
Posts: 10

PostPosted: Sat Apr 23, 2005 6:56 pm    Post subject: Re: sound (playing few wavs at once) Reply with quote

"Krystian" <nobody@this.home.com> wrote in message
news:69bk61l86hv7gim0v786u099n60vmrv2qu@4ax.com...
Quote:
hi there
I'm searching for any perl module which can play few wavs at once
(game sounds). There is also one more wish ... it should be possible
to obtain this 'sound' module as ppm for win32 from somewhere. I've
tried Wind32::Sound but it stops playing current sample when the new
one is started. I also searched for SDL, Bass, Fmod but couldn't find
ppm link ... please help with this, does anyone know SDL, Bass or Fmod
perl interfaces which could be installed via ppm? or any other
solution?

If this is win32 specific then use Win32::MultiMedia::MCI. It allows for
multiple/simultaneous sounds.

If you email Jean-Louis and ask nicely - he would likely be willing to add
it to his great repository at:

http://www.bribes.org/perl/ppmdir.html

Jack
Back to top
Jason Gurtz
*nix forums beginner


Joined: 04 May 2005
Posts: 5

PostPosted: Wed May 04, 2005 2:59 pm    Post subject: Re: Reading AND writing Excel spreadsheets Reply with quote

On 4/30/2005 04:05, Colin Walls wrote:
Quote:
I am happy creating spreadsheets with Spreadsheet::WriteExcel and reading
them using Spreadsheet::ParseExcel.

However, I have been asked to write data to an already existing spreadsheet.
Is this possible using a mixture of these two modules? If so, how does one
do it?

AFAIK, it can't be done. Spreadsheet::WriteExcel can only do new
documents. I suppose you could kludge together something by reading in
values with the parsing module and then iterating over your data structure
for mods and then iterating again to write a new sheet and then do file
swapping/renaming. If you do that you're more adventurous then I :)

~Jason

--

Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
Back to top
Rick Kochanski
*nix forums beginner


Joined: 05 May 2005
Posts: 1

PostPosted: Thu May 05, 2005 9:25 pm    Post subject: Re: Reading AND writing Excel spreadsheets Reply with quote

On Wed, 04 May 2005 12:59:11 -0400, Jason Gurtz <no@noemail.com>
wrote:

Quote:
On 4/30/2005 04:05, Colin Walls wrote:
I am happy creating spreadsheets with Spreadsheet::WriteExcel and reading
them using Spreadsheet::ParseExcel.

However, I have been asked to write data to an already existing spreadsheet.
Is this possible using a mixture of these two modules? If so, how does one
do it?

AFAIK, it can't be done. Spreadsheet::WriteExcel can only do new
documents. I suppose you could kludge together something by reading in
values with the parsing module and then iterating over your data structure
for mods and then iterating again to write a new sheet and then do file
swapping/renaming. If you do that you're more adventurous then I :)

~Jason

I have used Win32::OLE to write to an existing Excel spreadsheet. NO
FUN; but, can be done.

use Win32::OLE qw(in with);
use Win32::OLE::Const 'Microsoft Excel';

Best of luck.
Back to top
Colin Walls
*nix forums beginner


Joined: 30 Apr 2005
Posts: 7

PostPosted: Sat May 07, 2005 1:08 pm    Post subject: Re: Reading AND writing Excel spreadsheets Reply with quote

Rick Kochanski wrote:

Quote:
On Wed, 04 May 2005 12:59:11 -0400, Jason Gurtz <no@noemail.com
wrote:

I have used Win32::OLE to write to an existing Excel spreadsheet. NO
FUN; but, can be done.

use Win32::OLE qw(in with);
use Win32::OLE::Const 'Microsoft Excel';

I should have said that this is on a UNIX system.

I think I am just going to have to write a new spreadsheet and let them cut
and paste into the spreadsheet that they want. There are just too many
worksheets and formulae to try and recreate th target spreadsheet.

--
Colin Walls
Removed the pink meat to mail me
Back to top
Mark Clements
*nix forums Guru Wannabe


Joined: 24 Feb 2005
Posts: 207

PostPosted: Mon May 09, 2005 11:32 am    Post subject: Re: module for FFT Reply with quote

Andreas Boehm wrote:

Quote:
Hi *.*,

does there exist a module for 2-dimensional fft?

regards,
Andreas

I hate to state the obvious, but have you tried CPAN?

search.cpan.org

Mark
Back to top
Andreas Boehm
*nix forums beginner


Joined: 09 May 2005
Posts: 9

PostPosted: Tue May 10, 2005 10:07 am    Post subject: Re: module for FFT Reply with quote

hi,

Quote:
does there exist a module for 2-dimensional fft?
I hate to state the obvious, but have you tried CPAN?

Sure, I tried it, but could only find some modules in scope of PDF and I
am wondering if there exist other ones.

regards,
Andreas
Back to top
Mark Clements
*nix forums Guru Wannabe


Joined: 24 Feb 2005
Posts: 207

PostPosted: Tue May 10, 2005 10:11 am    Post subject: Re: module for FFT Reply with quote

Andreas Boehm wrote:

Quote:
hi,

does there exist a module for 2-dimensional fft?
I hate to state the obvious, but have you tried CPAN?

Sure, I tried it, but could only find some modules in scope of PDF
and I am wondering if there exist other ones.


Math::FFT doesn't do it for you? What is it missing?

Mark
Back to top
Sherm Pendley
*nix forums Guru


Joined: 03 Mar 2005
Posts: 527

PostPosted: Sat May 14, 2005 5:58 am    Post subject: Re: Mixing HTML::Template and GD::Graph Reply with quote

Colin Walls wrote:
Quote:
I have developed an application using CGI::Application and HTML::Template.
Some of the run modes in the application use GD:Graph to present charts.

In the GD:Graph documentation they simply write graphical information to
STDOUT to present the information to a web page. I can't work out whether
this is possible using HTML::Template, and if it is, how to do it. As a
result I am writing the charts to a file and using a standard image tag in
my template file.

Is it possible to write present a GD:Graph chart without writing a file in
this scenario?

Yes, but probably not in the way you're thinking. There's no getting
around the fact that the user agent will be making a second, entirely
separate request for the image data. So you can't print the image and
HTML as part of the same request.

What you can do is, within the HTML::Template CGI, construct an img
element whose src attribute points to a second CGI that prints the
image, and includes in the query string any parameters that one will
need to do its job.

sherm--

--
Cocoa programming in Perl: http://camelbones.sourceforge.net
Hire me! My resume: http://www.dot-app.org
Back to top
Sisyphus
*nix forums Guru


Joined: 04 Mar 2005
Posts: 503

PostPosted: Wed May 25, 2005 11:50 pm    Post subject: Re: Win32::API problem... Reply with quote

"Rafał Kot" <koot@USUN_NO_SPAM.piekielko.pl> wrote in message
news:d722jm$apo$2@nemesis.news.tpi.pl...
Quote:
Hello,
i got problem with Win32:API module. I have instaled ActivePerl on
windows 95 (i must use this one ;/ ) after this i have downloded
binary package Win32-Api, and ppm install Win32-API.ppd.

But when i try to run my program i get error:
Win32::API object version 0.41 does not match
$Win32::API::VERSION 0.01 at...

Anyone know how to fix it?


Somehow the installation has not worked properly. Seems you have version
0.41 of API.dll, but version 0.01 of API.pm. I don't know how that has come
to happen. Best to first remove the Win32-API that you installed:
ppm remove Win32-API

It's not necessary to download the binary package, so I suggest moving it to
some place where it won't get found, and then run (while connected to the
internet):
ppm install Win32-API

Cheers,
Rob
Back to top
Rafał Kot
*nix forums beginner


Joined: 27 May 2005
Posts: 3

PostPosted: Fri May 27, 2005 5:11 am    Post subject: Re: Win32::API problem... Reply with quote

Sisyphus napisał(a):
Quote:
Somehow the installation has not worked properly. Seems you have version
0.41 of API.dll, but version 0.01 of API.pm. I don't know how that has come
to happen. Best to first remove the Win32-API that you installed:
ppm remove Win32-API

It's not necessary to download the binary package, so I suggest moving it to
some place where it won't get found, and then run (while connected to the
internet):
ppm install Win32-API

The problem is that on this old laptop i dont have internet
connection...

--
Pozdrawiam
Rafal Kot
Back to top
Sisyphus
*nix forums Guru


Joined: 04 Mar 2005
Posts: 503

PostPosted: Fri May 27, 2005 5:21 am    Post subject: Re: Win32::API problem... Reply with quote

"Rafał Kot" <koot@USUN_NO_SPAM.piekielko.pl> wrote in message
news:d76hfg$krt$1@nemesis.news.tpi.pl...
Quote:
Sisyphus napisał(a):

It's not necessary to download the binary package, so I suggest moving
it to
some place where it won't get found, and then run (while connected to
the
internet):
ppm install Win32-API

The problem is that on this old laptop i dont have internet
connection...


Oh ..... in that case we need that ppm that you downloaded. Somehow there
are 2 versions of Win32::API kicking around on that box - and I don't know
how that has come about. I would still try again by first deleting what you
have installed:
ppm remove Win32-API

then try to install using the ppm package you downloaded:
ppm install Win32-API.ppd

If that still fails can you provide us with a link to the ppm package that
you downloaded so that we can see exactly what you have (and also tell us if
the error has changed from what you originally got).

Cheers,
Rob
Back to top
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 2 of 6 [76 Posts] Goto page:  Previous  1, 2, 3, 4, 5, 6 Next
View previous topic :: View next topic
The time now is Wed Dec 03, 2008 9:24 pm | All times are GMT
navigation Forum index » Programming » Perl » modules
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts Install suse from USB without BIOS support vjy04 Suse 0 Tue Jun 24, 2008 8:57 am
No new posts Install suse from USB without BIOS support vjy04 Suse 0 Tue Jun 24, 2008 8:56 am
No new posts Install suse from USB without BIOS support vjy04 Suse 0 Tue Jun 24, 2008 8:56 am
No new posts Install suse from USB without BIOS support vjy04 Suse 0 Tue Jun 24, 2008 8:55 am
No new posts RS6000 43p/140 AIX 4.3 new install - am stuck! remllov99x AIX 0 Tue Aug 21, 2007 11:07 pm

Web Advertising | Internet Advertising | Credit Cards | Free Advertising | Car Finance
Copyright © 2004-2005 DeniX Solutions SRL
 
Other DeniX Solutions sites: Unix/Linux blog |  electronics forum |  medicine forum |  science forum | 
Privacy Policy


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 0.7457s ][ Queries: 16 (0.6085s) ][ GZIP on - Debug on ]