Perl won't load GD::Graph::pie in Apache, but does with terminal.

It took me forever to get GD to work at all. Now I'm totally stuck. I hope someone can help me. If I run my cgi file from terminal using "perl /Library/WebServer/CGI-Executables/GraphTest.cgi" it prints the "jpeg". If I run it from apache using "http://localhost/cgi-bin/GraphTest.cgi", I get an error saying "Can't locate GD/Graph/pie.pm" along with the typical PATH settings and such. Why can perl run the script without issue, but using web sharing/apache perl can't find the perl module? I assume this is an apache issue?
More details:
*I finally got GD installed using port
*Every time I attempted to install GD and it failed, I erased the HDD and reinstalled OSX. So, this is a very fresh install.
*This is Snow Leopard, not Snow Leopard Server
*If I add the following two lines and run, "sudo perl /Library/WebServer/CGI-Executables/GraphTest.cgi" it will create the graph in my profile directory:
open(GRAPH,">graph5.jpg") || die "Cannot open graph5.jpg: $!\n";
print GRAPH $graph->gd->jpeg(100);
*The cgi file:
#!/usr/bin/perl -w
use strict;
use GD::Graph::pie;
use Text::CSV_XS;
my @data;
my $csv = new Text::CSV_XS;
open(FILE,"/Library/WebServer/data/testmetrics.csv") || die "Cannot open testmetrics.csv: $!\n";
while (my $line = <FILE>) {
$csv->parse($line);
my @col = $csv->fields;
push(@data,\@col);
my $graph = new GD::Graph::pie(300, 300);
$graph->set(
title => 'Revenue by Category for 2001',
label => 'Category',
axislabelclr => 'black',
'3d' => 1,
start_angle => 90,
suppress_angle => 5,
) or warn $graph->error;
$graph->plot(\@data) or die $graph->error;
print $graph->gd->jpeg(100);

Charles Minow wrote:
Hi--
Welcome to the Apple Discussions.
I see some problems with your script, though they wouldn't be a problem with GD::Graph::pie. I'm not sure yet what that problem is.
This script works on my computer:
#!/usr/bin/perl
use strict;
use GD::Graph::pie;
use CGI qw(:standard);
my @data = (
["1st","2nd","3rd","4th","5th","6th"],
[ 4, 2, 3, 4, 13, 3.5]
my $my_graph = new GD::Graph::pie( 250, 200 );
#$my_graph = new GD::Graph::pie( );
$my_graph->set(
title => 'A Pie Chart',
label => 'Label',
axislabelclr => 'black',
pie_height => 36,
l_margin => 15,
r_margin => 15,
start_angle => 235,
transparent => 0,
$my_graph->plot(@data);
print header('Content-type' => 'image/jpeg');
binmode STDOUT;
print $my_graph->gd->jpeg(100);
Note that I included the CGI module, and printed a header with the content type before sending the graphic.
If that script doesn't work on your computer, I'd be interested in seeing the output of this script (run by Apache, of course):
#!/usr/bin/perl
use strict;
use CGI qw(:standard);
print header();
print qq(Perl version (Apache): ) . $] . qq(
my $info = qx(perl -V);
print qq(<pre>$info</pre>
foreach my $key (sort keys %ENV) {
print qq($key = $ENV{$key}
I'd also be curious to see the results of "perl -V" vs. "/usr/bin/perl -V" run from the command line. Perhaps you are somehow using two different Perls...
charlie
Charles Minow wrote:
Hi--
Welcome to the Apple Discussions.
I see some problems with your script, though they wouldn't be a problem with GD::Graph::pie. I'm not sure yet what that problem is.
This script works on my computer:
#!/usr/bin/perl
use strict;
use GD::Graph::pie;
use CGI qw(:standard);
my @data = (
["1st","2nd","3rd","4th","5th","6th"],
[ 4, 2, 3, 4, 13, 3.5]
my $my_graph = new GD::Graph::pie( 250, 200 );
#$my_graph = new GD::Graph::pie( );
$my_graph->set(
title => 'A Pie Chart',
label => 'Label',
axislabelclr => 'black',
pie_height => 36,
l_margin => 15,
r_margin => 15,
start_angle => 235,
transparent => 0,
$my_graph->plot(@data);
print header('Content-type' => 'image/jpeg');
binmode STDOUT;
print $my_graph->gd->jpeg(100);
Note that I included the CGI module, and printed a header with the content type before sending the graphic.
If that script doesn't work on your computer, I'd be interested in seeing the output of this script (run by Apache, of course):
#!/usr/bin/perl
use strict;
use CGI qw(:standard);
print header();
print qq(Perl version (Apache): ) . $] . qq(
my $info = qx(perl -V);
print qq(<pre>$info</pre>
foreach my $key (sort keys %ENV) {
print qq($key = $ENV{$key}
I'd also be curious to see the results of "perl -V" vs. "/usr/bin/perl -V" run from the command line. Perhaps you are somehow using two different Perls...
charlie
Hi Charles,
Thank you much for the reply. I changed my script to exactly what you requested. I got the same old...
"[Wed Jan 06 23:02:15 2010] [error] [client ::1] Can't locate GD/Graph/pie.pm in @INC (@INC contains: /Library/Perl/Updates/5.10.0 /System/Library/Perl/5.10.0/darwin-thread-multi-2level /System/Library/Perl/5.10.0 /Library/Perl/5.10.0/darwin-thread-multi-2level /Library/Perl/5.10.0 /Network/Library/Perl/5.10.0/darwin-thread-multi-2level /Network/Library/Perl/5.10.0 /Network/Library/Perl /System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level /System/Library/Perl/Extras/5.10.0 .) at /Library/WebServer/CGI-Executables/GraphTest.cgi line 4.
[Wed Jan 06 23:02:15 2010] [error] [client ::1] BEGIN failed--compilation aborted at /Library/WebServer/CGI-Executables/GraphTest.cgi line 4.
[Wed Jan 06 23:02:15 2010] [error] [client ::1] Premature end of script headers: GraphTest.cgi"
The output of your other script is:
"Perl version (Apache): 5.010000
Summary of my perl5 (revision 5 version 10 subversion 0) configuration:
Platform:
osname=darwin, osvers=10.0, archname=darwin-thread-multi-2level
uname='darwin neige.apple.com 10.0 darwin kernel version 10.0.0d8: tue may 5 19:29:59 pdt 2009; root:xnu-1437.2~2release_i386 i386 '
config_args='-ds -e -Dprefix=/usr -Dccflags=-g -pipe -Dldflags= -Dman3ext=3pm -Duseithreads -Duseshrplib -Dincversionlist=none -Dcc=gcc-4.2'
hint=recommended, useposix=true, d_sigaction=define
useithreads=define, usemultiplicity=define
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='gcc-4.2', ccflags ='-arch x86_64 -arch i386 -arch ppc -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include',
optimize='-Os',
cppflags='-g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include'
ccversion='', gccversion='4.2.1 (Apple Inc. build 5646)', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Offt='offt', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='gcc-4.2 -mmacosx-version-min=10.6', ldflags ='-arch x86_64 -arch i386 -arch ppc -L/usr/local/lib'
libpth=/usr/local/lib /usr/lib
libs=-ldbm -ldl -lm -lutil -lc
perllibs=-ldl -lm -lutil -lc
libc=/usr/lib/libc.dylib, so=dylib, useshrplib=true, libperl=libperl.dylib
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
cccdlflags=' ', lddlflags='-arch x86_64 -arch i386 -arch ppc -bundle -undefined dynamic_lookup -L/usr/local/lib'
Characteristics of this binary (from libperl):
Compile-time options: MULTIPLICITY PERLDONT_CREATEGVSV
PERLIMPLICITCONTEXT PERLMALLOCWRAP USE64_BITALL
USE64_BITINT USE_ITHREADS USELARGEFILES
USE_PERLIO USEREENTRANTAPI
Locally applied patches:
/Library/Perl/Updates/ comes before system perl directories
installprivlib and installarchlib points to the Updates directory
Built under darwin
Compiled at Jun 24 2009 00:35:27
@INC:
/Library/Perl/Updates/5.10.0
/System/Library/Perl/5.10.0/darwin-thread-multi-2level
/System/Library/Perl/5.10.0
/Library/Perl/5.10.0/darwin-thread-multi-2level
/Library/Perl/5.10.0
/Network/Library/Perl/5.10.0/darwin-thread-multi-2level
/Network/Library/Perl/5.10.0
/Network/Library/Perl
/System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level
/System/Library/Perl/Extras/5.10.0
DOCUMENT_ROOT = /Library/WebServer/Documents
GATEWAY_INTERFACE = CGI/1.1
HTTP_ACCEPT = application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/pn g,/;q=0.5
HTTPACCEPTENCODING = gzip, deflate
HTTPACCEPTLANGUAGE = en-us
HTTP_CONNECTION = keep-alive
HTTP_HOST = localhost
HTTPUSERAGENT = Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9
PATH = /usr/bin:/bin:/usr/sbin:/sbin
QUERY_STRING =
REMOTE_ADDR = ::1
REMOTE_PORT = 49513
REQUEST_METHOD = GET
REQUEST_URI = /cgi-bin/GraphTest2.cgi
SCRIPT_FILENAME = /Library/WebServer/CGI-Executables/GraphTest2.cgi
SCRIPT_NAME = /cgi-bin/GraphTest2.cgi
SERVER_ADDR = ::1
SERVER_ADMIN = [email protected]
SERVER_NAME = localhost
SERVER_PORT = 80
SERVER_PROTOCOL = HTTP/1.1
SERVER_SIGNATURE =
SERVER_SOFTWARE = Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8k DAV/2
VERSIONERPERL_PREFER_32BIT = no
VERSIONERPERLVERSION = 5.10.0
_CF_USER_TEXTENCODING = 0x46:0:0"
Your other request of "perl -V" outputs:
"Summary of my perl5 (revision 5 version 8 subversion 9) configuration:
Platform:
osname=darwin, osvers=10.0.0, archname=darwin-2level
uname='darwin itca-display-9235.local 10.0.0 darwin kernel version 10.0.0: fri jul 31 22:47:34 pdt 2009; root:xnu-1456.1.25~1release_i386 i386 '
config_args='-des -D prefix=/opt/local -D scriptdir=/opt/local/bin -D cppflags=-I/opt/local/include -D ldflags=-L/opt/local/lib -D vendorprefix=/opt/local -D man1ext=1pm -D man3ext=3pm -D cc=/usr/bin/gcc-4.2 -D ld=/usr/bin/gcc-4.2 -D man1dir=/opt/local/share/man/man1p -D man3dir=/opt/local/share/man/man3p -D siteman1dir=/opt/local/share/man/man1 -D siteman3dir=/opt/local/share/man/man3 -D vendorman1dir=/opt/local/share/man/man1 -D vendorman3dir=/opt/local/share/man/man3 -D incversionlist=5.8.8 5.8.8/darwin-2level -U i_bind -U i_gdbm -U i_db'
hint=recommended, useposix=true, d_sigaction=define
usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
use64bitint=define use64bitall=define uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='/usr/bin/gcc-4.2', ccflags ='-fno-common -DPERL_DARWIN -I/opt/local/include -no-cpp-precomp -fno-strict-aliasing -pipe -I/opt/local/include',
optimize='-O3',
cppflags='-I/opt/local/include -no-cpp-precomp -fno-common -DPERL_DARWIN -I/opt/local/include -no-cpp-precomp -fno-strict-aliasing -pipe -I/opt/local/include'
ccversion='', gccversion='4.2.1 (Apple Inc. build 5646)', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Offt='offt', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='env MACOSXDEPLOYMENTTARGET=10.3 /usr/bin/gcc-4.2', ldflags ='-L/opt/local/lib'
libpth=/opt/local/lib /usr/lib
libs=-ldbm -ldl -lm -lutil -lc
perllibs=-ldl -lm -lutil -lc
libc=/usr/lib/libc.dylib, so=dylib, useshrplib=false, libperl=libperl.a
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
cccdlflags=' ', lddlflags='-L/opt/local/lib -bundle -undefined dynamic_lookup'
Characteristics of this binary (from libperl):
Compile-time options: PERLMALLOCWRAP USE64_BITALL USE64_BITINT
USEFASTSTDIO USELARGEFILES USE_PERLIO
Built under darwin
Compiled at Jan 6 2010 17:16:53
@INC:
/opt/local/lib/perl5/site_perl/5.8.9/darwin-2level
/opt/local/lib/perl5/site_perl/5.8.9
/opt/local/lib/perl5/site_perl
/opt/local/lib/perl5/vendor_perl/5.8.9/darwin-2level
/opt/local/lib/perl5/vendor_perl/5.8.9
/opt/local/lib/perl5/vendor_perl
/opt/local/lib/perl5/5.8.9/darwin-2level
/opt/local/lib/perl5/5.8.9
And finally, "/usr/bin/perl -V" outputs
"Summary of my perl5 (revision 5 version 10 subversion 0) configuration:
Platform:
osname=darwin, osvers=10.0, archname=darwin-thread-multi-2level
uname='darwin neige.apple.com 10.0 darwin kernel version 10.0.0d8: tue may 5 19:29:59 pdt 2009; root:xnu-1437.2~2release_i386 i386 '
config_args='-ds -e -Dprefix=/usr -Dccflags=-g -pipe -Dldflags= -Dman3ext=3pm -Duseithreads -Duseshrplib -Dincversionlist=none -Dcc=gcc-4.2'
hint=recommended, useposix=true, d_sigaction=define
useithreads=define, usemultiplicity=define
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='gcc-4.2', ccflags ='-arch x86_64 -arch i386 -arch ppc -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include',
optimize='-Os',
cppflags='-g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include'
ccversion='', gccversion='4.2.1 (Apple Inc. build 5646)', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Offt='offt', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='gcc-4.2 -mmacosx-version-min=10.6', ldflags ='-arch x86_64 -arch i386 -arch ppc -L/usr/local/lib'
libpth=/usr/local/lib /usr/lib
libs=-ldbm -ldl -lm -lutil -lc
perllibs=-ldl -lm -lutil -lc
libc=/usr/lib/libc.dylib, so=dylib, useshrplib=true, libperl=libperl.dylib
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
cccdlflags=' ', lddlflags='-arch x86_64 -arch i386 -arch ppc -bundle -undefined dynamic_lookup -L/usr/local/lib'
Characteristics of this binary (from libperl):
Compile-time options: MULTIPLICITY PERLDONT_CREATEGVSV
PERLIMPLICITCONTEXT PERLMALLOCWRAP USE64_BITALL
USE64_BITINT USE_ITHREADS USELARGEFILES
USE_PERLIO USEREENTRANTAPI
Locally applied patches:
/Library/Perl/Updates/<version> comes before system perl directories
installprivlib and installarchlib points to the Updates directory
Built under darwin
Compiled at Jun 24 2009 00:35:27
@INC:
/Library/Perl/Updates/5.10.0
/System/Library/Perl/5.10.0/darwin-thread-multi-2level
/System/Library/Perl/5.10.0
/Library/Perl/5.10.0/darwin-thread-multi-2level
/Library/Perl/5.10.0
/Network/Library/Perl/5.10.0/darwin-thread-multi-2level
/Network/Library/Perl/5.10.0
/Network/Library/Perl
/System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level
/System/Library/Perl/Extras/5.10.0
So, I guess you were right. I'm running two different perls. The first one looks like it was installed by port along with GD. Is it possible to get the default perl to run GD?

Similar Messages

  • I turned off my iPod touch and when I tried to turn it back on, it won't load and just sits on the black screen with the Apple logo.... HELP!!!):

    I turned off my iPod touch and when I tried to turn it back on, it won't load and just sits on the black screen with the Apple logo.... HELP!!!):

    Try a Reset...
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    Restart / Reset
    http://support.apple.com/kb/ht1430

  • My itunes won't reconise my ipod touch but does with my nano any help plz

    my itunes won't reconise my ipod touch but does with my nano any help plz

    - First see if resetting the iPod will make it visible in iTunes so you can restore the iPod.
    - Next see if placing the iPod in recovery mode will make it visible.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • My Netflix won't load. It was perfectly fine but when asked for an update won't load anymore. And my Netflix account is up to date

    Having trouble with 3 of my long time apps. When upgraded these apps won't load. They sit at waiting and won't go any further . I am frustrated because Iaid for these apps and now they don't work

    What version of iPhoto? Assuming 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Firefox won't load any pages on SmartQ T10 but will find addons and sync. Why?

    Pretty much as the title says, it installed fine, displays the startup page but won't load anything remotely except add-ons and sync data. Every other browser and inet app works fine on the device, including opera and the defaul browser, gmail etc, only Firefox doesn't work.

    Not a reply but an update to my first posting. The problem fixed itself after about a month or so. Everything just returned to normal and Firefox worked again. Unfortunately the story continues. After a couple weeks of working the symptoms reoccurred and I was again without the use of Firefox. Pause - - - - but the story continues. I got fed up as I was writing this very update and I tried again for the countless time to find a solution. And the good news is I did and Firefox is again working. It turns out that I had always checked the MS Windows firewall which reflected that Firefox had access to the web. I never thought to check my antivirus program suite. It of course also has a firewall through which Firefox was for some reason not allowed. Once I gave Firefox access the problem was solved. I don't know why I had never thought of this. I am embarrassed to admit it but I hope this may help others.

  • My computer uses Windows XP.  The latest Apple Update for iTunes ruined everything.  It won't load the software, and I'm getting flooded with error messages.  Is this latest update a bunch of crap?

    My computers uses WindowsXP.  The latest Apple Software Update put the latest version of iTunes on my computer, and now iTunes doesn't work.  I've tried that instructions on the Apple homepage (delete program, reinstall, etc.), and nothing works.  What's worse is that I'm getting error messages every time I log on to my computer.  Is this latest version a pile of pooh?  Anybody know how to fix this?  Or do I need to wait for Apple to figure out where they screwed up?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • I tried to load the new firefox, it won't load onto my computer (mac osx) but it also erased the old firefox. Help!

    A window came up saying I needed the new firefox. When I tried to load it the window said I couldn't but to click for the most updated firefox. A dmg loaded, asked if I wanted to replace the old firefox, which I assumed I did. Now I have no firefox at all and can't get back to the older version that was working.

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • My firefox crashed when I was on Facebook and now facebook won't load up right while on Firefox but will on Internet Explorer, any ideas what would cause this?

    Facebook loads but the page is all messed up and can't click on the stuff in the right place. It loads up fine on Internet Explorer.

    This is probably some corruption in the settings file that stores the on-screen position of the Firefox window. Could you try the steps in this thread: [https://support.mozilla.org/en-US/questions/980358 opens off monitor screen]. Any luck?

  • Help appreciated. Using Mac OSX 10.9.5.  Photoshop Elements 11 won't load returns error 213:5 (Problem has occurred with licensing of this product)

    Have tried following but no solution so far:
    1. Uninstall and reinstall
    2.Removed com.adobe.photoshopElements.Plist, and further uninstall and reinstall
    3. Set up new admin account (to address possible missing permissions) and launched PSE 11 but same problem
    4.Booted in safe mode to exclude possible plug in issues- no difference
    (Adobe Premier Elements 11 still works fine).  I suspect the PSE 11 problem is license key related??? but can't find any further info and am at a loss what to do next. 
    Any suggestions for a fix would be most appreciated

    That error means there is a critical crash or signature error in the licensing system. Could be that you may need to check your system's security certificates, firewall and other things...
    Mylenium

  • My netflix thumbnails won't load onto my daughters ipad anymore, but they are fine on all the other devices in the house (other iPads and Apple TV) have reloaded app but that didn't work.

    My daughters ipad has suddenly at the beginning of the week stopped showing all the thumbnails on her Netflix App. It works on other iPads in the house and on the Apple TV. I have deleted and reinstalled it on her ipad but to no avail, I have also rebooted the main router but still nothing.

    It almost looks like there is something on the phone that is corrupting it
    I would back it up to iTunes
    Restore to factory settings
    See if the problem recurs before restoring the backup or any apps

  • JSP page doesnt load for one user on machine1, but does 4 all on same box

    Hi,
    I have a Citrix application on a box to enable many users to connect remotely to different applications on differnt boxes using the browser on this box. Just like terminal Services or remote desktop
    I tested 15 users and all of them are able to login to the machine and able to open a jsp page of an application located on a differernt box using the browser on this box.
    But for one user I am facing an issue. For this user, I am not able to get the page and instead I only see a message as "page loading" and nothing more than that, Its getting stuck there itself with no progress.
    Please help me,
    Thanks a lot in advance,
    Srinivas.

    Hi,
    I suspect there is something missing as far as the JRE for this guy is concerned. Sothing to do with permissions. java policy, security etc.
    I am not sure if that helps. I am not in the development of the application, and will check with those guys. I only neeed to provode support on this machine and be able to give access to that application which is on Linux. The browser is in Windows machine,
    Thanks,
    Srinivas.

  • I've just updated iTunes to 10.3.1.55 and it won't now recognise my iPad or iPhone but does recognise my iPod

    I've got Windows XP and have just upgrade iTunes to v10.3.1.55 and it won't now recognise my iPad when I connect it, nor my iPhone, but it does still recognise and sync my iPod Classic. I can see the iPad and iPhone in My Computer but they do not appear in my iTunes list on the left. Please does anyone have any ideas?

    Asking me what I think is not what really matters here. What do you think? Do you want to wait for another update to iTunes in order to sync or backup your iPad again? That could be weeks down the road - no telling when it may be updated.
    Why dont you go through this support article and see if any of this stuff helps you? The article is for Windows users.
    http://support.apple.com/kb/TS1538
    Here is something very simple to try. Quit iTunes and restart your computer. Then restart your iPad and try to sync/connect again.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • When using a youtube playlist I made it won't automatically go to the next video when using firefox but does with chrome,so what's wrong?

    When I play my youtube video playlist it won't automatically go to the next video as youtube is set to do.I have to manually start the nexrt video.What is wrong?If I use the chrome browser it works just fine,so it must be a problem with firefox.Anyone have any ideas?

    I suggest you to upgrade Firefox to version 7 and post back to us
    * getfirefox.com

  • Website won't connect to server under 1 account, but does under mine

    I have my son set up with parental controls, and I am administrator.  I need him to go to the website xtramath.org, and have that set up to allow him to go to it.  But under his login, I get an error and it says it won't connect to the xtramath.org server.  Under my login, it goes there fine.  How can I resolve this so he c
    Thanks for any help.

    Hi  Robb,
    Well known bug in Parental controls in several OSX versions with https:// not working, I don't know of a fix, but I wonder if a Proxy server would work...
    http://www.the-cloak.com/login.html

  • Application loader wants a 'hosted content package', but does not accept a package created by PackageMaker?  What exactly does App Loader want?

    Am attempting to create an in-app purchase with a few files embedded.  It appears that the hosted content selection would be what I need, yet Application loader is not accepting a .pkg (or .mpkg) that PackageMaker has created after I loaded the files into PM.  What am I missing?

    I have the same problem. Apparently PackageManager is for creating bundles for the Mac and not for in-app purchases.
    Im just about to quit on host the in-app purchase on apple and just creating my own server for that. Its very frustrating because there´s no documentation on how to create a iOS in app package. In the application Loader documentation is assumed that the package is already created.

Maybe you are looking for

  • Problem sending texts on N95

    I cannot get my phone to sedn texts even when following instructions that BRian had to get his working It says Msg centre in use - msg centre preferred connection GSM/UMTS REply via same centre - no Can you help

  • [Oracle 10g] How to show concurrent transactions during a period?

    Hello all, I used Oracle 10g database I try to select the number of concurrent transactions during a period. I know how to select the number of transactions executed in one day, but i want to know the concurrent transactions. Can you help me ? Thanks

  • Will 10 meter HDMI cable work without dropouts with Intensity & MacPro?

    Has anyone had experience with a 10 meter cable and capturing thru HDMI using an Intensity card and Mac Pro dual core? Unsure if I can get away with a 10 meter cable. Also, curious if I can capture to ProRes without issues onto a non-RAID Western Dig

  • Importing multi-page PDF into ID.

    Help. I have a 25 page PDF file that is made to be printed and folded. The pages are setup in sequence. I want to be able to import all those pages, but I wonder how I would be printing the document if I'm able to import it in ID. I want to print the

  • Edit to tape - timecode mismatch between timeline & output tape (Digi Beta)

    I'm trying to edit to tape (insert) a programme. The clock drops in on exactly the right frame but by the time I get to the end of part there's a 2 frame difference between my timeline TC and the master tape's TC. In other words my timeline ends at 1