Welcome Guest, Not a member yet? Register   Sign In
BackendPro 0.6.1

[eluser]adamp1[/eluser]
You can already do this at http://www.assembla.com/spaces/backendpr...rsion_tool

But I have not updated the SVN recently since I am working on the code for 1.0. SVN has no other changes which 0.6.1 already has in.

[eluser]Référencement Google[/eluser]
[quote author="adamp1" date="1265470503"]But I have not updated the SVN recently since I am working on the code for 1.0. SVN has no other changes which 0.6.1 already has in.[/quote]

That's what I was wondering, if we would be able to get the 1.0 code somewhere ?

[eluser]adamp1[/eluser]
The 1.0 code is in SVN but a different branch. but its pre alpha at the moment so its actually unusable still.

[eluser]Référencement Google[/eluser]
Ha ok cool, thanks Adam.

[eluser]kakap[/eluser]
Hello, Im newbie and interest with BEP. does anybody has a simple sample project in using BEP ?. I found no articles yet in internet,

[eluser]pro18a[/eluser]
Hi,

I've just been directed to BackendPro from a newsletter article about it, and I've had a look around and really think it's a great concept.

It feels really harsh asking this question, but what kind of license does it come with? I.e. if I was to use it as part of a commercial project, I'd probably want to remove the BackendPro © Copyright 2008 - Adam Price - All rights Reserved line from the bottom as it would confuse the client... Would this be ok? I totally understand if you're not happy with this, and I'll knock something up my own way as I was going to do before... But it would be great to make use of something like this, as I was kind of dreading to the ACL permissions thing Smile

Great work though, from reading the first few posts in this thread I don't understand why everyone was having such a hard time understanding what it's all about - I get it! Nice!

Thanks,
Tom

[eluser]Waiel[/eluser]
Hi,
i just started to play with the BackendPro and it's amazing.
now while i try to build my own project
should i build it as a models ?,

in my project i need specific access list to it.
till now i don't know how to force check if the user is logged in or not. and how to check the access list that user have in my model.

Thanks

[eluser]Tibor Katelbach[/eluser]
[quote author="adamp1" date="1260470906"]This is an issue with using BackendPro and PHP 5.3, sadly the current version is not compatible. I do not have a fix for it as I am putting any spare time into BackendPro 1.0 which will be compatible with PHP 5.3.[/quote]

Hi
Are you certain about this
because I have a very strange behavior where
I have a test environment (latest CI) in which I install all sorts of modules for testing and where I installed BEP, and it worked perfectly.

so Then once I validated it, I pushed it into a clean new project that was going to use it
and I get this

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

so I beleive some other module corrected this issue in my playground environment but I have so many in there I don't know which one.
Are you sure it's php5 related ?
when is BEP1.0 due for ?
I compared the two File systems but hardly any structural difference
how can check the version of CI of my playground ?
I know my knew project is 7.2

Thanks for the thoughts
Tibor

[eluser]pro18a[/eluser]
Hi,

I had this problem myself when I installing yesterday. Basically it's just the error level you have set in your php configuration. The version of PHP 5 I have on my localhost is set to show all errors, so it was telling me about coding notices, such as deprecated code.

That line in particular is telling you that you need to remove a & character from the file/line described. I.e. not assigning a return value by reference (as PHP 5 does this automatically now I believe).

On line 414 of system\application\libraries\Loader.php

Replace

Code:
$CI->dbutil =& new $class();

with:

Code:
$CI->dbutil = new $class();

I had the same issue on a number of files, so it just takes a bit of editing / correcting of the relevant files, which can take a bit of tracking down but it's all good fun Smile

Again on line: 42 of \modules\auth\views\admin\access_control\resources.php

Replace:

Code:
$offset = $this->access_control_model->buildPrettyOffset(&$obj,$tree);

with

Code:
$offset = $this->access_control_model->buildPrettyOffset($obj,$tree);

I also had an error when trying to edit the site settings, ereg_replace needs to be replaced with preg_replace for example.

On line 100 of modules\preferences\libraries\Preference_form.php

Replace:

Code:
$this->field[$field]['label'] = ucwords(ereg_replace('_',' ',$field));

with

Code:
$this->field[$field]['label'] = ucwords(preg_replace('/_/',' ',$field));

There might be others... But I hope that's some help.

Cheers,
Tom

[eluser]Tibor Katelbach[/eluser]
Hi Tom
Thanks for your help
worked great
Cheers
Tibor




Theme © iAndrew 2016 - Forum software by © MyBB