PDA

View Full Version : Future plans


blank
11-08-2007, 02:06 PM
1) Moving templates into the DB! You will not be able to salvage the old templates, you'll have to take the new one and start over! The good side of this is I'm working on a custom templating engine that will make sharing templates very easy. I am building a template cache so you won't have any extra resources used, you'll just have easier to edit templates

CREATE TABLE `ffm_beta`.`templates` ( `id` SMALLINT NOT NULL AUTO_INCREMENT ,
`name` TEXT NOT NULL ,
`content` TEXT NOT NULL ,
UNIQUE ( `id`
)
) ENGINE = MYISAM2) Put in my ffmpeg-php code! I already have something that converts all of the movies over to .flv and creates thumbnails for everything. You guys will be able to use these tools and more some time soon...

3) Even more advanced caching system.... random content boxes have 5 different instances of this cached and update those every XX loads all set within the admin panel

4) move a bunch of those config.php variables into its own file so that I can add to this easily without you guys having to re-edit config.php with your login info every time

5) better installer!

6) A paid "plug" system

7) external links with an iframe up top... This way you can look like you have more content but link to others ;) This is extremely usefull for adult sites running affiliate type systems that still want to keep a header up top while they view other things.

8) Everywhere there's an edit type box but a WYSIWYG editor and have options in the config to turn it on/off

blank
11-10-2007, 05:25 PM
Next release will have FFMPEG support for converting movie files in your /media/uploads directory to .flv and also will be able to scan through your movies and create thumbnails!

ALTER TABLE `config` ADD `porn` TEXT NOT NULL ;Changed the settings page around so its no longer 1 page

Removed Settings:
Full Width
Game Sponsorship
Game sponsortship price


ALTER TABLE `config`
DROP `width`,
DROP `game_sponsor`,
DROP `sponsor_price`;

blank
11-13-2007, 09:22 AM
I just made a HUGE addition to the system cache! Now anytime you go to the play page ALL of the game/movie vars are CACHED! The main query on EVERY page load is now cached! There is now just the UPDATE +1 stats logging currently. I am going through every page and caching everything I can to be able to scale extremely well as a site gets large.

blank
11-13-2007, 12:59 PM
image cropping tool http://www.sephiroth.it/file_detail.php?id=109#

blank
11-17-2007, 02:41 PM
- needs a custom embed
- dump the flash upload tool for something that allows more than 50Mb
- force cache update when adding media
- category edit/delete isn't working

ALTER TABLE `config`
ADD `box_1` TINYINT NOT NULL DEFAULT '1',
ADD `box_2` TINYINT NOT NULL DEFAULT '1',
ADD `box_3` TINYINT NOT NULL DEFAULT '1',
ADD `box_4` TINYINT NOT NULL DEFAULT '1',
ADD `box_5` TINYINT NOT NULL DEFAULT '1',
ADD `box_6` TINYINT NOT NULL DEFAULT '1',
ADD `box_7` TINYINT NOT NULL DEFAULT '1';

blank
11-25-2007, 10:14 PM
Redoing the ratings to make room for ajax

ALTER TABLE `ratings` CHANGE `gid` `id` MEDIUMINT( 7 ) NOT NULL DEFAULT '0'

ALTER TABLE `ratings` CHANGE `votes` `total_votes` MEDIUMINT( 10 ) NOT NULL DEFAULT '0'

ALTER TABLE `ratings` CHANGE `total` `total_value` MEDIUMINT( 10 ) NOT NULL DEFAULT '0'

ALTER TABLE `ratings` DROP `rating`;

ALTER TABLE `ratings` ADD `used_ips` LONGTEXT NOT NULL ;

ALTER TABLE `ratings` ADD `rating` DECIMAL( 2, 1 ) NOT NULL DEFAULT '0.0';

ALTER TABLE `links` ADD `used_ips` LONGTEXT NOT NULL ;

blank
12-06-2007, 03:59 PM
V1.3.1 release

Need to add Addthis.com username into settings
Need to change all of the 0/1 settings to on/off

blank
12-08-2007, 01:53 PM
* I need to auto create thumbnails for the .flv files that are uploaded
* ffmpeg variable to turn OFF ffmpeg!
* Setting to turn off user uploads
* Restructured templates quite a bit to make it easier to drastically change things
* Overhauling the templates to make it easier to change things like colors
* Moved most script images out of the /images directory and into /templates/images