Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Trying to install wordpress on the new platform.
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Trying to install wordpress on the new platform.
Trying to install wordpress on the new platform.
26-06-2010 12:08 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Documention is certainly lacking / misleading.
Some documents imply that ssh access is still available.
(errm, shouldn't that mention that ssh is no longer available?)
I am trying to unpack the wordpress zip file using cron, and this guide:
http://community.plus.net/forum/index.php/topic,69399.msg553635.html#msg553635
It keeps referring me to Plesk control panel. (which I think is not for free hosting...), and I can't get the manual commands to work either.
I have a mycron file in the root of my webspace, the faqs are rather vague what to put in there.
Do I do exactly as it says?
whereis tar > httpdocs/tar-loc-log 2>&1
or in the cron format:
10 * * * * root whereis tar > httpdocs/tar-loc-log 2>&1
(to execute on 10 minutes past the hour)
I have tried both, and neither seems to do anything. I am assming that mycron is the file I should be editing? None of these vague guides actually say. That file might have been put there by some package I have previously installed...
If anyone can give me CONCISE, CURRENT and RELEVANT information for the new CGI server on the free hosting platform, I would be grateful.
Thanks.
Some documents imply that ssh access is still available.
Quote 2) What are the differences between the new CGI platform, and the old platform?
The new platform runs PHP5 as opposed to PHP4. The new platform has been built with security in mind and makes use of one of Apache's features known as 'SuEXEC'. We have tried to keep most other things the same to avoid any unnecessary disruption to your service.
(errm, shouldn't that mention that ssh is no longer available?)
I am trying to unpack the wordpress zip file using cron, and this guide:
http://community.plus.net/forum/index.php/topic,69399.msg553635.html#msg553635
It keeps referring me to Plesk control panel. (which I think is not for free hosting...), and I can't get the manual commands to work either.
I have a mycron file in the root of my webspace, the faqs are rather vague what to put in there.
Do I do exactly as it says?
whereis tar > httpdocs/tar-loc-log 2>&1
or in the cron format:
10 * * * * root whereis tar > httpdocs/tar-loc-log 2>&1
(to execute on 10 minutes past the hour)
I have tried both, and neither seems to do anything. I am assming that mycron is the file I should be editing? None of these vague guides actually say. That file might have been put there by some package I have previously installed...
If anyone can give me CONCISE, CURRENT and RELEVANT information for the new CGI server on the free hosting platform, I would be grateful.
Thanks.
Message 1 of 4
(880 Views)
3 REPLIES 3
Re: Trying to install wordpress on the new platform.
26-06-2010 1:12 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
There's a handy cron interface on the PAYH platform, but not on ccgi. Try using a script like this (changing the file name).
Gabe
Gabe
Message 2 of 4
(341 Views)
Re: Trying to install wordpress on the new platform.
26-06-2010 2:40 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Many thanks, that was the missing link in all the disparate posts I have read on the subject... Things working great now, in addition, I also found your recursive permission fixer of great value...
Quote #!/bin/bash
echo "Content-type: text/html"
echo
find . -type d ! -perm 1710 -print0 | xargs -0 chmod 710
find . -type f -regextype posix-extended -regex '.*\.(php|pl|cgi)$' -print0 | xargs -0 chmod 700
echo "<table border='1'><tr><th>Type</th><th>Name</th><th>User, Group</th><th>Permissions</th></tr>"
find . -type d -printf '<tr><td>Folder</td><td>%p</td><td>%u, %g</td><td>%M</td></tr>'
find . -type f -printf '<tr><td>File</td><td>%p</td><td>%u, %g</td><td>%M</td></tr>'
echo "</table>"
Message 3 of 4
(341 Views)
Re: Trying to install wordpress on the new platform.
26-06-2010 4:48 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I found it easier to unpack Wordpress on my home computer and then upload by FTP. Short guide here
http://community.plus.net/forum/index.php/topic,85127.0.html
Cheers
John
http://community.plus.net/forum/index.php/topic,85127.0.html
Cheers
John
Message 4 of 4
(341 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Trying to install wordpress on the new platform.