File Manager tree directory question

It might because your account is new. I don’t know if brand new members can edit their post.

You may have to wait a certain amount of time or reach a certain status before you can edit.

I am just a normal member. Not an admin or moderator.

Regarding the pencil icon, non-admins and non-moderators can only update/edit their posts for a set amount of time after posting.

7 Likes

Thanks. Good to know.

The URL mywebsiteexample.com/Background/background.html will actually result in the browser interpreting this as a relative URL. So the actual URL queried would be http://mywebsiteexample.com/mywebsiteexample.com/Background/background.html, which is probably not correct.

The reason is that a link without a protocol definition is interpreted as a file path relative to the current directory. Even if that path “coincidentally” has a subdirectory with the a name that matches the domain.

Instead, you could either write the URL as:

  • http://mywebsiteexample.com/Background/background.html
  • //mywebsiteexample.com/Background/background.html
  • /Background/background.html
7 Likes

Thank you

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.