Can't not locate object method "isadmin" via package "Noc1"

Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default Can't not locate object method "isadmin" via package "Noc1"

    Hello all,

    I just added a new method called isadmin to existing and
    working module Noc1.pm

    And use this new added method in my index.html like this

    use Noc1;
    my $noc = new noc1;
    my public = noc->ispublic();
    my $admin = noc->isadmin();

    if ($admin) { blah blah blah}

    When i tried to access index.html i got the error msg...
    can't locate object method "isadmin" via package 'Noc1" at
    ..../index.html line 21

    Do you know what is the problem here ?
    Everything works fine with Noc1.pm and index.html until i
    add my new method isadmin in.

    thanks for your help



    Perldiscuss - Perl Newsgroups And Mailing Lists Guest

  2. Similar Questions and Discussions

    1. Can't locate object method "newFromJpeg" via package "GD::Image"
      Hi. I'm trying to execute this Perl simple script: -------- #!/usr/bin/perl use GD; my $srcimage = GD::Image->newFromJpeg("image_news.jpg");...
    2. Can't locate object method "blocking" via package "IO::Handle"
      I am receiving the error message: Can't locate object method "blocking" via package "IO::Handle" at...
    3. GD::Image: Can't locate object method "newFromJpeg"
      Hi. I'm trying to execute this script ----------------------------------- use GD; my $srcimage = GD::Image->newFromJpeg("image_news.jpg");...
    4. Can't locate object method "new" via package "Net::SMTP"
      I'm attempting to use the line: $smtp = Net::SMTP->new("mailhost.myisp.co.uk"); however it generates the error message: Can't locate object...
    5. Can't locate object method "get" via package "LWP::UserAgent"
      #!/usr/bin/perl use strict; use URI; #use HTTP::Request::Common qw(GET); use LWP; #use HTTP::Response; my $browser = LWP::UserAgent->new;...
  3. #2

    Default RE: Can't not locate object method "isadmin" via package "Noc1"

    > I just added a new method called isadmin to existing and
    > working module Noc1.pm
    Did you create Noc1 ???
    >
    > And use this new added method in my index.html like this
    index.html ??? Hows' that work?
    >
    > use Noc1;
    > my $noc = new noc1;
    > my public = noc->ispublic();
    ^^^^^^ ^^^
    Do you mean $public and $noc ??
    > my $admin = noc->isadmin();
    ^^^
    $noc again??
    >
    > if ($admin) { blah blah blah}
    >
    > When i tried to access index.html i got the error msg...
    > can't locate object method "isadmin" via package 'Noc1" at
    > .../index.html line 21
    >
    > Do you know what is the problem here ?
    Did you make it exportable?
    I sit really in there just like that?

    How about some backgound on Noc1.pm and some code from it to show how it's used
    > Everything works fine with Noc1.pm and index.html until i
    > add my new method isadmin in.
    >
    > thanks for your help
    HTH

    DMuey
    Dan Muey Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139