Php admin panel generator [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any library that, given a sqlite/mysql/postgres database generates an admin panel to manage data à la Django? I know that some frameworks do this, but I need something indipendent from any other part of the application that relies solely on a given database to work.
I need something end-user oriented, so any sql-based tool (like phpMyAdmin) would not work. Thanks
Thanks.

Here are a couple of suggestions for use with mysql:
http://www.ajaxcrud.com creates an ajax crud interface. The main page provides a good example with code, and there are more advanced examples on the site as well.
There is also http://www.phpscaffold.com/ which you can use to create some skeleton pages if you prefer to have more control.
I have used both of these previously in projects and they work well.

You can check PHP Admin Panel.
It's not free but it's not expensive for what you can do.

How about Adminer Editor? It's pretty cool.

Related

Getting PHP templates for download [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have been looking for website templates to download so far I got only one bootstrap template. I can't seem to find much with source code attached with them for download. Which site do you recommend?
You aren't going to find many templates online that have ready made "server-side" code included. The point of a template is to kick-start the user interface and experience development. Normally it will only include HTML/CSS (and Javascript/Jquery) functionality. It is up to you (the coder) to fill in the implementation details according to your requirements and language of choice, .NET, PHP etc.
Here are some other bootstrap starter templates http://startbootstrap.com/all-templates

Is it adequate to use CMS for small admin panel app? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to code a small admib panel that should get and display statistics from remote servers. The main problem here is that I need to do that ASAP. So the main question here is: to use CMS or not? I'm almost sure that deploying something big like Joomla or Drupal will not be quick. Still, maybe there's something easier that matces the following conditions.
has implemented security stuff (secure login, sessions and etc);
has implemented user/groups/privileges mechanism;
has an abbility of adding users for Super Administrator.
UPD. framework instead of CMS will do as well.
Are you familiar with codeIgniter ? If yes then it is what you want.
Bonfire
It is a CMS with full time functionality of user/groups/privileges mechanism and many more.

Auto back-end generator [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any PHP application that can automatically generate add/edit forms and listing pages by just reading the database. Like PhpMyAdmin but highly customizable through code or configuration files.
The main reason is to avoid time spent on development of back-end of web applications.
Try a framework, like CakePHP or Symfony. Almost all frameworks offer scaffolding for the backend part of the app. Here's the Cake way, and here's the Symfony way.
Symfony (using Propel or Doctrine) may have just what you're looking for: define the tables and their relationships, and it will generate the models for them, from which it can again generate admin listing/add/edit forms.
Try XataFace
I used it for my websites and it works ok (at least until you want too much from customization)
Try Symphony for code or Modubiz for just configuration.
Forms and pages? Surely this is front-end, not back-end?
You might want to have a look at phpeanuts, phpformgen, phplens, dhtmlxgrid (NB there are other free ajax data grids - but I've not played with them much)
C.

tutorials/books to create a plugin/module/library? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
i wonder if there are tutorials/books explaining how you create a library/plugin/module for other to implement?
libraries/frameworks like solr, doctrine, codeigniter etc.
cause it seems that they follow the same pattern. having one "bootstrap" file to load configurations, other classes and so on.
i aim to understand the basics, so i can create a such library.
cause at the moment i want to code an address book that other can use. just include a bootstrap file and they are ready to use my classes (like Doctrine).
recommendations of sources to learn these things of stuff?
you experienced guys, how did you learn it?
thanks.
It depends - if you're not creating anything visual (resp. anything missing presenters/controllers), it shouldn't be problematic. Just put it into libs/components etc. directories.
If you're creating for example universal administration where presenters/controllers are present, which is placed in proper module folder (every framework has this feature): I wouldn't worry about shipping it so. But you may consider packing it such as whole project.
If you're looking for basic MVC tutorials, check out http://www.phpro.org/tutorials/Model-View-Controller-MVC.html.

Open-source comment engines [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a solid open-source commenting engine written in PHP. It needs to have workflow/moderation capabilities as well.
I've checked into Disqus, and while I like the concept, the site owner's may develop their own login system at a later point, which would have to integrate with the comment system. Also, I'm not sure that they want the comments hosted remotely.
Does anyone have any recommendations that I might look into? Alternatively, if you have experience with Disqus, what do you like/dislike about it?
Commentator looks to have a solid community backing, is written in PHP, and has most of the features you'd expect from a comment system.
you may want to check on to this site too, here is the link:
Commentics
as the Website itself Describes it :
What is Commentics?
Commentics is a free, advanced PHP comment script with many features. Professionally written and with open source code, its main aims are to be integrable, customizable and secure. It is designed to be integrated into your existing pages.

Categories