purves
Forum Replies Created
-
Forum: Plugins
In reply to: page update –> auto postStill looking for a way to do this. If I could get the page to have an RSS feed, I could use the feed2post plugin to generate a post, but I don’t see a way to do this either.
Forum: Fixing WordPress
In reply to: file upload failingI found that the problem was caused by not enough disk space. Clearing up some space resolved the problem.
Forum: Fixing WordPress
In reply to: footer rss link on debian not workingOK. Found some good explanation at https://www.ads-software.com/support/topic/52462
Forum: Fixing WordPress
In reply to: footer rss link on debian not workingI edited /usr/share/wordpress/wp-content/themes/default/footer.php and changed:
<a href="feed:<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a> and <a href="feed:<?php bloginfo('comments_rss2_url'); ?>">Comments (
RSS)</a>by removing feed: to
<a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a> and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (
RSS)</a>Everything seems to work now. Why is “feed:” included in the first place?
Forum: Fixing WordPress
In reply to: footer rss link on debian not workingOK. I get the same error with this page…
If I click “RSS feed for this thread” I get the error message:
The address type is unknown or unsupported
I’m using Opera 8.
Forum: Plugins
In reply to: Problem with IImage not creating thumbsI found the answer on the plugin homepage:
https://fredfred.net/skriker/index.php/iimage-browser
you need the gd library for php:
I installed the following packages on Debian:
php4-gd
libphp-phplotthen had to edit php.ini (/etc/php4/apache2/php.ini for me)
and uncomment the line:
extension=gd.so
then restart apache
now I can make thumbnails…this was driving me crazy all day!!! It would have been nice to include this requirement in the installation instuctions for iimage-browser.
Forum: Plugins
In reply to: Problem with IImage not creating thumbsI found the answer on the plugin homepage:
https://fredfred.net/skriker/index.php/iimage-browser
you need the gd library for php:
I installed the following packages on Debian:
php4-gd
libphp-phplotthen had to edit php.ini (/etc/php4/apache2/php.ini for me)
and uncomment the line:
extension=gd.so
then restart apache
now I can make thumbnails…this was driving me crazy all day!!! It would have been nice to include this requirement in the installation instuctions for iimage-browser.