Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24

Thread: phpMyEdit Login Failed?

  1. #11
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    the "export" features are kinda nice, but they're also really easy to code yourself as needed.

    Other than that, it definitely seems less fully-featured than phpMyAdmin - maybe I missed it, but I didn't see any way to create|alter|whatever the tables themselves, and the UI seems "clunky" (but maybe that's just because it's a few years old).

    I guess it could be a nice starting point for purely data-entry situations (where you don't actually want users to have full DB access), but, as Daniel says, it would be better to write a task-specific UI in that case.

    I would like to hear from the OP about what caught their interest.

  2. #12
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    The specific format export options are nice, and a couple might be hard to code (eg, MS Word), but I would expect to find plugins for PHPMyAdmin that do the same thing. And I agree with traq that in general they're not hard to code yourself, and that will give you more freedom anyway to get whatever specific format you want.

    Indeed, the lack of being able to edit the structure is the real problem, and the real reason that PHPMyAdmin is (to the extent that it is) somewhat unfriendly: lots of features.

    This system looks more like a data management system, something for orders at an online store or checking the stock of cars at an auto dealership. But not a development system for the database.

    Does anyone know if you can turn off some features in PHPMyAdmin so that some users can't edit structure, etc.? That might be useful.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #13
    Join Date
    Apr 2012
    Location
    Chester, Cheshire
    Posts
    329
    Thanks
    7
    Thanked 35 Times in 35 Posts

    Default

    As a point of interest, which may be relevant to the original poster's problem as well; when using cPanel on a free hosting site, is there any method to improve the front end of phpMyAdmin that is available. Is there a "go to" addon or something that makes it easy to input data.

    Structural integrity is very important, I agree, but I think even more though in many ways is the actual data within the database. If there's no user friendly way of inputting that data then the database falls at the first hurdle. It's something I'm interested in for a project of mine as well. I'm using Access for my father's website, we've both been teaching Access for a long time and know it inside out, but I'm in half a mind to switch over to MySQL so we can host the site from the cloud rather than my server rig. In order to do this, we'd need an Access style front end with all the functionality that Access provides. Something like this phpMyEdit would offer that (to a degree), but if there's another, better way to use MySQL like you would use Access then that would be great.

  4. #14
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    Quote Originally Posted by djr33 View Post
    The specific format export options are nice, and a couple might be hard to code (eg, MS Word) ...
    I thought so too, at first, but if you download it, you'll notice that it's just HTML with a MS Word DTD. those boys in Redmond are slick...
    Quote Originally Posted by djr33 View Post
    Does anyone know if you can turn off some features in PHPMyAdmin so that some users can't edit structure, etc.? That might be useful.
    Seeing as how it's just a big PHP app, I would bet you could. Probably not very easily/cleanly, though.
    Strike that, I misread your question. _Yes_, it's as simple as creating another MySQL user/password, with lesser privileges.

    Quote Originally Posted by ApacheTech View Post
    is there any method to improve the front end of phpMyAdmin ... something that makes it easy to input data.
    I don't think there's anything very difficult about clicking on the database name, then clicking on the [Insert] tab.

    Good table/field comments make a big difference, too. I've had several clients handle their own data entry via phpMyAdmin (those who're already familiar with the basics of data entry); the biggest tripping point is usually using [tab] instead of [enter] to move to the next field.
    Last edited by traq; 05-29-2012 at 03:43 AM.

  5. #15
    Join Date
    May 2012
    Posts
    13
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Default

    Well thank you guys for help..
    I have phpmyadmin on my site ofc.. but i saw that phpmyedit is much easier to edit a specific table and its more user friendly, and u dont need access to ur whole cpanel and phpmyadmin to edit it, all u need ur hostname, username and password.
    But it's weird, i tried older version and also not working.
    I'm gonna try the ones u guys gave me, Thanks Again!

  6. #16
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Good points, traq.

    ApacheTech, I think it's incredibly biasing if you've only used free (or even cheap) hosting accounts with it. Honestly, that's most of my experience too, but considering how awful most control panels are and so forth, I don't see why you'd expect much more from that. If you ran your own dedicated server, you should have a much better experience with PHPMyAdmin. But it also sounds like you just having adjusted to PHPMyAdmin, having not used it much. I don't love it, but it gets the job done. If it's anything I'm going to use to input data, I write my own script for that. I use PHPMyAdmin to create tables, delete specific entries by hand, backup, import, etc. I use PHP (and web interfaces I make) for more day-to-day tasks.


    I have phpmyadmin on my site ofc.. but i saw that phpmyedit is much easier to edit a specific table and its more user friendly, and u dont need access to ur whole cpanel and phpmyadmin to edit it, all u need ur hostname, username and password.
    So is your goal to manage your database or to manage your data? There's a big difference. PHPMyAdmin is designed for managing the database-- structure, backups, etc. (see above).
    But if you want to deal with inputting entries, changing values, etc., then as we've described really the best option is to use something else, probably something you build yourself. As a generic solution, I think PHPMyAdmin with a lower access account might be a good idea. It would clean up some of the complicated options and let you get right to the business of editing the data. You should also be able to create just a username and a password. Many free/cheap hosts have an elaborate login system that really gets in the way of easy access (but may be good for security), so you could look into alternative hosts or maybe just another way to access it that is faster. PHPMyAdmin itself doesn't have any complex login requirements (except that it often times out after inactivity, maybe 10 minutes-- you could probably turn that off if you want).
    What do you spend most of your database time doing? Adding new entries? Is it for lots of different tables? Or just one (or a few)? If it's something managable, you should really consider building your own system in PHP for it. It'll make your editing life easier.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  7. The Following User Says Thank You to djr33 For This Useful Post:

    F0u4d (05-29-2012)

  8. #17
    Join Date
    May 2012
    Posts
    13
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by traq View Post
    really? doesn't seem fast at all, to me, if you can't even get it to work.

    Actually, a lot of things on that site seem broken. I'd be suspicious that it might not be supported anymore. The most recent date I could see was 2009, the parent site (platon.sk) doesn't even mention "phpMyEdit," and their "opensource" subdomain is unresponsive.

    Was there some particular feature that interested you? In general, I've found phpMyAdmin to be a great tool for managing MySQL...


    Quote Originally Posted by djr33 View Post
    As track said, phpMyAdmin is the standard and works well. Why doesn't it work in this case? The script you're trying to use is clearly outdated and problematic. Is there a reason you want to keep it?
    Quote Originally Posted by djr33 View Post
    So is your goal to manage your database or to manage your data? There's a big difference. PHPMyAdmin is designed for managing the database-- structure, backups, etc. (see above).
    But if you want to deal with inputting entries, changing values, etc., then as we've described really the best option is to use something else, probably something you build yourself. As a generic solution, I think PHPMyAdmin with a lower access account might be a good idea. It would clean up some of the complicated options and let you get right to the business of editing the data. You should also be able to create just a username and a password. Many free/cheap hosts have an elaborate login system that really gets in the way of easy access (but may be good for security), so you could look into alternative hosts or maybe just another way to access it that is faster. PHPMyAdmin itself doesn't have any complex login requirements (except that it often times out after inactivity, maybe 10 minutes-- you could probably turn that off if you want).
    What do you spend most of your database time doing? Adding new entries? Is it for lots of different tables? Or just one (or a few)? If it's something managable, you should really consider building your own system in PHP for it. It'll make your editing life easier.
    I agree, phpMyAdmin is a great tool for MANAGING MySql which is not my case... I have phpmyadmin on my server and i use it to manage database.
    Yes, what i wanted from using this phpmyedit is to manage my database data.. Add/Edit/Delete Rows
    I'm just back from university and i'm gonna take a look at the scripts ApacheTech posted.
    Thanks to all of you!
    Last edited by F0u4d; 05-29-2012 at 02:13 PM.

  9. #18
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Ok, that makes a lot more sense. Well, post what you find. A single solution probably won't be optimal for any particular use, although it will be easier than writing your own. (But personally I'd still probably write my own.)
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  10. #19
    Join Date
    Apr 2012
    Location
    Chester, Cheshire
    Posts
    329
    Thanks
    7
    Thanked 35 Times in 35 Posts

    Default

    Quote Originally Posted by traq View Post

    I don't think there's anything very difficult about clicking on the database name, then clicking on the [Insert] tab.
    Yes, that is good for someone who has seen or even heard of MySQL before. I'm looking for something for a 65 year old who's retired from teaching ICT for the last 30 years to use daily. We've used Access since the days of Cirrus and as said, although phpMyAdmin is ok for managing the structure, it doesn't look or behave anything like Access for managing the data. Especially because we need a seamless transfer from system to system. I don't think phpMyAdmin was ever designed to be used as a data entry terminal.

    The links I've posted are nearly half way to what I was thinking of and short of writing a bespoke DMS, I believe the OP is looking for similar. Sorry if I do seem biased in this, if it was for me then I'd learn phpMyAdmin back to front and put up with it, but from the experience I've had with different DMSs, Access does it so much better than any of the others.

  11. The Following User Says Thank You to ApacheTech For This Useful Post:

    F0u4d (05-30-2012)

  12. #20
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    I'm looking for something for a 65 year old who's retired from teaching ICT for the last 30 years to use daily.
    So make them a custom interface. That's really the best option. Even PHPMyEdit or something like that is bound to be more confusing than something specifically designed for them.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •