Results 21 to 30 of 134
-
1st May 2011, 05:18 PM #21Respected DeveloperWebsite's:
wrzc.orgTutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
1st May 2011, 07:45 PM #22OP(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.comA '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!
-
1st May 2011, 07:50 PM #23Respected DeveloperWebsite's:
wrzc.orgNice 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
-
1st May 2011, 10:39 PM #24OP(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.comIt's a db configuration now.
PHP Code:Core::load()->config(array_merge(
Core::load()->parseConfig('admin_links'),
array(
array('someURL', 'SomeText')
)
);
Projects:
WCDDL - The Professional DDL Script
Top Secret Project: In Development - ZOMG
ImgTrack - Never Have Dead Images Again!
-
1st May 2011, 10:53 PM #25Respected DeveloperWebsite's:
wrzc.orgRight 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
-
1st May 2011, 11:03 PM #26OP(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.comYou 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');
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!
-
1st May 2011, 11:34 PM #27OP(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.comok forget that I cba with AJAX, im going offtrack here.
*goes in vim, presses '100dd'*
Time to start over.
RELEASE DELAYED BY A DAYProjects:
WCDDL - The Professional DDL Script
Top Secret Project: In Development - ZOMG
ImgTrack - Never Have Dead Images Again!
-
2nd May 2011, 12:53 AM #28Respected DeveloperWebsite's:
wrzc.orgGood 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
-
2nd May 2011, 12:56 AM #29Respected Member
-
2nd May 2011, 12:58 AM #30OP(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.comHaha
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!
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
[Selling] WCDDL Auto Submission Accept Script
By deAthbLisS in forum Completed TransactionsReplies: 14Last Post: 23rd Sep 2011, 12:32 PM -
[Buying] Pre Modded WCDDL Script
By DEViANCE in forum Completed TransactionsReplies: 4Last Post: 15th Jun 2011, 09:08 AM -
[Hiring] for customizing WCDDL script.
By brainst0rm in forum Completed TransactionsReplies: 0Last Post: 17th Oct 2010, 02:09 AM -
WCDDL Theme and Script for KWWH
By Sponge Bob in forum Webmaster ResourcesReplies: 18Last Post: 4th Feb 2010, 12:37 AM -
Customized WCDDL script??
By mobilegangs.com in forum Webmaster ResourcesReplies: 4Last Post: 10th Sep 2009, 08:11 AM
themaCreator - create posts from...
Version 3.22 released. Open older version (or...