Hi there,
I've set up two pages on a site with similar sections but one is stored on an include and another is on the page itself. The include is publishing ok but the page is not.
It's coming up with a message saying:
'Oops! We've encountered a problem.
There was a problem connecting to your FTP server (show log)'
Here's the end of the log:
CDUP
250 CWD command successful. "/htdocs/" is current directory.
.
CWD includes/includes
501 CWD failed. No permission
The PHP include which is updating fine - here's the html for it:
<div id="latestcms" class="latestcms cms-repeat">
<span id="latesttitle" class="subtitle cms-editable">Title text</span>
<div id="latesttext" class="cms-editable">
<p class="redtitle">Subtitle text</p>
<p class="para">Paragraph text</p>
</div>
<span class="para"><a href="news.php">read more »</a></span>
</div>
The page which is not publishing uses this code:
<div id="newstest" class="cms-repeat">
<p id="testpara" class="cms-editable subtitle">Title</p>
<div id="testdiv" class="cms-editable">
<p class="redtitle">Subtitle</p>
<p>Main text</p>
</div>
</div>
Any suggestions as to why this is not publishing?
Thanks in advance.