EtherCard ENJ Hostmachine Problem ?

Hi EveryBody ;

I have some problem with ethercard library.

My hostmachine IP can be changeable, so I save it eeprom. So when I init chip I read eeprom and upload values to chip.

In Program defines ;

const char website[] PROGMEM = "192.168.2.172";

so PROGMEM are is write-protected so I have to change this line to

char website[16] = "192.168.2.172"; this.

But When I do this changes it doesn't work.

Can you Help me.