Top Smart Slider issues and how to fix them
-
Smart Slider 3 missing styles on admin
Smart Slider 3 is using cache folder to make everything as smooth as possible. When you navigate to Smart Slider on the WordPress admin, you might see just text line by line without styling. This usually means that your cache folder is not writable.
The following folder must be writable:- /wp-content
- /wp-content/cache
Solution #1 – change chmod of the path
Connect to your FTP server with your favorite client and chmod 777 the wp-content and wp-content/cache/ folders. For security purpose you can use 755, if that do not work, that means that you have a folder owner issue, which described in Solution #2.
Solution #2 – change owner of the path
If the Solution #1 do not work for you, that means the owner of the specified path is not the same as the one who is running PHP on your server. This can rarely happen if you upload Smart Slider via FTP and the FTP server is running with different owner that PHP. To solve this, I suggest you to contact with your hosting support or server administrator, but if you are familiar with SHH and Linux command you can use the following:
First you have to get the owner which works with your index.php:
stat -c %U /[path]/[to]/[your]/[site]/index.php
Then you have to set that owner to the path (in my case the owner is nextendweb, so replace that with yours!):
chown -R nextendweb:nextendweb /[path]/[to]/[your]/[site]/wp-content/
Solution #3 – Windows servers
Right click on the folder, Properties and uncheck the Read-only property to make it writable.
If you need help to solve this issue, feel free to contact with our helpful team!
- The topic ‘Top Smart Slider issues and how to fix them’ is closed to new replies.