Can't try your game at the moment, but I can tell you a couple things that might help.
1) Make sure your sprite is not larger than your tiles. Only the corners of the sprite are checked for collisions with tiles, so if you can fit a tile between the top and bottom of the sprite, then there's nothing to stop the sprite from going through the solid tile by straddling it.
2) Let me re-iterate, only the corners of the sprite are checked for collisions with solidity. That also means that if you have an uphill tile without a solid tile below it, you have a sharp corner that the player could get caught on by allowing the corners of the sprite to straddle the pointy part.
3) Did you check the box for "Initial touch only" to prevent the tile interaction from happening repeatedly for as long as you're touching the tile?