You need to figure out what it is trying to write out when it is doing this. It sounds like it is in an infinite loop dumping data to the VTU file.
Most likely your element has overwritten some data that FEAP uses. I would start by editing program/p_paraview.f or using a debugger with a breakpoint in p_paraview( ). Then examine the length of all the loops to see what has gone wrong, so the variables numnp, numel, nen, ndf, istv, the contents of ip( ) if the error is in the stress outputs, and hplmax. Not all of these will be relevant but they will help you debug what has gotten overwritten. Using valgrind will help you locate any memory overwrites.