PDA

View Full Version : ISP general manegement setting dont save new setting


adrenalinic
20th May 2006, 17:26
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!

till
20th May 2006, 17:56
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...

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?

how can write this info directly in config file..who is name of config file???
can write directly in config file this setting?!!?

This info is not written to a config file.

adrenalinic
20th May 2006, 18:00
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??

adrenalinic
20th May 2006, 18:07
or can insert manualy this value in database??
....
and who are recod to insert for restore only general server setting?

tgansert
20th May 2006, 18:21
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.

adrenalinic
20th May 2006, 18:38
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

tgansert
20th May 2006, 19:30
I restored from backup and I have control back.

adrenalinic
21st May 2006, 01:00
yes.
but i dont have a backup!
bye

till
21st May 2006, 14:53
yes.
but i dont have a backup!

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.

adrenalinic
21st May 2006, 15:10
yes.
i have insert value manualy in mysql db and work fine.
Thanks for support.

Josef.

lyncos
24th May 2006, 06:03
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

till
24th May 2006, 08:32
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).


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.

lyncos
24th May 2006, 20:50
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

falko
25th May 2006, 15:55
Do this:
rm -fr /root/ispconfig
rm -fr /home/admispconfig

Then connect to your MySQL database:
mysql -u root -p

On the MySQL shell, type
DROP DATABASE ispconfig;
quit;