debdbuck
Forum Replies Created
-
Forum: Plugins
In reply to: [Menu Item Visibility Control] Visibility on Role UserThank you for posting Maud Kon! That is exactly what I needed.
Forum: Plugins
In reply to: [WordPress Importer] Nothing HappensI dug deeper and found the solution. The problem is my server, it seems.
Check out this thread: https://ww.wp.xz.cn/support/topic/fatal-error-class-domdocument-not-found?replies=11
In particular, taotiago’s replied solution worked like a charm. Here it is:
Replace in file parsers.php in plugin wordpress-importer at Class WXR_Parser_SimpleXML
$dom = new DOMDocument; $old_value = null; if ( function_exists( 'libxml_disable_entity_loader' ) ) { $old_value = libxml_disable_entity_loader( true ); } $success = $dom->loadXML( file_get_contents( $file ) ); if ( ! is_null( $old_value ) ) { libxml_disable_entity_loader( $old_value ); } if ( ! $success || isset( $dom->doctype ) ) { return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this WXR file', 'wordpress-importer' ), libxml_get_errors() ); } $xml = simplexml_import_dom( $dom ); unset( $dom );For:
$xml = simplexml_load_file($file);Forum: Plugins
In reply to: [WordPress Importer] Upload Doesn't HappenI never heard back on this, found a different solution, and forgot about it until recently. I forgot about this post, and accidentally started a new thread in which I shared the error code.
I’ll mark this as resolved/closed to leave the newer, more complete post open.
Forum: Plugins
In reply to: [WordPress Importer] Nothing HappensWhoops! I didn’t remember posting about this 8 mos ago. Sorry.
https://ww.wp.xz.cn/support/topic/upload-doesnt-happenDidn’t have the error code on that post tho…
Forum: Plugins
In reply to: [Combrite] Selecting import as post, does not do anythingI’m having the exact same issue. Since there are no replies yet, have you found a solution elsewhere, perhaps?
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] PHP Warnings?I had the same problem! Thank you so much for the solution Otto!
GoDaddy went through the “it’s not our fault, it’s the application’s fault” rounds… I insisted that we check things out quoting this thread!
After a hold time to “check with their advanced server team,” the rep informed me that “the connection to the tmp folder was broken” during the migration from Windows to Linux.
I kept him on the line until I put my app id and key in. It works!
Thanks guys!!Forum: Plugins
In reply to: [Facebook] social publisher not showingI don’t have the app namespace field either.
I am using WordPress 3.4.2 and Facebook plugin 1.1.8 as well.I haven’t been able to set up Social Publisher at all.
- There’s a check by #1 “A Facebook application identifier associated with…”
- There’s a link for #2 that I don’t really want.
- Finally, there’s #3 “Authenticate with Facebook to allow your Facebook application to post to your timeline or page on your behalf when a post is published.”
The very next few lines/links don’t help.
The first link “Associate your WordPress account…” gives me an error:
“API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration.”Where do I address this redirect_uri problem?
The second link “Connect your Facebook account to get started.” does nothing but change the URL to have “#facebook-login” appended at the end.
Is this supposed to do something?
Thank you!