Results 1 to 8 of 8

Thread: [5.0.1/MOD] File hosting

  1. #1
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default [5.0.1/MOD] File hosting

    Modification: File hosting
    Indexu version: 5.0.1

    Description: This modification will make indexu to be used as file hosting similar with rapidshare.de or yousendit.com

    Live demo: http://www.niceupload.com

    Installation:

    1. Do indexu 5 fresh installation

    2. Upgrade database, run /install/update_db_filehosting.php

    alter table
    -----------

    Code:
    alter table idx_link add filename varchar(255);
        alter table idx_link_temp add filename varchar(255);
        alter table idx_link add file_size varchar(255);
        alter table idx_link_temp add file_size varchar(255);
        alter table idx_link add file_upload varchar(251);
        alter table idx_link_temp add file_upload varchar(251);
        alter table idx_link add file_counter int(11);
        alter table idx_link_temp add file_counter int(11);
        alter table idx_link add file_last_accessed date";
        alter table idx_link_temp add file_last_accessed date";
    add categories
    --------------

    Code:
    insert into idx_category values (1,0,'no_category','','folder.gif','','0',0,'','','0','0','','',0,'',0,0,0,0)
        insert into idx_category values (2,0,'Food & Dining','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (3,0,'Health & Wellness','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (4,0,'Sports','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (5,0,'Software','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (6,0,'Automotive','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (7,0,'Business & Finance','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (8,0,'Games','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (9,0,'Entertainment','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (10,0,'Music','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (11,0,'Apparel','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (12,0,'Travel','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (13,0,'Fun Stuff','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
    3. Go to admin panel -> category -> update category path

    4. Set allowed file extention, admin panel -> option -> setup
    gif,jpg,png,mp3,zip,rar,avi,mpg,wmv,exe

    5. Files changed

    Code:
    .htaccess
        add.php
        index.php
    
        /kosmos/add_form.html
        /kosmos/add_ok.html
        /kosmos/header.html
        /kosmos/footer.html
        /kosmos/header.html
        /kosmos/index.html
        /kosmos/mail/add_ok.mail
        /kosmos/msg.php
        /lang/english.php
    6. Files added

    Code:
    /install/update_db_filehosting.php
        
        delete.php
        page.php
        download.php
        dl.php
        file_upload_prun.php
    
        /kosmos/faq.html
        /kosmos/term.html
        /kosmos/contact.html
        /kosmos/download.html
        /kosmos/dl_error.html
        /kosmos/delete.html
    7. edit php.ini

    Code:
    post_max_size = 100M
        upload_max_filesize = 100M
    8. set daily cron job to run /file_upload_prun.php
    Attached Files Attached Files

  2. #2
    Join Date
    Sep 2005
    Posts
    8

    Default cant u explan better because i no see ini file calll

    i no see any file call update_db_filehosting.php
    nd how i change my database



    Quote Originally Posted by dody
    Modification: File hosting
    Indexu version: 5.0.1

    Description: This modification will make indexu to be used as file hosting similar with rapidshare.de or yousendit.com

    Live demo: http://www.niceupload.com

    Installation:

    1. Do indexu 5 fresh installation

    2. Upgrade database, run /install/update_db_filehosting.php

    alter table
    -----------

    Code:
    alter table idx_link add filename varchar(255);
        alter table idx_link_temp add filename varchar(255);
        alter table idx_link add file_size varchar(255);
        alter table idx_link_temp add file_size varchar(255);
        alter table idx_link add file_upload varchar(251);
        alter table idx_link_temp add file_upload varchar(251);
        alter table idx_link add file_counter int(11);
        alter table idx_link_temp add file_counter int(11);
        alter table idx_link add file_last_accessed date";
        alter table idx_link_temp add file_last_accessed date";
    add categories
    --------------

    Code:
    insert into idx_category values (1,0,'no_category','','folder.gif','','0',0,'','','0','0','','',0,'',0,0,0,0)
        insert into idx_category values (2,0,'Food & Dining','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (3,0,'Health & Wellness','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (4,0,'Sports','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (5,0,'Software','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (6,0,'Automotive','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (7,0,'Business & Finance','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (8,0,'Games','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (9,0,'Entertainment','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (10,0,'Music','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (11,0,'Apparel','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (12,0,'Travel','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
        insert into idx_category values (13,0,'Fun Stuff','','folder.gif','','1',0,'','','1','0','','',0,'',0,0,0,0)
    3. Go to admin panel -> category -> update category path

    4. Set allowed file extention, admin panel -> option -> setup
    gif,jpg,png,mp3,zip,rar,avi,mpg,wmv,exe

    5. Files changed

    Code:
    .htaccess
        add.php
        index.php
    
        /kosmos/add_form.html
        /kosmos/add_ok.html
        /kosmos/header.html
        /kosmos/footer.html
        /kosmos/header.html
        /kosmos/index.html
        /kosmos/mail/add_ok.mail
        /kosmos/msg.php
        /lang/english.php
    6. Files added

    Code:
    /install/update_db_filehosting.php
        
        delete.php
        page.php
        download.php
        dl.php
        file_upload_prun.php
    
        /kosmos/faq.html
        /kosmos/term.html
        /kosmos/contact.html
        /kosmos/download.html
        /kosmos/dl_error.html
        /kosmos/delete.html
    7. edit php.ini

    Code:
    post_max_size = 100M
        upload_max_filesize = 100M
    8. set daily cron job to run /file_upload_prun.php

  3. #3
    Join Date
    Mar 2006
    Posts
    3

    Default

    Hi, where is this file update_db_filehosting.php?
    anybody!

    Th@nx

  4. #4
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default

    I updated the attachment.
    Copy update_db_filehosting.php to install folder.

  5. #5
    Join Date
    Mar 2006
    Posts
    3

    Default

    Thank you dody ! But update_db_filehosting.php still missing from the attachment file!

    Thanx again mate!

  6. #6
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default

    Sorry i forgot it
    It's there now.

  7. #7
    Join Date
    Mar 2006
    Posts
    3

    Default

    You are Great Man,, Thanx Mate!

  8. #8
    Join Date
    Jan 2006
    Posts
    28

    Default 5.0.3

    Dody,

    Will this work with already installed 5.0.3 version??

    Zoran

Similar Threads

  1. Hosting Resellers What Do You Use...
    By berto in forum Customers Lounge
    Replies: 5
    Last Post: 01-21-2006, 08:14 PM
  2. Hosting Security
    By berto in forum Customers Lounge
    Replies: 4
    Last Post: 01-01-2006, 01:14 PM
  3. Soto Hosting
    By berto in forum Website development, hosting and promotion
    Replies: 0
    Last Post: 12-23-2005, 05:46 PM
  4. Web Hosting
    By isearch in forum Website development, hosting and promotion
    Replies: 22
    Last Post: 12-15-2003, 07:39 AM
  5. I'm looking for a hosting provider.
    By Jibé in forum Pre-Sales Questions
    Replies: 2
    Last Post: 08-28-2002, 08:00 AM

Posting Permissions

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