Hi, I've created a plugin to display the clients company in the site-form. Only after I added it and moved it to the top of the "isp - ISP Web"-form. Site creation from a hostingplan gives wrong values after the site is created, for a number of fields. I didn't notice this in 2.0.9. I would like to email the plugin with an export of the web-form but at this moment it's not so nice thx Bram
Have a look at the file ispconfig_isp_web.lib.php. In the web_show function. Some of the elemets on the page are made visible / invisible by their index. E.g.: $doc->deck[0]->elements[14]->visible = 0; If you put your plugin on the top of the form, you have to set all indices for deck[0] plus one. in the case of the above example: $doc->deck[0]->elements[15]->visible = 0; The values for the hostingplan are set from line 166 - 187.