Part of the EllisLab Network
   
76 of 77
76
BackendPro 0.6.1
Posted: 08 October 2011 01:42 AM   [ Ignore ]   [ # 751 ]  
Summer Student
Avatar
Total Posts:  20
Joined  05-04-2011

How do i use backendpro in my project?

 Signature 

It was a high counsel that I once heard given to a young person, “Always do what you are afraid to do.” Ralph Waldo Emerson

Profile
 
 
Posted: 10 October 2011 04:53 PM   [ Ignore ]   [ # 752 ]  
Summer Student
Total Posts:  5
Joined  10-10-2011

the function output()methode has not been
+
where is view file (Widget.tpl)

for more usable
separate view from controller

code is below that should be change

class Widget
{

 
var $name;

 var 
$body;

 var 
$CI;

 function 
widget($name NULL$body NULL)
 {
  $this
->CI get_instance();
  if( 
is_null($name))
  
{
   
return FALSE;
  
}

  $this
->name $name;
  
$this->body $body;
  return 
TRUE;
 
}

 
/**
  * Output widget code
  *
  * @access public
  * @return string
  */
 
function output()
 
{
  $output 
'<div class="widget" id="widget_' md5($this->name) . '">';
  
$output.= '<div class="action">' $this->CI->bep_assets->icon('tick') . $this->CI->bep_assets->icon('cross') .'</div>';
  
$output.= '<div class="header">'.$this->name.'</div>';
  
$output.= '<div class="body">'.$this->body.'</div>';
  
$output.= '</div>';
  return 
$output;
 
}

 
/**
  * Covert Widget name
  *
  * Coverts the widget name so it dosn't contain any spaces and is lower case.
  *
  * @access private
  * @return string
  */
 
function _name_convert()
 
{
  
return preg_replace("/ /","_",strtolower($this->name));
 
}
}

/* End of file Widget.php */
/* Location: ./modules/dashboard/libraries/Widget.php */ 
Profile
 
 
Posted: 10 October 2011 11:08 PM   [ Ignore ]   [ # 753 ]  
Summer Student
Avatar
Total Posts:  20
Joined  05-04-2011

Is there any one to help me?

How do i use backendpro?

is there any tutorial?

 Signature 

It was a high counsel that I once heard given to a young person, “Always do what you are afraid to do.” Ralph Waldo Emerson

Profile
 
 
Posted: 27 October 2011 03:06 PM   [ Ignore ]   [ # 754 ]  
Summer Student
Total Posts:  2
Joined  10-27-2011

I have a problem with the administrator of members

I had a user registered and activated with an activity in the application for 23 days
I proceeded to disable the system, as a result, I found that the application deletes the record of this person

Looking at the code I found that the system deletes users who have not been activated for X range of days (specified in the settings panel),
is a mistake because they were activated users can not be disabled

Besides the application to crash

I suggest to modify the code in userlib.php

/ / Remove user accounts Any Which Have Not Been Activated
/ / Within The Specified deadline
query = $ this-> CI-> user_model-> delete ('Users''DATE_ADD (created, INTERVAL ". $ this-> CI-> Preferences-> item (' account_activation_time ').' DAY) <= NOW () AND active ');

to:

/ / Remove user accounts Any Which Have Not Been Activated
/ / Within The Specified deadline
query = $ this-> CI-> user_model-> delete ('Users''DATE_ADD (created, INTERVAL ". $ this-> CI-> Preferences-> item (' account_activation_time ').' DAY) <= NOW () AND active AND ISNULL (last_visit');
Profile
 
 
Posted: 23 November 2011 04:54 PM   [ Ignore ]   [ # 755 ]  
Summer Student
Total Posts:  6
Joined  09-11-2009

I’m having a problem installing BackendPro on my dev server. It installs, but the front end doesn’t change and there’s no login. I’m testing it out using CodeIgniter 2.1 and XAMPP on Windows 7. Thanks in advance.

Profile
 
 
Posted: 30 November 2011 01:14 AM   [ Ignore ]   [ # 756 ]  
Summer Student
Avatar
Total Posts:  20
Joined  05-04-2011

I need a video tutorial using backendpro.

Where do i find it?

 Signature 

It was a high counsel that I once heard given to a young person, “Always do what you are afraid to do.” Ralph Waldo Emerson

Profile
 
 
Posted: 14 December 2011 09:22 AM   [ Ignore ]   [ # 757 ]  
Summer Student
Avatar
Total Posts:  5
Joined  10-26-2011

I have same condition with timtocci. I’m testing it out using CodeIgniter 2.1 and LAMP on Ubuntu 11.10.

and I got this issue :

A PHP Error was encountered

Severity
8192

Message
Assigning the return value of new by reference is deprecated

Filename
libraries/Loader.php

Line Number
414 

Thanks in advance.

Profile
 
 
Posted: 24 February 2012 03:53 AM   [ Ignore ]   [ # 758 ]  
Summer Student
Total Posts:  2
Joined  02-24-2012

How to install BackendPro 0.6.1 on codelgniter2.1??

Profile
 
 
Posted: 24 February 2012 07:15 AM   [ Ignore ]   [ # 759 ]  
Summer Student
Total Posts:  10
Joined  12-14-2010

Hi jasonshu,
Backendpro is old and not updated since long, so better not to use it.
Develop you application using latest codeigniter.
I had lots of issues with backendpro.

Thanks

Profile
 
 
Posted: 24 February 2012 07:23 AM   [ Ignore ]   [ # 760 ]  
Summer Student
Total Posts:  23
Joined  11-17-2007

I believe this is really interesting project in this context
CI Bonfire

It proposes a Faster CodeIgniter Development

Bonfire helps you build CodeIgniter-based PHP web applications even faster, by providing powerful tools and a beautiful interface you won’t be ashamed to show your client.

Profile
 
 
   
76 of 77
76