mtwain
Forum Replies Created
-
Hey Cory,
i have been trying everything. Even my Host has looked at the issue and said that it is caused by duplicator. I do not agree with their judgement but I do not know where the mistake lies. I am hosting many sites and I would like to have Duplicator as my go to when i need to migrate or clone. Is there any chance that you or your team can have a look at it?
Best Regards ??
Hey Cory,
thanks for the quick help. It seemed to work, however I am getting a 502/504 while creating a packeage. The server log shows the following
2016-12-14 23:13:34 Warning 62.112.145.6 mod_fcgid: read data timeout in 300 seconds, referer: https://www.stefanieannique.com/wp-cron.php?doing_wp_cron=1481753313.0646278858184814453125 Apache-Fehler
2016-12-14 23:13:34 Error 62.112.145.6 Premature end of script headers: wp-cron.php, referer: https://www.stefanieannique.com/wp-cron.php?doing_wp_cron=1481753313.0646278858184814453125 Apache-Fehler
Is there anything I can do? I have already maxed out all the php settings. Cheers ??
Hey Cory!
thanks for the quick help. It did work, however I think I am having some problems which do not relate to the mismatch of the packages. When i try to create a new archive i am getting a 502 Gateway or 504 Gateway timeout Error. In the Serverlog it says the following:
2016-12-14 23:13:34 Warning 62.112.145.6 mod_fcgid: read data timeout in 300 seconds, referer: https://www.ABC123.com/wp-cron.php?doing_wp_cron=1481753313.0646278858184814453125 Apache-Fehler
2016-12-14 23:13:34 Error 62.112.145.6 Premature end of script headers: wp-cron.php, referer: https://www.ABC123.com/wp-cron.php?doing_wp_cron=1481753313.0646278858184814453125 Apache-Fehler
I have set up the limits of the server to the highest possible. Cheers ??
Forum: Themes and Templates
In reply to: [Gateway] How can I remove "category" from the titleJust inside the body after a closing }.
??
Forum: Plugins
In reply to: [Contact Form 7] Sending Emails just stops working after a while!TOP!! I really need help because the problem is not resolved yet. Would you mind looking at it?
Forum: Plugins
In reply to: [Contact Form 7] Sending Emails just stops working after a while!Hello, can anybody please help?
The Issue has been resolved!! Thank you anyways ??
Forum: Themes and Templates
In reply to: [Gateway] Resizing Social Media Icons – (Jetpack)Sorry for my late response. I have solved the issue ??
Forum: Themes and Templates
In reply to: [Gateway] How can I remove "category" from the titleTry
add_filter( ‘get_the_archive_title’, ‘change_archive_title’ );
function change_archive_title( $title ) {
if ( is_category() ) $title = str_replace( ‘Category:’, ’’, $title );
if ( is_tag() ) $title = str_replace( ‘Tag:’, ”, $title );
return $title;
}in the function.php
Cheers ??