Hi I just loaded up phpcc this morning, looking good so far although it doesn't work on apahce 2.x i had to put it on a 1.x server.
I have a couple of suggestions for you if you don't mind the feed back.
1) When tyring to add code for the first time you get this message: "To enter code, first browse to the desired category or create a new category."
for newbies to this like myself it might be helpful to use a message simular to:" To enter code, first browse to the desired category or create a new category under the administration menu".
2) When adding code, if you leave the language field empty, then the snippet doesn't save, but it doesn't alert you to this fact so you loose your data.
3) I think it would be nice to be able to use prefixes on
the tables, perhaps in a future version. This would help those that only have access to 1 database, or those that wish to host multiple copies on one website with one database. It could work somthing like this:
In your config.php, you could have $prefix, that is
global.
for example:
$prefix = phpcc_;
and could be used like so:
make sure this is there somewhere:
global $prefix;
$result = db_query("select * from $prefix".users." order by $sort ASC");
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Points taken, and I'll get each one into the next release, which may have to wait until after the holidays.
Regarding point 1, you don't necessarily have to use the administrative menu. Once a user is logged in, they have permission to create new categories, or admins can do it as well. If you're the only user, then it's a moot point anyway. I will work on a way to better explain that, though.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi I just loaded up phpcc this morning, looking good so far although it doesn't work on apahce 2.x i had to put it on a 1.x server.
I have a couple of suggestions for you if you don't mind the feed back.
1) When tyring to add code for the first time you get this message: "To enter code, first browse to the desired category or create a new category."
for newbies to this like myself it might be helpful to use a message simular to:" To enter code, first browse to the desired category or create a new category under the administration menu".
2) When adding code, if you leave the language field empty, then the snippet doesn't save, but it doesn't alert you to this fact so you loose your data.
3) I think it would be nice to be able to use prefixes on
the tables, perhaps in a future version. This would help those that only have access to 1 database, or those that wish to host multiple copies on one website with one database. It could work somthing like this:
In your config.php, you could have $prefix, that is
global.
for example:
$prefix = phpcc_;
and could be used like so:
make sure this is there somewhere:
global $prefix;
$result = db_query("select * from $prefix".users." order by $sort ASC");
Points taken, and I'll get each one into the next release, which may have to wait until after the holidays.
Regarding point 1, you don't necessarily have to use the administrative menu. Once a user is logged in, they have permission to create new categories, or admins can do it as well. If you're the only user, then it's a moot point anyway. I will work on a way to better explain that, though.