By pumping lemma, we have that for each sufficiently large $z \in L$, there exists $u, v$ and $w$ such as $z=uvw$, whith $|uv| \leq p$, $|v| \ge 1$ and $uv^iw \in L$, for each $i \ge 0.$ ($p$ is the threshold given by PL)
When I want to find a word that doesn't respect the PL, it must have some $a$-s as a prefix, because $k >0$. Given this impediment, I can not prove that any decomposition $u, v, w$ gives me a contradiction, because there is always the possibility that $uv = a^j$ for some $j$ and this keeps $uv^i w$ in $L$.
What can I do? Can I use some closure properties of regular languages?
It works with proving that only the second part of the words is not regular and this will imply that the concatenation is also not regular?
I know that with Myhill-Nerode theorem the problem is solved in no time, but I must use PL.
As you've observed, the language $L=\{ a^i b^j a^j b^k | i,j,k \ge 1 \}$ is pumpable even though it isn't regular. Thus, you cannot show its non-regularity using only the standard pumping lemma for regular languages.The is, however, a generalized version of the pumping lemma (which Wikipedia cites to Savitch (1982), Abstract Machines and Grammars, p. 49) that basically shows that not only is every sufficiently long word in a regular language pumpable, but so is every sufficiently long substring of such a word.
More formally, this generalized pumping lemma states that every regular language $L$ has a generalized pumping length $p \ge 1$ such that, for any word $uwv \in L$ consisting of an arbitrary prefix $u$ and suffix $v$ separated by a midpart $w$ of at least $p$ symbols, the midpart $w$ can be further divided up as $w = xyz$, where $|xy| \le p$ and $y$ is non-empty, so that $uxy^izv \in L$ for every $i \ge 0$.
This generalized pumping lemma is sufficiently strong to prove that your language $L$ is not regular. In particular, if your language $L$ was regular, it would have some generalized pumping length $p \ge 1$. But then we could choose e.g. $u = a$, $w = b^p$ and $v = a^pb$, yielding a word $uwv \in L$ that contains a non-pumpable substring $w = b^p$ of length $p$, and thus a contradiction.