Web Hosting Talk







View Full Version : PHP platform


paid2surf
03-17-2005, 04:24 PM
I have been looking around for quite some time searching for PHP platform that serves the following requirements:

1.Install different PHP scripts such as VCards, VBulletin, Links, News…etc. from different venders. However; all of these scripts will use MySql DataBase.
2.One single user account to access all different scripts.
3.Can I assign single user with different access level for each script, or develop a users grouping for that purpose.
4.Preferable to have one database for all different scripts, but not necessarily.

Any suggestion will be highly appreciated.

nulled
03-18-2005, 09:02 PM
You can use one databsae and have each script with a PREFIXED table names.

FOr instance the script using DB, MyDB and its fields named

script1_table1
script1_table2
etc etc..

that way you can use 1 database for all scripts.

ALot of php script have Setup and Config files that allow you do add the prefix for this very reason.

Otherwise just edit the PHP script yourself since its all open code.

insanelymacintosh
03-18-2005, 09:22 PM
I don't know of anything that will give you all of that without having it custom programmed. The closes thing that I can think of would be Fantastico. But this will create a new database and a new user for every script.