1
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
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
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
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
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
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,
7
Bugs / Re: Project files (ppm) not compatible from v2.5.5 to v2.5.6
8
Questions / Authentication and reports
9
Bugs / Project files (ppm) not compatible from v2.5.5 to v2.5.6
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?
10