comp.lang.perl.misc
  Home FAQ Contact Sign in
comp.lang.perl.misc only
 
Advanced search
December 2007
motuwethfrsasuw
     12 48
3456789 49
10111213141516 50
17181920212223 51
24252627282930 52
31       1
2007
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.perl.misc Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: Problem installing Email-Send package         


Author: Ben Morrow
Date: Dec 4, 2007 23:29

Quoth "a" pacbell.net>:
>
> I'm trying to setup perl (I have ActivePerl 5.8.8) so I can install Bugzilla
> 3.0.2 on Windows XP Pro, and Email-Send is one of the recquired packages.
>
> When I try to install this package I get this message:
>
> C:\Program Files\bugzilla-3.0.2>ppm install Email-Send
> ppm install failed: Installing Module-Pluggable-3.01 for Email-Send would
> downgrade Devel::InnerPackage from version 0.3 to 0.2, Module::Pluggable
> from version 3.6 to 3.01, and Module::Pluggable::Object from version 3.6 to
> 0; use --force to install regardless
>
> Any ideas how to fix this? Is it ok to force the installation despite the
> warning?

Since Email::Send is pure-Perl, I'd probably just get ahold of nmake
(it's a free download from Microsoft: see perldoc perlwin32) and install
it with CPAN.pm. If any of the dependancies fail, you'll need to install
them manually with ppm (roll on Strawberry Perl, I say :) ).
Show full article (1.11Kb)
1 Comment
  Perl version used when running the script         


Author: lfchew1
Date: Dec 4, 2007 21:36

If I need to use a certain perl version only to run by script, is
there a way to check that before my script continue down the main body
of the code?
Or is there any way we can check the version?
2 Comments
  FAQ 4.38 Why don't my <<HERE documents work?         


Author: PerlFAQ Server
Date: Dec 4, 2007 12:03

This is an excerpt from the latest version perlfaq4.pod, which
comes with the standard Perl distribution. These postings aim to
reduce the number of repeated questions as well as allow the community
to review and update the answers. The latest version of the complete
perlfaq is at http://faq.perl.org .

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

4.38: Why don't my <
Check for these three things:

There must be no space after the << part.
There (probably) should be a semicolon at the end.
You can't (easily) have any space in front of the tag.

If you want to indent the text in the here document, you can do this:

# all in one
($VAR = < your text
goes here
HERE_TARGET

But the HERE_TARGET must still be flush against the margin. If you want
that indented also, you'll have to quote in the indentation.
Show full article (3.68Kb)
no comments
  Play wav or sound file.         


Author: Cehotec - Tim
Date: Dec 4, 2007 10:08

I use perl script for an application which allows users to include
their own code to be ran during the application.

How can I go about creating a sub that you play a wav file. I am not
looking to open the wav with my default player.. but to actually play
the wav. any suggestions would be greatly appricaited. THANKS
4 Comments
  Error when Updating Oracle         


Author: IUXO
Date: Dec 4, 2007 09:06

When updating a table in oracle send me the follow message

Issuing rollback() for database handle being DESTROY'd without
explicit disconnect().

but the update was ok

What is the meaning of this message?

Thanks
1 Comment
  What is the use of s { } { }         


Author: Subra
Date: Dec 4, 2007 06:16

Hi,

Can any one tell me, whats does the "s { } { }" operator used for in
the below code ?

next unless s{^(\s*\w+\s+$stat_pid\s+(\d+)\s+)\d+\s+.*$pattern$}
{$1};

this is used to search for a existence of the process through ps -ef.

Best Regards,
Subra...
3 Comments
  FAQ 4.76 How do I pack arrays of doubles or floats for XS code?         


Author: PerlFAQ Server
Date: Dec 4, 2007 06:03

This is an excerpt from the latest version perlfaq4.pod, which
comes with the standard Perl distribution. These postings aim to
reduce the number of repeated questions as well as allow the community
to review and update the answers. The latest version of the complete
perlfaq is at http://faq.perl.org .

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

4.76: How do I pack arrays of doubles or floats for XS code?

The kgbpack.c code in the "PGPLOT" module on CPAN does just this. If
you're doing a lot of float or double processing, consider using the
"PDL" module from CPAN instead--it makes number-crunching easy.

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

The perlfaq-workers, a group of volunteers, maintain the perlfaq. They
are not necessarily experts in every domain where Perl might show up,
so please include as much information as possible and relevant in any
corrections. The perlfaq-workers also don't have access to every
operating system or platform, so please include relevant details for
corrections to examples that do not work on particular platforms.
Working code is greatly appreciated.
Show full article (1.25Kb)
no comments
  does perl_eval_pv function compile the source code passed to it?         


Author: grbgooglefan
Date: Dec 4, 2007 02:36

If I use perl_eval_pv function for parsing the Perl source code (in &
from C++ program), will that code be compiled also, in addition to
being parsed?
If code is compiled, will it be in the byte code format like that of
Java or pure executable as generated by C compiler?
Where do we get this internal information about Perl interpreter
embedded in C/ C++ application?
no comments
  make money with bux!!         


Author: beronz
Date: Dec 4, 2007 02:33

http://bux.to/?r=beronz

use this link to register

What is Bux.to?
Bux.to is a new innovative, international and FREE English based
service that allows advertisers to reach thousands of potential
customers by displaying their ad on our, "Surf Ads" page.

How does it work?
You view websites in 30 second sessions via the "Surf Ads" page. Once
the 30 seconds is up, you'll either get a green tick sign or a red
'X'. The green tick sign means you've earned $0.01 and as premium
member $0.0125 for the visit and the 'X' means you have not earned
money for the visit. You'll get red X's when you have more than one
website from the "Surf Ads" page open. When this happens, you get no
credit.

How do I get paid?
If you have at least $10.00 accumulated, you can click on your account
balance within your stats area and it will submit your request.
Currently, we only make payments via PayPal. We will soon be using
other methods of payment.
Show full article (0.95Kb)
no comments
  DBI; error in $handle->execute()         


Author: Yakov
Date: Dec 4, 2007 02:21

If DBI's $handle->execute() returned error, do I need to call $handle-
>finish() ?

Yakov
no comments
 
1 2