dwheeler
Forum Replies Created
-
When will that be?
So I can’t get this to work till then?
I got
call to undefined function wprss_autoloader() in /public_html/wp-content/plugins/wp-rss-full-text-feeds/wp-rss-full-text.php on line 83
I have
define(‘WP_MEMORY_LIMIT’, ‘1024M’); and I’m still getting the error.It is a large database. Are there limits to the program?
Forum: Plugins
In reply to: [Import External Images] "Import Images Now" and nothing happensI found a solution.
On the line in import-external-images.phpposts = get_posts( array( 'numberposts' => -1 )
I changed it to
posts = get_posts( array( 'numberposts' => 500 )
No Idea what that does, but it works
Forum: Plugins
In reply to: [Import External Images] "Import Images Now" and nothing happensI get the same result.
Any solutions?Forum: Reviews
In reply to: [Portfolio Slideshow] upgrade broekBecause it worked well before and its a great program.
I went back to the old version which works just fine for my purposes.
Forum: Plugins
In reply to: [Portfolio Slideshow] PHP Parse errorSame problem here.
I had to go back to the old version.Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !The images that are imported need to be attached to the post. They are not.
Other plugins, such as galleries work on attached images.SH*t Happens.
Thanks for the quick update. Great plugin!!Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !Couple of suggestions.
The stats always times out on large databases.
I changed it to only go back a week and the timeouts stoped.
function get_the_oldest_post() { $oldyear = date("Y",strtotime("-7 days")); $oldmonth = date("m",strtotime("-7 days")); $oldday = date("d",strtotime("-7 days")); $args = array( 'posts_per_page' => 1, 'date_query' => array( array( 'after' => array( 'year' => $oldyear, 'month' => $oldmonth, 'day' => $oldday, ), 'inclusive' => false, ), ), 'order' => 'ASC', 'orderby' => 'date', 'meta_key' => 'rss_pi_source_url', );
The posts are an hour off due to Daylight savings time. you might want to add an option for that.
I have the same problem
The only page working is the What’s new page,
Everything else get’s “You do not have sufficient permissions to access this page.”.Forum: Fixing WordPress
In reply to: No RSS – XML parsing errorI had the same problem and found it in plugin.
If it used to work before, try disabling the plugins one at a time.