Symlink issue

HeyDev

Verified User
Joined
Aug 4, 2011
Messages
6
Hello, I created a symlink via SSH for my admin account but it does not appear to be working.


[root@servidor images]# ln -s wp-content/themes/WebHost/images images
[root@servidor images]# cd images
[root@servidor images]# ll
total 0
lrwxrwxrwx 1 root root 32 Feb 5 14:56 images -> wp-content/themes/WebHost/images
[root@servidor images]#

The images folder is inside the public_html directory.
When I go to mydoomain.com/images/ I get a 403 error.
I chmodded the folder to 755 and 777 but no luck.
Added code to the .htaccess but no luck either.
I'm on CentOs
 
Actually:

[root@servidor images]# ln -s wp-content/themes/WebHost/images images
[root@servidor images]# cd images

seems that you made a no-sense symlink cause i suppose that wp-content/themes/WebHost/images is not in images folder that seems you are in when you do this command... you should be in the public_html root (or images is another wp installation) for use the command you used.

Regards
 
Back
Top