Both the short tags and the user registration issues should be cleared up now. I also fixed a bug with the form_validation not working now that I had rearranged things. It’s all in the repo.
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
March 30, 2011 2:05am
Subscribe [33]#46 / Apr 05, 2011 2:28pm
Both the short tags and the user registration issues should be cleared up now. I also fixed a bug with the form_validation not working now that I had rearranged things. It’s all in the repo.
#47 / Apr 06, 2011 10:39am
Thanks. Works great!
#48 / Apr 06, 2011 4:51pm
Hello Lonnie,
Maybe an idea for bonfire, can you make it so that when you run the installer you can also add the database prefix? I know you can set this up for all the databases after you run the installer, but then you will still have some tables using the bf prefix.(tables added in the 001_Install_initial_tables.php) It would be nice if everything is using the same prefix.
#49 / Apr 07, 2011 5:33pm
Hello Lonnie,
Maybe an idea for bonfire, can you make it so that when you run the installer you can also add the database prefix? I know you can set this up for all the databases after you run the installer, but then you will still have some tables using the bf prefix.(tables added in the 001_Install_initial_tables.php) It would be nice if everything is using the same prefix.
That’s a great idea. I modified that last night (have been without internet access here at home for 2 days) and also pulled all of the install code into a core_module (where it should have been all along.)
Currently, am working on building out a testing framework to use with it. It’s combining ideas from Toast, FuelCMS and SimpleTest. Have basic unit testing working (though, ironically enough, not fully tested yet) and will be starting on the Web_Tester next to allow testing generated pages, forms, etc. I’m pretty excited to actually have a testing framework that works with all of this stuff!
#50 / Apr 07, 2011 5:43pm
Wow, thats great. Will keep an eye on the repo 😊
#51 / Apr 09, 2011 6:31pm
Great work!! Love it! Thank you!!!
One quick note. Correct me if I’m wrong, but I think line 168 of /libraries/assets.php should be:
$styles = array_merge($style, self::$styles);instead of:
$styles = array_merge($styles, self::$styles);#52 / Apr 10, 2011 4:57am
Bonfire is an awesome idea.
#53 / Apr 11, 2011 12:54pm
Hello Lonnie,
I’m I correct that the email forgotten password doesn’t work yet? I’ve changed the mailing settings but I have not received the email yet.
Maybe you can include a email template editor to bonfire? This way we can create email templates from within bonfire and select what template is used. I will take a look at it, maybe I can build this one myself 😊
#54 / Apr 11, 2011 10:53pm
Just copied the current build to my online test site. The initial page and install page comes up just fine, but when I try to test the database connection I get:
A PHP Error was encountered
Severity: Warning
Message: mysql_connect() [function.mysql-connect]: Access denied for user 'basketca_adatti '@'localhost' (using password: YES)
Filename: controllers/install.php
Line Number: 79
Unable to connect to database: Access denied for user 'basketca_adatti '@'localhost' (using password: YES)The site address is http://basketcasesoftware.com/adatti
I’ve verified the existence of the db on the host. I have PyroCMS running on the site at my root without any problems so I don’t think that’s it.
#55 / Apr 12, 2011 12:55pm
Hello Lonnie,
We can now give the database prefix on install, but the old bf_ prefix is still used in a file:
A Database Error Occurred
Error Number: 1146
Table 'database.bf_users' doesn't exist
SELECT role_name, COUNT(1) as count FROM bf_users, bf_roles WHERE bf_users.role_id = bf_roles.role_id GROUP BY bf_users.role_id
Filename: /home/xxx/public_html/xxx/core_modules/users/models/user_model.php
Line Number: 114#56 / Apr 13, 2011 10:27am
help. I get this, when i go to the login page
A PHP Error was encountered
Severity: Notice
Message: Undefined offset: 1
Filename: libraries/auth.php
Line Number: 530
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /hermes/bosweb26b/b2258/ipg.qfilenet/bonfire/codeigniter/core/Exceptions.php:170)
Filename: libraries/Session.php
Line Number: 671#57 / Apr 15, 2011 11:18am
Great work!! Love it! Thank you!!!
One quick note. Correct me if I’m wrong, but I think line 168 of /libraries/assets.php should be:
$styles = array_merge($style, self::$styles);instead of:
$styles = array_merge($styles, self::$styles);
Wow! Looks like I missed a few posts in here. Sorry guys!
I’ll have to check. What problems are you running into?
#58 / Apr 15, 2011 11:19am
Bonfire is an awesome idea.
Thanks! I’m looking forward to it growing into a really powerful package we can all use.
#59 / Apr 15, 2011 11:22am
Hello Lonnie,
I’m I correct that the email forgotten password doesn’t work yet? I’ve changed the mailing settings but I have not received the email yet.
Maybe you can include a email template editor to bonfire? This way we can create email templates from within bonfire and select what template is used. I will take a look at it, maybe I can build this one myself 😊
I ripped that from a project that it was working in, but haven’t confirmed that it works. My local machine doesn’t email. I should probably fix that. 😊
The template editor is definitely on the list, but not on the short list, unfortunately. There is a basic one that lets you edit the header and footer, but only for a single template.
The emailer is definitely one area that I would love to see improved…. multiple templates, editor, other tools like bounce checking/reports, etc.
If you want to work on any part of it, that would be awesome!
#60 / Apr 15, 2011 11:23am
@basketcase - Sorry I missed your post, but it looks like you got it working. That’s great. Did you need to alter anything in Bonfire to make it work?