panuma
Forum Replies Created
-
Hi jgunter,
I also have the last version of Duplicator (v0.4.0) but I still have the blank page on the dashboard.
Did you get a later version?
thanksAll right, thanks a lot, I’ll need to create a package for each then. Many thanks!
Well I chatted two times with my hosting provider (hostgator) and after the second time it worked but I don’t know why or how… sorry for not being able to contribute to the solution.
Great, I’ll look at it and hope I can fix it.
Many thanks!
Forum: Fixing WordPress
In reply to: Widget admin aera does not respond – wp 3.3So I tried the following fix:
1) I installed the hotfix plugin 0.8 version which fixes javascript and barely issues. – no change
2) I downgraded to wp 3.2.1 – no change3) I thought maybe it was a theme issue so I switched to Twenty Eleven theme… – no change
I tried all these but my wp admin area still behave strangely:
widget admin area: I can’t even collapse the “screen option” button
When I try to install or delete a plugin from the plugin admin, it redirects me to the front-end instead of realizing the task.Any idea what’s going wrong and how to fix it?
Forum: Fixing WordPress
In reply to: Widget admin aera does not respond – wp 3.3Ok I see, thanks esmi.
I’ve installed and activated the hotfix 0.8 plugin that should fix those problem, unfortunately, it still behave the same way..
Maybe I should use wp 3.2 for now.Forum: Fixing WordPress
In reply to: Widget admin aera does not respond – wp 3.3thanks but nothing about widgets in there 🙁
Thanks for helping Michael!
Would the cron task not work correctly, I should still be able to click the “backup now” button to launch backup manually, right?
It seems that the plugin does start the backing up process by uploading a file but immediately abort.
Regarding the wp-cron, I have a wp-cron.php file:
<?php /** * WordPress Cron Implementation for hosts, which do not offer CRON or for which * the user has not set up a CRON job pointing to this file. * * The HTTP request to this file will not slow down the visitor who happens to * visit when the cron job is needed to run. * * @package WordPress */ ignore_user_abort(true); if ( !empty($_POST) || defined('DOING_AJAX') || defined('DOING_CRON') ) die(); /** * Tell WordPress we are doing the CRON task. * * @var bool */ define('DOING_CRON', true); if ( !defined('ABSPATH') ) { /** Set up WordPress environment */ require_once('./wp-load.php'); } if ( false === $crons = _get_cron_array() ) die(); $keys = array_keys( $crons ); $local_time = time(); if ( isset($keys[0]) && $keys[0] > $local_time ) die(); foreach ($crons as $timestamp => $cronhooks) { if ( $timestamp > $local_time ) break; foreach ($cronhooks as $hook => $keys) { foreach ($keys as $k => $v) { $schedule = $v['schedule']; if ($schedule != false) { $new_args = array($timestamp, $schedule, $hook, $v['args']); call_user_func_array('wp_reschedule_event', $new_args); } wp_unschedule_event($timestamp, $hook, $v['args']); do_action_ref_array($hook, $v['args']); } } } die();In my config.php, wp-cron is not mentioned anywhere.
Hi Michael,
My PHP memory limit is set to 64M, that should be more than enough right?
There is no file uploaded to dropbox at all.
It seems that the plugin tries to upload the dp directory only:
Uploading File: /home/wind4web/public_html/dp/modules/forum/forum.cssIt sounds like a bug, doesn’t it?
Forum: Fixing WordPress
In reply to: site duplicated on subdomain but can't modify it independentlyAll right I see, I wanted them to work on the same database but didn’t create different table prefixes. So I should duplicate all the tables and change their prefixe, right?
I’m not sure to know how to do this properly..Or is it better to create a different database? (this I can do easily, and then I’ll change the wp-config.
Another issue is that my main site wp-config file is placed above my public_html for security reasons. Can I also put my subdomain’s wp-config file there or they would conflict?
Yes, I unlinked my account and authorized it back. Still behaving the same way 🙁
Forum: Fixing WordPress
In reply to: Can't log in with my password!Thanks esmi, resetting the plugins folder worked for me.
Know I have to find out which of my plugins create troubles! Is there any efficient way to do this?