Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > ZenTracker
Closed Thread
  #31  
Old 2nd October 2011, 20:54
Optix's Avatar
Optix Optix is offline
Senior Member
 
Join Date: Sep 2011
France
Posts: 145
Default
It's in english by default ;)
The Following User Says Thank You to Optix For This Useful Post:
BamBam0077 (1st June 2022)
  #32  
Old 2nd October 2011, 23:41
cooly's Avatar
cooly cooly is offline
Senior Member
 
Join Date: Jun 2011
United Kingdom
Posts: 26
Default
Quote:
Originally Posted by Optix View Post
Thanks cooly, it's done !

SVN rev30 : Blocks in sidebar are collapsible now and the browser remembers which blocks are closed by using localStorage (HTML5).
That's spot on m8 nice one :)
  #33  
Old 3rd October 2011, 02:15
DAKz's Avatar
DAKz DAKz is offline
Senior Member
 
Join Date: Jul 2009
P2P
Posts: 380
Default wow amazing
14 revisions in 24 hours, unreal.
The Following User Says Thank You to DAKz For This Useful Post:
BamBam0077 (1st June 2022)
  #34  
Old 3rd October 2011, 08:33
Optix's Avatar
Optix Optix is offline
Senior Member
 
Join Date: Sep 2011
France
Posts: 145
Default
I've been very busy this weekend

Bump: Revision 33 :
- Added 2 more tests (CURL & GD2) in install.php
- Fixed routing issue in backend
- Fixed "unknown function format_date()" by calling Date helper
The Following User Says Thank You to Optix For This Useful Post:
BamBam0077 (1st June 2022)
  #35  
Old 7th October 2011, 00:58
cooly's Avatar
cooly cooly is offline
Senior Member
 
Join Date: Jun 2011
United Kingdom
Posts: 26
Default
Quote:
Originally Posted by DAKz View Post
14 revisions in 24 hours, unreal.
Agreed fast work. Wish I knew OOP but that's for another day ;)
  #36  
Old 7th October 2011, 03:38
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
2 secs to install
still some english to translate, what do i change if this is in a sub directory for images to show.....
i have few errors but i believe its because i need to install some apache mods for it
Attached Thumbnails
Image.jpg  
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
  #37  
Old 7th October 2011, 09:55
Optix's Avatar
Optix Optix is offline
Senior Member
 
Join Date: Sep 2011
France
Posts: 145
Default
@daffy :
You need to set two variables (app_host_*) with your current hostname. It is set to localhost by default in /apps/frontend/config/app.yml

These variables allows you to parallelize downloads across hostnames and load the website as fastest as you can, because your browser will fetch HTML and images from 3 domains, so 3x faster. You can check that ZenTracker scores the "A" grade on GTMetrix (PageSpeed).

You can set it to your current domain or on different subdomains for reach the same DocumentRoot.

Don't forget to clean the cache after editing :) (delete /cache/ contents).

@cooly : this week i've made a lot of refactoring to reduce code lines with the same features.
Every view file will have only objects and no more arrays which are not flexible at all :)
I will upgraded the Symfony framework : the new version (1.4.14) has many improvements about performances from the cache manager :D
So this time, no bug fix, no features, but a very efficient code for the developers :)
  #38  
Old 7th October 2011, 13:07
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
thanks bud, just had to change

host_uploads: localhost
host_cdn: localhost

to

host_uploads: mydomain/zen/web
host_cdn: mydomain/zen/web

and clear my cache.
and all is well upto now, i still need to ad some mod to apache for this, it was late lastnight and i was to high to mess with apache lol

alot admim panel dont work
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
  #39  
Old 11th October 2011, 01:07
Optix's Avatar
Optix Optix is offline
Senior Member
 
Join Date: Sep 2011
France
Posts: 145
Default
Quote:
Originally Posted by daffy View Post
alot admim panel dont work
Check :
- DocumentRoot set to /web/ (very important)
- AllowOverride (httpd.conf or apache2.conf) on "All"
  #40  
Old 11th October 2011, 01:14
Optix's Avatar
Optix Optix is offline
Senior Member
 
Join Date: Sep 2011
France
Posts: 145
Lightbulb UPDATE : Revision 34
Hi guys !

So many days have left without news, but a lot of work has been done !

First, I want to thank every member who support me and telling me how cool and awesome job I do in this platform.


- New user profile layout : uploads are displayed like as an iOS device and the ratio of the member is showed

- Registrations : they are handle by sfForm, so it validates alone the form and unicity of information (less code in "Membre" module)

- Registrations : 2 variables allows you to open/close registrations and the needing of a mail confirmation (into "app.yml" config file)

- Registrations : two versions of mail are sent (HTML & text) with differents templates. The text's one has been deleted and to render it, we're taking now the HTML version with a strip_tags(). The template consider the right host now.

- Members : less code in the login process

- Members : IP checking is done once per session and not once each page viewed

- Members : usernames & avatars are given from the model which anonymize these datas when the user isn't auth (less code in templates)

- Sharing module : less code avoiding arrays for the profit of objects (more flexible)

- Sharing module : on index, the module loads only 900 chars from the description, enought from the system to fetch the cover inside it. Less memory footprint and better Memcache hitrate

- Sharing module (cover scanner) : it returns a better result when no image with a good ratio is found (ratio used by movies cover)

- Sharing module : on index, stars are taking in consideration the number of completed, comments and votes, to report a more accurate indicator of an upload popularity

- Sidebar : categories are fetching the right count of uploads (only torrents where fetched, not megaupload)

- Sidebar : with the benefit of i18n, using the right culture's syntax for formatting numbers and currencies

- Sidebar : every member connected are displayed, even they haven't an avatar

- CSS : some look&feel improvements on buttons

- Demo in production : guests can view uploads without registration to try the browsing experience of ZT


WARNING : Users who run ZT in production : set an exception on ".yml" files (these are config files !) to avoid the reset of these files.

For updating, it's a simple command : svn update

Details :
http://sourceforge.net/p/zentracker/code/34/

Enjoy :)
Closed Thread

Tags
10 , 33 , 34 , 35 , 36 , 37 , 38 , rev , zentracker

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 13:19. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.