Page 3 of 3 FirstFirst 123
Results 21 to 25 of 25
  1. #21
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Addons / modules not visable in admin

    @Wilpak
    Well actually, I think that is a bit unfair. You do not get to thousands of posts on any forum by being a forum vampire. Diva has put in a lot of time helping people. And is working on several mods for upgrade to 1.5 that will be released when they are ready.
    The thing is that this particular thread is about mods not being visible in admin. If you are having problems with that issue then this is a really good place to post your questions and people will do their best to help. If your question is a more general 'Why doesn't this module work with 1.5?' then this thread is not the right place for that kind of specific advice because to answer it people need to have specific knowledge of the module as well as knowledge about the changes in Zen 1.5.
    There just is not a simple answer to the 'why doesn't this work with 1.5?' however much people want there to be one and at times have suggested that there is an answer that is somehow being hidden from them. It depends entirely on the module.

  2. #22
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Addons / modules not visable in admin

    Quote Originally Posted by WilpackPackaging View Post
    DivaVocals obviously wants you to pay her/him to do these things rather than allow others to learn how to write the code or allow others in these forums to teach each other how to write the code.
    OBVIOUSLY??? Really.. It's OBVIOUS that this is my M.O.???? Wow.. I thought I was being transparent..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #23
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Addons / modules not visable in admin

    Thanks Nick.. and I'd like to add to this what I ACTUALLY mean when I suggest paying someone to upgrade mods to work in 1.5... (Since Wilpak seems to not fully understand the TRUE intent of my message -- especially since he dragged a quote of mine from a DIFFERENT topic over here to quote me in his post..)

    If you are upgrading to Zen Cart v1.5 NOW and the mods you use have not been upgraded to be v1.5 compatible, and it's IMPORTANT TO YOUR BUSINESS, then as a BUSINESS PERSON, you need to INVEST in paying a qualified developer to upgrade the add-ons you need to be v1.5 compatible.

    I am in NO WAY angling to upgrade mods for people and the fact that Wilpak ASSumed this is nonsense.. I have ENOUGH work upgrading the free mods I've been maintaining, along with upgrading my client's website, PLUS a demanding day job (in software development). I don't NEED to troll this forum looking for free-mod upgrade work.. (and for the record Wilpak, this is an activity I've NEVER engaged in on this forum thank you very much..)

    Now could I spend my time writing detailed posts about the step by step instructions for HOW to upgrade Ty Package Tracker, hideCategories, Edit Orders, Super Orders, and Image Handler to be Zen Cart v1.5 compatible so I can TEACH others how to do this themselves?? I sure could.. but as you pointed out Nick the requirements to upgrade each of these mods is very different, and since I'm upgrading these mods already along with all the afore mentioned other stuff on my plate, I just don't have time to do this TOO!!!!!

    It's a volunteer effort for goodness sakes!!! It's as if people forget that part because all they know is they need to update THEIR store.. So their need to upgrade is supposed to be a priority for anyone who contributes to the community too??

    So this is why I say.. If you are in business and you are a business person, your business plan cannot fully rely on FREE contributions. You may actually have to INVEST in some development work to get the updates you need if you are not capable of making the changes yourself

    OR

    you can wait until the folks who volunteer here make the changes and submit them to the free downloads section.

    I will continue to suggest this, and for the record, I am NOT the only person who has made this suggestion.. If Wilpak CHOOSE to believe I have some other meaning to this suggestion he is free to think what he wants..

    **now where is that ignore button when you need it??**


    Quote Originally Posted by niccol View Post
    @Wilpak
    Well actually, I think that is a bit unfair. You do not get to thousands of posts on any forum by being a forum vampire. Diva has put in a lot of time helping people. And is working on several mods for upgrade to 1.5 that will be released when they are ready.
    The thing is that this particular thread is about mods not being visible in admin. If you are having problems with that issue then this is a really good place to post your questions and people will do their best to help. If your question is a more general 'Why doesn't this module work with 1.5?' then this thread is not the right place for that kind of specific advice because to answer it people need to have specific knowledge of the module as well as knowledge about the changes in Zen 1.5.
    There just is not a simple answer to the 'why doesn't this work with 1.5?' however much people want there to be one and at times have suggested that there is an answer that is somehow being hidden from them. It depends entirely on the module.
    Last edited by DivaVocals; 15 Feb 2012 at 07:27 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #24
    Join Date
    Apr 2013
    Location
    New York
    Posts
    7
    Plugin Contributions
    0

    Default Re: Addons / modules not visable in admin

    what if a mod has several menu items?
    I tried this, does work but needed 4 files, now I get little errors like

    Cannot send session cache limiter - headers already sent by some file
    or
    PHP Warning: Cannot modify header information - headers already sent by some file

    and of course a blank page now and then but the mod does work if you go back to look any changes you made are there



    Quote Originally Posted by purpleskybv View Post
    For those who want an answer.

    Add in admin -> includes -> functions -> extra_functions a file named init_[addonname].php

    PHP Code:
    <?php
    if (!defined('IS_ADMIN_FLAG')) {
        die(
    'Illegal Access');


    if (
    function_exists('zen_register_admin_page')) {
        if (!
    zen_page_key_exists('Addonname')) {
             
    zen_register_admin_page('Addonname''BOX_ADDON',
                
    'FILENAME_ADDON','' 'configuration''Y'20);
        } 

        
    }

    ?>
    Get the right values for BOX_ADDON and FILENAME_ADDON out of admin -> includes -> boxes -> extra_boxes -> addon_dhtml.php

    Between the '' you can place page params if needed

    You can change configuration to any menu item you want your addon to appear under.

    The Y is to say it must be visable in the menu

    The 20 can be every number and is to define the position in the menu

  5. #25
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Addons / modules not visable in admin

    Quote Originally Posted by AndyIII View Post
    now I get little errors like

    Cannot send session cache limiter - headers already sent by some file
    or
    PHP Warning: Cannot modify header information - headers already sent by some file

    and of course a blank page
    Those are caused by PHP errors, which are logged in the /logs/ folder as explained here: http://www.zen-cart.com/content.php?124-blank-page
    Read the logs, see the errors, look up the error messages and fix their causes. The FAQs area on this site are a good starting point. Sounds like you're outputting data prematurely, even if it's only blank spaces.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. Addons, modules and overhauls?
    By Nick_Djinn in forum General Questions
    Replies: 1
    Last Post: 31 Jan 2011, 07:34 AM
  2. Most popular addons / modules
    By Quimbly in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 9 Apr 2010, 02:29 AM
  3. Question: any commercial bundle of modules and addons for zencart?
    By ky3bka in forum Addon Shipping Modules
    Replies: 1
    Last Post: 16 Oct 2008, 06:44 AM
  4. Navbar links are not fully visable
    By SteveCollins in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 14 May 2007, 06:01 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR