From: Jake C. <jak...@gm...> - 2004-01-19 10:03:14
|
I am trying to install my module on 0.9.3-2 but it does not seem to load up on any pages and I set it to load on all pages (even with module maker). I know that if you have a fatal error on any of your code in a module that it will simply not be loaded into the system but I ran an analyzer on my code and found nothing. I installed it on previous versions of 0.9.3-2 and it seems to work just fine. Is there a way to debug why the module is not being loaded into the system? Also, I installed the phpwebsite debugger but that did not work when trying to use it either. Thanks Jake |
From: Matthew M. <ma...@tu...> - 2004-01-20 14:18:00
|
Perform as search on $GLOBALS['core'] and make sure that the ONLY commands that are being passed to it are database related. Anything else will fail as the class inheritance for $core was unlinked. Matt On Mon, 2004-01-19 at 05:03, Jake Connors wrote: > I am trying to install my module on 0.9.3-2 but it does not seem to > load up on any pages and I set it to load on all pages (even with > module maker). > > I know that if you have a fatal error on any of your code in a module > that it will simply not be loaded into the system but I ran an analyzer > on my code and found nothing. I installed it on previous versions of > 0.9.3-2 and it seems to work just fine. > > Is there a way to debug why the module is not being loaded into the > system? > > Also, I installed the phpwebsite debugger but that did not work when > trying to use it either. > > Thanks > > Jake > > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Jake C. <jak...@gm...> - 2004-01-21 04:44:55
|
Alright I did that, I changed all the functions besides database ones to use methods as static methods but it still installs but doesn't run. Anything else I can loook at? - Jake On Jan 20, 2004, at 6:12 AM, Matthew McNaney wrote: > Perform as search on $GLOBALS['core'] and make sure that the ONLY > commands that are being passed to it are database related. Anything > else > will fail as the class inheritance for $core was unlinked. > > Matt > > > On Mon, 2004-01-19 at 05:03, Jake Connors wrote: >> I am trying to install my module on 0.9.3-2 but it does not seem to >> load up on any pages and I set it to load on all pages (even with >> module maker). >> >> I know that if you have a fatal error on any of your code in a module >> that it will simply not be loaded into the system but I ran an >> analyzer >> on my code and found nothing. I installed it on previous versions of >> 0.9.3-2 and it seems to work just fine. >> >> Is there a way to debug why the module is not being loaded into the >> system? >> >> Also, I installed the phpwebsite debugger but that did not work when >> trying to use it either. >> >> Thanks >> >> Jake >> >> >> >> ------------------------------------------------------- >> The SF.Net email is sponsored by EclipseCon 2004 >> Premiere Conference on Open Tools Development and Integration >> See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. >> http://www.eclipsecon.org/osdn >> _______________________________________________ >> Phpwebsite-developers mailing list >> Php...@li... >> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > -- > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Appalachian State University > Phone: 828-262-6493 > http://phpwebsite.appstate.edu > http://ess.appstate.edu > > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: Jake C. <jak...@gm...> - 2004-01-21 07:35:55
|
Ok I got it working but it only runs the index file and includes the object if I am in that module... In my conf/boost.php file I do have the following variables set... $allow_view = "all"; $active = "on"; I believe this should run my index file on all pages no matter what but it's only running it when i go to my specific module (eg: localhost/?module=mymodule) Is there something else I have to set to get this working for all modules? I tried also using module maker to make this happen but it didn't make a difference. Thanks - Jake On Jan 20, 2004, at 6:12 AM, Matthew McNaney wrote: > Perform as search on $GLOBALS['core'] and make sure that the ONLY > commands that are being passed to it are database related. Anything > else > will fail as the class inheritance for $core was unlinked. > > Matt > > > On Mon, 2004-01-19 at 05:03, Jake Connors wrote: >> I am trying to install my module on 0.9.3-2 but it does not seem to >> load up on any pages and I set it to load on all pages (even with >> module maker). >> >> I know that if you have a fatal error on any of your code in a module >> that it will simply not be loaded into the system but I ran an >> analyzer >> on my code and found nothing. I installed it on previous versions of >> 0.9.3-2 and it seems to work just fine. >> >> Is there a way to debug why the module is not being loaded into the >> system? >> >> Also, I installed the phpwebsite debugger but that did not work when >> trying to use it either. >> >> Thanks >> >> Jake >> >> >> >> ------------------------------------------------------- >> The SF.Net email is sponsored by EclipseCon 2004 >> Premiere Conference on Open Tools Development and Integration >> See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. >> http://www.eclipsecon.org/osdn >> _______________________________________________ >> Phpwebsite-developers mailing list >> Php...@li... >> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > -- > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Appalachian State University > Phone: 828-262-6493 > http://phpwebsite.appstate.edu > http://ess.appstate.edu > > > > ------------------------------------------------------- > The SF.Net email is sponsored by EclipseCon 2004 > Premiere Conference on Open Tools Development and Integration > See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. > http://www.eclipsecon.org/osdn > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: Jake C. <jak...@gm...> - 2004-01-21 09:03:54
Attachments:
test.tar
|
Attached is a very simple module whose sole purpose it to echo "werkz" on each page by having $allow_view = "all";. Please let me know why this module will not work on all pages of the system? Thank you soo much. Jake |