wordpress upload theme The link you followed has expired. (already set_time limit 400 )
I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.
Could you please tell what else I should after setting these parameters at wp-config.php ?
..
*/
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);
My zip upload size is 142 MB
php wordpress ftp
add a comment |
I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.
Could you please tell what else I should after setting these parameters at wp-config.php ?
..
*/
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);
My zip upload size is 142 MB
php wordpress ftp
1
You could just transfer it through your FTP client.
– Stender
Jan 2 at 9:31
add a comment |
I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.
Could you please tell what else I should after setting these parameters at wp-config.php ?
..
*/
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);
My zip upload size is 142 MB
php wordpress ftp
I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.
Could you please tell what else I should after setting these parameters at wp-config.php ?
..
*/
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);
My zip upload size is 142 MB
php wordpress ftp
php wordpress ftp
asked Jan 2 at 6:42


Raju yourPepeRaju yourPepe
5911047105
5911047105
1
You could just transfer it through your FTP client.
– Stender
Jan 2 at 9:31
add a comment |
1
You could just transfer it through your FTP client.
– Stender
Jan 2 at 9:31
1
1
You could just transfer it through your FTP client.
– Stender
Jan 2 at 9:31
You could just transfer it through your FTP client.
– Stender
Jan 2 at 9:31
add a comment |
2 Answers
2
active
oldest
votes
You need to increase upload_max_filesize
. You can do this using any of the following methods:
1. htaccess file:
php_value upload_max_filesize 150M
php_value post_max_size 150M
2. php.ini file:
upload_max_filesize = 150M
post_max_size = 150M
3. Theme's function.php file or wp-config.php:
@ini_set( 'upload_max_size' , '150M' );
@ini_set( 'post_max_size', '150M');
add a comment |
You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.
I can suggest another option to use file manager to upload the theme into wp-content/themes folder.
If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.
Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time
– Sarath
Jan 2 at 11:48
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54002272%2fwordpress-upload-theme-the-link-you-followed-has-expired-already-set-time-limi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to increase upload_max_filesize
. You can do this using any of the following methods:
1. htaccess file:
php_value upload_max_filesize 150M
php_value post_max_size 150M
2. php.ini file:
upload_max_filesize = 150M
post_max_size = 150M
3. Theme's function.php file or wp-config.php:
@ini_set( 'upload_max_size' , '150M' );
@ini_set( 'post_max_size', '150M');
add a comment |
You need to increase upload_max_filesize
. You can do this using any of the following methods:
1. htaccess file:
php_value upload_max_filesize 150M
php_value post_max_size 150M
2. php.ini file:
upload_max_filesize = 150M
post_max_size = 150M
3. Theme's function.php file or wp-config.php:
@ini_set( 'upload_max_size' , '150M' );
@ini_set( 'post_max_size', '150M');
add a comment |
You need to increase upload_max_filesize
. You can do this using any of the following methods:
1. htaccess file:
php_value upload_max_filesize 150M
php_value post_max_size 150M
2. php.ini file:
upload_max_filesize = 150M
post_max_size = 150M
3. Theme's function.php file or wp-config.php:
@ini_set( 'upload_max_size' , '150M' );
@ini_set( 'post_max_size', '150M');
You need to increase upload_max_filesize
. You can do this using any of the following methods:
1. htaccess file:
php_value upload_max_filesize 150M
php_value post_max_size 150M
2. php.ini file:
upload_max_filesize = 150M
post_max_size = 150M
3. Theme's function.php file or wp-config.php:
@ini_set( 'upload_max_size' , '150M' );
@ini_set( 'post_max_size', '150M');
edited Jan 2 at 11:26
answered Jan 2 at 11:14
Muhammad BilalMuhammad Bilal
1,80311222
1,80311222
add a comment |
add a comment |
You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.
I can suggest another option to use file manager to upload the theme into wp-content/themes folder.
If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.
Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time
– Sarath
Jan 2 at 11:48
add a comment |
You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.
I can suggest another option to use file manager to upload the theme into wp-content/themes folder.
If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.
Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time
– Sarath
Jan 2 at 11:48
add a comment |
You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.
I can suggest another option to use file manager to upload the theme into wp-content/themes folder.
If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.
You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.
I can suggest another option to use file manager to upload the theme into wp-content/themes folder.
If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.
edited Jan 2 at 11:46
answered Jan 2 at 11:37


SarathSarath
117
117
Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time
– Sarath
Jan 2 at 11:48
add a comment |
Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time
– Sarath
Jan 2 at 11:48
Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time
– Sarath
Jan 2 at 11:48
Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time
– Sarath
Jan 2 at 11:48
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54002272%2fwordpress-upload-theme-the-link-you-followed-has-expired-already-set-time-limi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
You could just transfer it through your FTP client.
– Stender
Jan 2 at 9:31