kuma275m
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] Languages are not setHello,
I’m facing the same issue like yours. When I save post, only English content can be saved and text in my default Language disappeared. do you solve this issue?
Forum: Plugins
In reply to: [Memcached Object Cache] Not loaded Media Libraryto igormogn,
Yes. And I noticed there is a unused function in object-cache.php:function failure_callback($host, $port) {
//error_log(“Connection failure for $host:$port\n”, 3, ‘/tmp/memcached.txt’);
}Maybe you can try to put a error log and check if there is any record.
Forum: Plugins
In reply to: [Memcached Object Cache] Not loaded Media LibraryIt works well in my cases. My evnironment is:
WP 4.3.1
Memcached Object Cache 2.0.2
Memcache 2.2.7
PHP 5.6.9and another server:
WP 4.3.1
Memcached Object Cache 2.0.2
Memcache 2.2.7
PHP 5.4.45Do you test your media library without this plugin?
Forum: Plugins
In reply to: [DW Question & Answer] Disable TinyMCEsearch “function dwqa_submit_question_form()” in your plugin files
then find out following codes:
dwqa_init_tinymce_editor( array( ‘id’ => ‘dwqa-question-content-editor’, ‘textarea_name’ => ‘question-content’ ) );you can replace them with a simple textarea tag.
before making changes, don’t forget to make backup for your files. ??
Forum: Developing with WordPress
In reply to: wp_query only display 5 posts when using arg "post__in"@leo Caseiro
Thank you so much Leo.
I checked the setting on server as your guide and it’s true the display posts number option was set to “5”.
Also thanks for your relative articles. I’ll come to read them to avoid “stupid” issue:)
Forum: Developing with WordPress
In reply to: wp_query only display 5 posts when using arg "post__in"@domy thank you very much. I added your tips and my script works well too.
But I’m wondering that the same script(I mean without “posts_per_page” parameter) works correctly in my local environment, all posts will be loaded. But when I upload it to my server, there are only 5 be loaded….
Forum: Plugins
In reply to: [Simple Timeline] What Kind of Timeline?Hey itsjustathought,
Sorry it’s not for the posts written. the content of timeline should be created by yourself via “adding new timeline function”. I added some screenshoots in the package but they are not displayed in plugin page(screenshoots section)….
Forum: Reviews
In reply to: [Ajax BootModal Login] about redirect link after loginHey,
Whcih version are you using now? I’m using version 1.0.3 and don’t update since I made too much modification to this plugin….
But basically, I added a hidden input area in login-form.php :
<input type=”hidden” name=”redirect_to” id=”redirect_to” value=”<?php echo $_SERVER[‘REQUEST_URI’]; ?>” /> to store current page url.then in alimir-bootmodal-login.php:
under alimir_bootModal_ajax_login function, modify original code around line 122 to this:
else{
echo json_encode(array(‘loggedin’=>true, ‘redirect_to’=>”.$redirect_to.”, ‘message’=>'<p class=”alert alert-success” data-alert=”alert”>some codes….</p>’));
}This is what I do…I’m not sure if it will help you but hope to provide some idea to solve your issue….
BR
Forum: Plugins
In reply to: [mqTranslate] Plugin disabled after updating 3.8.2Hey chsxf
I’ve updated the plugin and everything works well now.
Thank you very much ??BR