Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: How Do I Determine if Customer is Logged In

    You might use the Developers Tool Kit in the Tools ... Developers Tool Kit ... and in the bottom input box enter:
    zen_draw_form

    select Catalog ... and click Search ...

    And look at the various methods that are defined to see which works best for what you are doing ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  2. #12
    Join Date
    Feb 2009
    Posts
    157
    Plugin Contributions
    0

    Default Re: How Do I Determine if Customer is Logged In

    Quote Originally Posted by Ajeh View Post
    You might use the Developers Tool Kit in the Tools ... Developers Tool Kit ... and in the bottom input box enter:
    zen_draw_form

    select Catalog ... and click Search ...

    And look at the various methods that are defined to see which works best for what you are doing ...

    Lordy....all of them are table based and not FORMS. Seems you have to redraw every single line. Is there NOT a better way? I still dont see how to get that to REDRAW the whole form without redrawing line by line by line. Way too complicated that way.

  3. #13
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: How Do I Determine if Customer is Logged In

    Not sure what you mean by table based ...

    I am not into forms and I have to do the sleep thing ...

    Perhaps someone into forms would like to help you further on this ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  4. #14
    Join Date
    Feb 2009
    Posts
    157
    Plugin Contributions
    0

    Default Re: How Do I Determine if Customer is Logged In

    Quote Originally Posted by Ajeh View Post
    Not sure what you mean by table based ...

    I am not into forms and I have to do the sleep thing ...

    Perhaps someone into forms would like to help you further on this ...
    Thanks...

    Just looking for a simple replacement for the form action parameter that allows the form to be reloaded after it is submitted.

    Zen's design is table oriented or appears to be to me in that it uses form objects in table cells rather than a form itself and uses the draw statement line by line and appears to me by looking at the code, you have to have multiple files to make it work. Way too complicated and there is no SDK to explain how to make that work, so if you do not have in depth knowledge of Zencart's coding structure, it leaves people frustrated when they want to make something like a simple form work, but nothing in the manual or the forum gives a complete answer on how to get it done.

    If an SDK were made available for download, I am betting you would see a lot more mods available than we do now.

  5. #15
    Join Date
    Feb 2009
    Posts
    157
    Plugin Contributions
    0

    Default Custom Form

    Does ANYONE have an example on how to create a custom form that will actually run in Zencart? I have so far received incomplete answers and getting frustrated with something that probably has a simple answer.

    Basically looking for a SDK or an example of a closely related form that will allow me to create a uploader page where developers can upload mods, themes, and utilities for Arcadem Pro go my website to be offerred for download or purchase.

    Basically the form will have file info (file name, description, size, format), name of customer wrote to uploaderID field, date upload.

    Really if someone can identify how to make the form action="" execute when I put the form on a custom page same as the pages shown on the custom define pages editor. This way, the page_7 that I am using to show the form on, should reload with this parameter when form contents are submitted.

    I have researched and searched to no end and even Googled the web for a solution but can't find any. Someone tried to help me last night, but the directions she was going was not what I was after and way too complicated. So just about begging for help on this.
    Last edited by dmm2020; 11 Jun 2009 at 11:03 PM. Reason: clarification of question

  6. #16
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    789
    Plugin Contributions
    7

    Default Re: File Uploader Mod

    have researched and searched to no end and even Googled the web for a solution but can't find any. Someone tried to help me last night, but the directions she was going was not what I was after and way too complicated. So just about begging for help on this.
    What you are asking for has been done alot.
    Try this google search of this forum.
    You will find a lot of reading and answers to your questions.
    http://www.google.com/search?hl=en&l...2F&btnG=Search

    Skip
    • 446F63746F722057686F •

  7. #17
    Join Date
    Feb 2009
    Posts
    157
    Plugin Contributions
    0

    Default Re: File Uploader Mod

    Quote Originally Posted by skipwater View Post
    What you are asking for has been done alot.
    Try this google search of this forum.
    You will find a lot of reading and answers to your questions.
    http://www.google.com/search?hl=en&l...2F&btnG=Search

    Skip
    I have seen all those in that search. They require that a product be created and an upload off the product page. That is not what I want to do. I want to create a separate file upload page. Being stuck with the file attribute manager kind of sucks if that turns out to be the case becase it simply will not work for a software download site like I am building. The page is intended for developers to be able to upload their packages same as they do here on this forum.

    I can make a upload page work off the root, but then that raises security issues. I do not want this page to be detected by crawling, so I want to convert my Page 7 to an upload page. However, when the form attempts to reload after submission, it crashes because of permissions. The only website I've seen one working on is no longer running.
    Last edited by dmm2020; 12 Jun 2009 at 02:10 AM. Reason: To add more information

  8. #18
    Join Date
    Jun 2008
    Location
    Washington, DC
    Posts
    789
    Plugin Contributions
    7

    Default Re: File Uploader Mod

    Then my suggestion is create a define page with an iframe and load one of many upload php scripts that our out there. The first one that comes to mind is easy php upload.

    Skip
    • 446F63746F722057686F •

  9. #19
    Join Date
    Feb 2009
    Posts
    157
    Plugin Contributions
    0

    Default Re: File Uploader Mod

    Quote Originally Posted by skipwater View Post
    Then my suggestion is create a define page with an iframe and load one of many upload php scripts that our out there. The first one that comes to mind is easy php upload.

    Skip
    Except my programming background is not iframes but database and oop...I have no idea how to make that work. One reason why I was asking for working examples. I know someone has to have one.

  10. #20
    Join Date
    Feb 2009
    Posts
    157
    Plugin Contributions
    0

    Default Re: File Uploader Mod

    I think I have finally figured out just exactly how to get this done looking at something I finally found.

    I want to put a file called uploader.php in the /modules/<custom directory>.

    The question is, how do I write the below statement correctly to call this in my file "tpl_file_uploader_default.php"?

    My include line:
    include("uploader.php"); // Don't put any HTML above this line or you'll get errors

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Thumbnail Preview of file after upload via Attribute File uploader?
    By NWFAP in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 7 Aug 2015, 03:40 AM
  2. File uploader
    By mdivk in forum General Questions
    Replies: 14
    Last Post: 14 Feb 2012, 09:26 PM
  3. File Uploader help needed
    By goodnight in forum Setting Up Categories, Products, Attributes
    Replies: 4
    Last Post: 29 Jun 2009, 09:27 PM
  4. File Uploader capability?
    By parin123 in forum General Questions
    Replies: 7
    Last Post: 26 Jun 2009, 09:48 PM

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