Activity Stream
48,167 MEMBERS
6829 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 3 of 14 FirstFirst 1234513 ... LastLast
Results 21 to 30 of 134
  1.     
    #21
    Respected Developer
    Website's:
    wrzc.org
    Quote Originally Posted by damnyou View Post
    Please code the script taking into consideration the new google's penalty. Thanks.
    That's a recent searches plugin people added themselves. You don't have to add it.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  2.     
    #22
    (╯?□?)╯︵ ┻━┻
    Website's:
    Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com
    A 'search log' is built into v3 which can be outputted as recent searches, but only by your choice.

    So if you want to completely avoid the new penalties, don't include it.

    As for progress, i'm just doing the admin functionality now, I decided to make it all pretty much AJAX based so the actual admin page remains a single, clean file.
    Projects:
    WCDDL - The Professional DDL Script
    Top Secret Project: In Development - ZOMG
    ImgTrack - Never Have Dead Images Again!

  3.   Sponsored Links

  4.     
    #23
    Respected Developer
    Website's:
    wrzc.org
    Nice so you know how in V2 you add links to the admin area

    $core->admin_links = array_merge($core->admin_links, array('webmaster' => 'Webmaster CP'));

    are they going to continue to be reload page or can they have the option of being ajax loaded too?

    Not that it matters, just wondering and it would continue the ajax loaded theme.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  5.     
    #24
    (╯?□?)╯︵ ┻━┻
    Website's:
    Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com
    It's a db configuration now.

    PHP Code: 
    Core::load()->config(array_merge(
         
    Core::load()->parseConfig('admin_links'),
         array(
               array(
    'someURL''SomeText')
         )
    ); 
    Meaning you only need to call that one time, then it is stored in the db unless the user, for some reason, re-alters it (or another mod alters it in a way that removes your changes).
    Projects:
    WCDDL - The Professional DDL Script
    Top Secret Project: In Development - ZOMG
    ImgTrack - Never Have Dead Images Again!

  6.     
    #25
    Respected Developer
    Website's:
    wrzc.org
    Right so with the admin links and other variables stored in the DB how do you suggest installing or importing mods?
    Same idea for adding or modifying tables. Do you suggest mods have an install file run once to make table modifications and load these configs and then delete the install file?
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  7.     
    #26
    (╯?□?)╯︵ ┻━┻
    Website's:
    Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com
    You could either have an install file, or fetch the config each time and check if your changes still exist. If they don't, make them again.

    So an admin module may look like so:
    PHP Code: 
    function myAdminPage($go) {
         if(
    $go != 'myadminpage') return false;
    }
    function 
    myAdminPageInit() {
         if(!
    Core::load()->config('myConfig')) {
              
    // check if my config is set, if not, set it
              
    Core::load()->config('myConfig''someValuesWoot');
         }
         
    $admin Core::load()->parseConfig('admin_links');
         
    // Check here if $admin array contains your changes
         // if not, set them
    }
    Core::load()->hook('AdminHandleContent''myAdminPage');
    Core::load()->hook('Init''myAdminPageInit'); 
    Only slight inefficiency there is you run a query per page load.
    To make it a bit more efficient you could only run it when the correct _GET['go'] is set.
    This way it only runs on pages you need it to run on.

    Because the Init hook runs on EVERY page, first thing almost.
    Projects:
    WCDDL - The Professional DDL Script
    Top Secret Project: In Development - ZOMG
    ImgTrack - Never Have Dead Images Again!

  8.     
    #27
    (╯?□?)╯︵ ┻━┻
    Website's:
    Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com
    ok forget that I cba with AJAX, im going offtrack here.

    *goes in vim, presses '100dd'*

    Time to start over.

    RELEASE DELAYED BY A DAY
    Projects:
    WCDDL - The Professional DDL Script
    Top Secret Project: In Development - ZOMG
    ImgTrack - Never Have Dead Images Again!

  9.     
    #28
    Respected Developer
    Website's:
    wrzc.org
    Good idea dropping the ajax. Having ajax will over complicate it and make it harder for less experienced webmasters to code mods and modify it.
    The success of the script so far is in it's simplicity. If experienced webmasters want to add fancy ajax themselves they can.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  10.     
    #29
    Respected Member
    Quote Originally Posted by JmZ View Post
    ok forget that I cba with AJAX, im going offtrack here.

    *goes in vim, presses '100dd'*

    Time to start over.

    RELEASE DELAYED BY A DAY
    cause I told you to delete some code earlier?

  11.     
    #30
    (╯?□?)╯︵ ┻━┻
    Website's:
    Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com
    Haha

    It's because I implemented 100 lines of JS for AJAX requests and what not, but decided to scrap it and make it all standard instead of AJAX.

    Now the admin page is way cleaner.
    Projects:
    WCDDL - The Professional DDL Script
    Top Secret Project: In Development - ZOMG
    ImgTrack - Never Have Dead Images Again!

Page 3 of 14 FirstFirst 1234513 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [Selling] WCDDL Auto Submission Accept Script
    By deAthbLisS in forum Completed Transactions
    Replies: 14
    Last Post: 23rd Sep 2011, 12:32 PM
  2. [Buying] Pre Modded WCDDL Script
    By DEViANCE in forum Completed Transactions
    Replies: 4
    Last Post: 15th Jun 2011, 09:08 AM
  3. [Hiring] for customizing WCDDL script.
    By brainst0rm in forum Completed Transactions
    Replies: 0
    Last Post: 17th Oct 2010, 02:09 AM
  4. WCDDL Theme and Script for KWWH
    By Sponge Bob in forum Webmaster Resources
    Replies: 18
    Last Post: 4th Feb 2010, 12:37 AM
  5. Customized WCDDL script??
    By mobilegangs.com in forum Webmaster Resources
    Replies: 4
    Last Post: 10th Sep 2009, 08:11 AM

Tags for this Thread

BE SOCIAL