Skip to main content

Show Posts

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

Messages - DaFa

2
Bugs / --human date-- with future dates beyond 2038
Found that any future dates beyond 2038 return 'Bad Date'

Looked into the function code and found you are using UNIX signed 32bit integer.

The latest time that can be represented in Unix's signed 32-bit integer time format is 03:14:07 UTC on Tuesday, 19 January 2038 (231-1 = 2,147,483,647 seconds after 1 January 1970).

Also, would be nice to add custom date format from PHPRad studio, as well as custom formats for currency - like no decimal places, and commas for ,000
3
Bugs / 2 bugs with file uploads > canvas not going away and image icon not refreshing
Bug 1 - when dropping a file(s) onto the canvas 'Drop files here to upload', works well, but when you hit the Update button a new canvas opens over the list view > 2 ways to get rid of it is to refresh the page or wave a file over the top (not dropping it) and it goes away.

Bug2 - when editing a new record with uploaded files/images the previous ones are shown - if you refresh the page it goes away.

4
Bugs / Reordering of 'Edit Page Fields' - not working
Seems to be a bug in the Page tab > Item Pages > Edit Page > Edit Page Fields - move a field item up or down.  Works in all other views (List Page, View Page, Add Page) but can't reorder FieldName items with the blue up/down arrows in the 'Edit Page'.



Also, not sure if its a bug, but it's annoying > When you add or rearrange fields in the database, the program doesn't readjust these changes even after you hit the 'Sync Database' button, it just adds them to the bottom of the list; and the order doesn't change in the 'Edit Page Fields' either.
5
Questions / Re: Authentication and reports
Thanks Emman,

That worked for now.
Code: [Select]
'administrator' =>
array(
'users' => array('list','view','accountedit','accountview','userregister','add','edit','delete'),
'report' => array('list')
)

6
Questions / Re: Authentication and reports
Hi Emman,

Thanks for the suggestion, but doesn't seem to help.

With secure login enabled and report controller changed:
Quote
<?php

/**
 * Report Page Controller
 * @category  Controller
 */
class ReportController extends SecureController{
   /**
     * Render All Records  in a  Data Table
     * @return Html View
     */
   function index(){
      
      $this->view->render("report/index.php" ,null,"report_layout.php");
   }
}

I still have the issue of page 403 message:


any help to resolve this issue will be appreciated.

Thanks,


8
Questions / Authentication and reports
Seems when ever you enable authentication to a project you loose the ability to use the reports page.  I assume this is because the logged in user session doesn't get verified in the report controller.. is there a quick work around or do I have to resort to hand coding this into the project?
9
Bugs / Project files (ppm) not compatible from v2.5.5 to v2.5.6
Seems this in an ongoing bug... ppm files are not compatible from a lower version to a higher version...

Is there a work around, or do we have to deal with the pain of creating a new project each time there is a version upgrade????