Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   ZenTracker (http://www.bvlist.com/forumdisplay.php?f=81)
-   -   ZenTracker 1.0 rev. 38 (http://www.bvlist.com/showthread.php?t=6936)

Fynnon 11th October 2011 14:55

a good way to develop your source further would be more integration with sharing sites like rapidshare, mediafire, etc

daffy 11th October 2011 15:31

Quote:

Originally Posted by Optix (Post 30590)
Check :
- DocumentRoot set to /web/ (very important)
- AllowOverride (httpd.conf or apache2.conf) on "All"

i have this in sub domain, also when uploading with links, bbcode dont workin descritions and links do not post, if i edit,the links disapear

Optix 11th October 2011 15:53

Frontend or backend ?

cooly 11th October 2011 16:54

Quote:

Originally Posted by Optix (Post 30490)
@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 :)


cool whats the difference with the 2.0?

Optix 11th October 2011 16:57

Quote:

Originally Posted by cooly (Post 30606)
cool whats the difference with the 2.0?

Symfony2 is "fast as hell" with terrific performances !! That's the benefit of namespaces (PHP5.3).

See a short version of the keynote here :
"]symfony2_fast_as_hell.AVI

cooly 11th October 2011 22:36

1 Attachment(s)
here is fixed translation for /apps/frontend/modules/messages/actions/actions.class.php seems to work fine but you can check it out.

Optix 11th October 2011 22:50

Nice try ! I really appreciate ;)

In an action, don't test the user culture, it's a lot of work. You can directly use the I18N module :
PHP Code:

$this->getContext()->getI18N()->__("Here is the English sentence."); 

It allows you 2 things :
- Symfony fills the "messages.xml" for you in order to translate the string (you've to run a command to do that, but the reporting is automatic).
- When the translation isn't available in German (for exemple), it will display the English one. That's very cool : no error any more :D

In a template, you can directly call the function ;)

cooly 11th October 2011 23:48

1 Attachment(s)
Quote:

Originally Posted by Optix (Post 30628)
Nice try ! I really appreciate ;)

In an action, don't test the user culture, it's a lot of work. You can directly use the I18N module :
PHP Code:

$this->getContext()->getI18N()->__("Here is the English sentence."); 

It allows you 2 things :
- Symfony fills the "messages.xml" for you in order to translate the string (you've to run a command to do that, but the reporting is automatic).
- When the translation isn't available in German (for exemple), it will display the English one. That's very cool : no error any more :D

In a template, you can directly call the function ;)


ah well worth a try lol

Bump: one of my m8s went to signup to look at it and got this.

Optix 12th October 2011 21:24

Yep, a bug appared since rev34. It will be fixed in rev36 (available tomorrow).

To avoid that, you can disable mail confirmation :
- /apps/frontend/config/app.yml
- Set validate to false ;)

cooly 12th October 2011 21:29

Quote:

Originally Posted by Optix (Post 30646)
Yep, a bug appared since rev34. It will be fixed in rev36 (available tomorrow).

To avoid that, you can disable mail confirmation :
- /apps/frontend/config/app.yml
- Set validate to false ;)

kk cheers :)


All times are GMT +2. The time now is 18:46.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.