最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

WordPress not syncing with FTP

matteradmin8PV0评论

This is the first time this happens to me.

I uploaded a WordPress theme via FTP to wp-content/themes and it's not showing on my WordPress backend.

I then deleted plugins from the backend and 1 theme then refreshed my FTP and they are still there.

It seems Wordpress isn't syncing with what there is in the FTP.

The WordPress folder has the 755 permission and index.php has 644.

Any idea what the issue might be?

This is the first time this happens to me.

I uploaded a WordPress theme via FTP to wp-content/themes and it's not showing on my WordPress backend.

I then deleted plugins from the backend and 1 theme then refreshed my FTP and they are still there.

It seems Wordpress isn't syncing with what there is in the FTP.

The WordPress folder has the 755 permission and index.php has 644.

Any idea what the issue might be?

Share Improve this question edited Feb 8, 2019 at 10:53 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Feb 8, 2019 at 10:52 RobzRobz 1 1
  • Honestly, it just sounds like your FTP is connected to the wrong site. WordPress is the files that you see in FTP. It doesn't need to "sync" with them. – Jacob Peattie Commented Feb 8, 2019 at 10:56
Add a comment  | 

1 Answer 1

Reset to default 0

I think that there is an issue with the filesize upload limit. The size should be below 30M. Follow these steps:

  1. Find your php.ini file.
  2. Use the following line:

    post_max_size = 8M 
    upload_max_filesize = 2M
    

If you can't get to your php.ini file, you can change the filesize upload limit with this plugin.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far