Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - webinstinct

Pages: [1]
1
Feng Office 2 / Status on upgrading?
« on: January 04, 2012, 01:10:18 am »
We are on Feng 1.7.5. Desperately hoping to move to Feng 2.0. We have Feng Community installed on our own server. I'm looking for information on timing for an integrated upgrade process to Feng 2.0 from 1.7.5. If it's going to be 4-6 months, we may force a migration manually. But if it's forthcoming soon, we'll wait.

Anyone have any information on that?

2
How To's / Re: Sorting Comments in DESCENDING vs. ASCENDING order
« on: February 02, 2011, 01:34:59 am »
Hi Mirsad. I posted the details on how to do this here:

http://forums.fengoffice.com/index.php?topic=2221.0

3
How To's / Re: Change the intial loading.gif at login to my corporate logo
« on: December 28, 2009, 01:37:23 am »
Hey Lando,

I'm new to OG (Feng), but this was one of the first things I went off to find. The loading file (for the logo) is here:

public/assets/themes/default/images/layout/loading.gif

Hope that helps!

Dave

4
How To's / Re: Comment ordering?
« on: December 28, 2009, 01:34:04 am »
Alright, I figured this out. It was too critical for me. I submit this solution with the caveat that I am only about a week into OpenGoo (Feng) and do NOT fully understand the architecture etc. Their code is at the same time ridiculously complex and totally inspiring.  :)

Plus,  I just implemented this solution. So for all I know, I solved one problem and created another. But here is what I did:

IN THIS FILE: application/models/comments/Comments.class.php
CHANGE SORT ORDERS to:  `created_on` DESC  (4 of them)

This will display the comments in the correct (reverse) order. But the numbering will still be ascending (1..2..3..etc.). To change the numbering (3..2..1..):

IN THIS FILE: application/views/comment/object_comments.php
AND THIS FILE: application/views/comment/object_comments_for_print.php
CHANGE  $counter=0  TO  $counter=count($comments)+1
AND CHANGE  $counter++  TO  $counter--


Pages: [1]