Hi. I want update info of my server in general tab of Management -> Server -> Setting. When i write a new info of my server how Name server, ip address, netmask....email admin... DNS....and any other info of general management and click SAVE, isp config not save new setting and display me a empty default value... how can write this info directly in config file..who is name of config file??? can write directly in config file this setting?!!? help help!
Did you do any modifications manually to the database? Did you load the database dump that is included in the ISPConfig installer manually as you installed ISPCOnfig? This info is not written to a config file.
yes. i have deleted manualy a duplicate value in different records of database.... there is a mode for restore db...i dont have recent a backup of database...but have only a old db backup..of same version of ispconfig.... i have a dump of this db... i wold try to restore old db and update manualy any last modify to server.... can be a solution??
or can insert manualy this value in database?? .... and who are recod to insert for restore only general server setting?
Even after reinstall, I am still experiencing this. The Server & IP fields in 'Add New Site' are blank and there is zero I can do about it.
HI!! I have resolved! Have started my local vps. installed phpmyadmin. Have see the value in to mysql db in local vps and have restored to my mysql db on the my machine in housing in datacenter!!! THANKS
The values are detected by the installer and are not all accessible in the interface. You can try to insert an empty record in the isp_server database and then set the values in the interface.
I have the same exact problem Hi all, I installed ISPconfig on a Debian 3.1 server and i have the same exact problem. The 1st time I installed ispconfig it failed, and now the database seems to be wrong. I appréciate if someone can post a working dump of his database or help me with that problem. The tables isp_* seems to be empty (no rows). Thanks all lyncos
The database can not be created from a dump as the settings in the table are generated dynamically based on your linux installation. This problem happens when the ISPConfig installer is not able to create the database because it already existed before from your broken installation attempt. Please uninstall ISPConfig by running: /root/ispconfig/uninstall Then check if the database has been removed in /var/lib/mysql and install ISPConfig again.
When i try to uninstall it dosent seems to do anything look at the output server117:~/ispconfig# ./uninstall No results found!server117:~/ispconfig# in mysql: mysql> show databases -> ; +-----------+ | Database | +-----------+ | ispconfig | | mysql | | test | +-----------+ do you have any idea how i can cleanly uninstall ISPconfig ? Thanks
Do this: Code: rm -fr /root/ispconfig rm -fr /home/admispconfig Then connect to your MySQL database: Code: mysql -u root -p On the MySQL shell, type Code: DROP DATABASE ispconfig; quit;