Page 1 of 2 12 LastLast
Results 1 to 15 of 17

Thread: MOd Idea

  1. #1
    Join Date
    Nov 2004
    Posts
    1,822

    Default MOd Idea

    Mod/update suggestion :

    Each listing would have an "upload your pictures..." button, visitors of the site (could be anyone) can upload a photograph using the form and it appears in an administration panels "picture approval" line.

    I want the pictures to be stored on a different database table, like this :

    ID | link_id (foreign_id) | picture URL | member name | email | caption

    the display side of this needs to be an ajax picture viewer - if more than 3 images are available then clicking an arrow will show the next 3 WITHOUT a page reload.

    clearly only useful for niche sites who deal with physical locations - i see quite a lot of these using indexU though - all of my sites do, i see golf, courses, hotels, restaurants etc ...
    Main IndexU sites : | Campsite Directory | Tourist Guide | Places2B | AfterDirectory <-- Half price submission using coupon DP50 (from just $11 premium, and $10 basic permanent )

  2. #2
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    Very interesting and useful. I can think of all sorts of things this could be used for.

    This could be used by people who want to share images of almost anything such as cars, people (for a famous quotes site), food (for reqice/restaurant site), movie covers, book covers, software screenshots and so much more.

    It would help to make the site interactive which is what people are interested in nowadays.

  3. #3
    Join Date
    Jan 2008
    Posts
    141

    Default

    Hi,

    I think this would be nice for my cover site!!

    Good idea!

  4. #4
    Join Date
    Nov 2004
    Posts
    1,822

    Default

    yeah thats true... it does have a lot of applications. I could code this and release it as a mod, but then it would be nice to hear from indexU developers if this is something they would implement (like a YES/NO answer) so I know if its worth the time to do.

    Even when you make a mod, its a struggle to keep it updated with new version releases and its never easy for people to add mods if they are new to it.

    That said, i think this could be made as a block so its just a case of uploading all the new files and then adding block code.

    Bruce, any chance you could ask if mod ideas on the forum could be requested as new indexU functionality... if the mod isnt going to be included in indexU itself then it could be worked on.
    Main IndexU sites : | Campsite Directory | Tourist Guide | Places2B | AfterDirectory <-- Half price submission using coupon DP50 (from just $11 premium, and $10 basic permanent )

  5. #5
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    They absolutely could be added, I think the issue is that they've never really been offered and Dody wouldn't just take something someone else did and add it to the script.

    I'll see if I can get Dody to respond to this one himself.

  6. #6
    Join Date
    May 2007
    Location
    NJ, United States
    Posts
    1,651

    Default

    I would definiately find this mod EXTREMELY useful

    Maybe a poll would help too rather than everyone having to respond, unless they have something more to add to the discussion
    FSGDAG | IndexU Hosting | Owner
    Website | NiceCoder Script Hosting and More! | Web4URL is For Sale!
    Follow Us On Twitter | FaceBook Profile | YouTube Videos

  7. #7
    Join Date
    Nov 2004
    Posts
    1,822

    Default

    I just think that features like this added to the release makes it easier for everyone. If a decision is made that its not useful enough for the general indexU user then its open for someone to make a mod. By the way, the database structure i gave was so that unlimited photos could be uploaded, i realised that it probably isnt clear to most people what i was trying to say when i added that
    Main IndexU sites : | Campsite Directory | Tourist Guide | Places2B | AfterDirectory <-- Half price submission using coupon DP50 (from just $11 premium, and $10 basic permanent )

  8. #8
    Join Date
    Sep 2005
    Location
    Poland - Warsaw
    Posts
    342

    Default

    "Suggest category" option should be working as a submit_page form for users. I am using 4 dirs and users are suggesting a lot of different category's and most of them are very usefull.

    Such mod shoud give in ACP a possibility to accept or deny such category suggestion.

  9. #9
    Join Date
    Nov 2004
    Posts
    1,822

    Default

    Zubby made that category mod already, i suggested it to him
    Main IndexU sites : | Campsite Directory | Tourist Guide | Places2B | AfterDirectory <-- Half price submission using coupon DP50 (from just $11 premium, and $10 basic permanent )

  10. #10
    Join Date
    Nov 2004
    Posts
    1,822

    Default

    okay well i havent heard if this is going to be considered for adding to the release version of indexU so I think i will give it a shot. I can do all the uploading, and php/mysql stuff to make this work easy enough and write the block for it to be implemented on each listing - Anybody here good at AJAX? I have played with it but it does confuse me.

    I want the first 3 images (ordered by date) to be displayed, with an arrow to show the next three. Anyone know how to make some kind of Ajax image viewer like this?
    Main IndexU sites : | Campsite Directory | Tourist Guide | Places2B | AfterDirectory <-- Half price submission using coupon DP50 (from just $11 premium, and $10 basic permanent )

  11. #11
    Join Date
    Nov 2004
    Posts
    1,822

    Default

    Main IndexU sites : | Campsite Directory | Tourist Guide | Places2B | AfterDirectory <-- Half price submission using coupon DP50 (from just $11 premium, and $10 basic permanent )

  12. #12
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    Sorry, I don't know ajax that well otherwise I'd give you a hand.

  13. #13
    Join Date
    Sep 2006
    Posts
    167

    Default

    http://www.ajaxrain.com

    Look at this ajax site...
    Hotel Discount Web Search
    www.hotel-discount.com

  14. #14
    Join Date
    Nov 2004
    Posts
    1,822

    Default

    thats a cool site, i haven't seen that before

    Okay due to lack of response on weather this will be something added to the next version lets make it, firstly lets make it modular so that it works with any future indexU install.

    Also, lets figure out how we want it to work. Here is my idea :

    1) Browse button > user uploads image to /userimages/
    2) file needs to be renamed to avoid conflicts. Lets use a timestamp a dash and then the link_id so we can identify them if we need to
    3) take users email or member name and caption
    4) insert a record into "mod_images" table, structure is like this :
    ID | link_id (foreign_id) | picture URL | member name | email | caption | approved
    5) admin gets an email
    6) goes to a picture approval area in admin. Can "approve" or "dissaprove"

    -- approval means "approved is set to YES"
    -- dissaprove means "we delete the table row"

    7) a block that queries the database for all images with the link_id ?? order by date
    8) create thumbnails using smarty thumbnail plugin.
    9) clicking image uses lightbox to pop up full size image, we can display more than 3 images now because we can use the gallery feature and click next and previous.


    etc... anybody want to add anything?
    Main IndexU sites : | Campsite Directory | Tourist Guide | Places2B | AfterDirectory <-- Half price submission using coupon DP50 (from just $11 premium, and $10 basic permanent )

  15. #15
    Join Date
    May 2007
    Location
    NJ, United States
    Posts
    1,651

    Default

    The one thing that might be helpful is that if in step 6 the admin dissaproves the image, it not only deletes it from the table row, but the actual file as well from the server. For spam purposes, and for those that dont have large amounts of webspace on their hosting accounts, this might help... Not to mention just to keep your files clean and orginized
    FSGDAG | IndexU Hosting | Owner
    Website | NiceCoder Script Hosting and More! | Web4URL is For Sale!
    Follow Us On Twitter | FaceBook Profile | YouTube Videos

Similar Threads

  1. Idea for new version
    By inspireme in forum v5.x
    Replies: 0
    Last Post: 01-23-2008, 08:45 AM
  2. Another idea for SEO
    By Mickey in forum Blocks and Modification
    Replies: 0
    Last Post: 11-13-2006, 07:43 AM
  3. New reviews idea.
    By fish4carp in forum Blocks and Modification
    Replies: 2
    Last Post: 09-25-2006, 02:43 AM
  4. A idea for indexu....
    By Antony in forum Website development, hosting and promotion
    Replies: 0
    Last Post: 09-20-2006, 11:37 AM
  5. A idea
    By ezykiwi in forum Blocks and Modification
    Replies: 0
    Last Post: 09-19-2006, 09:25 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
  •