Your example workflow is not correct.
By "remote server", you mean a central server for your repositories where everybody can push to / pull from, correct?
If yes, then this part is not necessary:
then go on remote server and do hg init, hg clone path_to_my_ repo and hg update
You're supposed to set up the central repository on the server ONCE at the beginning (which probably includes hg init to create it, but not the rest).
--> then everybody can just push to and pull from it, and that's it.
You don't have to do anything on the server after that (like editing files via FTP, like you tried) and certainly not hg update after every push!
(hg update creates a working directory in the repository on the server, which you don't need if you only want to push and pull from that repository)
Setting up the server also includes permissions (not necessarily file permissions on the server - more like, who has push/pull permissions on a certain repository).
For an overview about the different possible ways how to set up a Mercurial server, see Publishing Repositories in the Mercurial wiki.
(I can't help you directly with this - I use Mercurial daily, but I don't know how to set up a Mercurial server, let alone on Unix)
EDIT:
Honestly, I'm not sure if I understand your workflow.
Why the "ssh the server, clone the repo created" stuff? I don't understand why you want to clone your central repository again on the same server.
The usual basic workflow goes like this:
You work locally, write code and commit it to your local repository.
Somewhere, you have a central repository for your project (be it on Github/Bitbucket, or on your own server - that's what I meant when I said "central server"). After committing, you push to that and now your changes are in the central repository.
Your co-workers do the same, so you can pull from the central repository again to get the changes made by your co-workers as well (and they can pull as well to get your changes).
Then you said this:
We will pull (clone first time) the files on a subdomain (dev) first, every day before leaving, and when the project is finished, we will do the same thing on the server by cloning the repo on the live server
This is just to deploy your project, correct? I think I misunderstood that when I read your question for the first time.
So the cloning to the "dev" subdomain is not for the sake of having one more repository to push/pull, but just for deploying a test environment. Right?
If yes, that's okay. But in order to do this, you don't have to FTP/SSH on the server where the central repository is.
You can just create a new repository once on the dev server (hg init), and then regularly hg pull from the central repository and hg update to update the working copy on the dev server. This is all on the dev server, no need to do any of this on the server where the central repository is.