Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

I get this error on my new server : The link you followed may have expired, or the page may not be a

Asked Modified Viewed 801 times
N
noescape
N
  • Junior Member, joined since
  • Contributed 28 posts on the community forums.
  • Started 6 threads in the forums
  • Started this discussions
asked
Junior Member

Hi I built a new pc server  out of a couple older computers it runs win 10
 installed  a fresh windows  and updated it untill it said there is no more.

installed wampserver3.2.3_x64  and all its pre whateverthey call em
installed PHPFusion 9.03.80

Evrything works great , on the server pc but when i go to my gaming pc i get  a 403 error that shows all the links to the site but does nothing when you clik them.
 I know  it has to be permissions but dont know how to fix it.

this is a pic of what my game computer sees (sorry dont know urls here)

https://cdn.discordapp.com/attachments/610148329711468548/770964611381592064/unknown.png

this is what my pc server sees:
https://cdn.discordapp.com/attachments/610148329711468548/770974085265883136/unknown.png

any help appreceated thanks

 
Edited by Falk on 30-10-2020 03:42,
0 replies

3 posts

R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

Server issue.
https://stackoverflow.com/questions/30669944/css-and-js-files-have-403-forbidden-error-after-activating-mod-rewrite
1 reply
R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

This is not a problem in cms, but on your server.

Here is exactly what you need https://stackoverflow.com/questions/21038682/403-forbidden-error-on-wamp-server
0 replies
N
noescape
N
  • Junior Member, joined since
  • Contributed 28 posts on the community forums.
  • Started 6 threads in the forums
  • Started this discussions
answered
Junior Member

yes my server was indeed the problem as it wouldnt let any one into my  site untill i went to a dev site im familar at and ask for help. My problem was solved by changing one file (so far as i know)

the file was the httpd-vhosts.conf which at default has this in it:
# Virtual Hosts
#
<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>
i was in structed to change it to:

# Virtual Hosts
#
<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
  #ace  Require local
  Require all granted
  </Directory>
</VirtualHost>

that stuff is confuzing as heck  .
i may have edit the add_vhost.php path too 
1 reply

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

R
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
N
N
  • Junior Member, joined since
  • Contributed 28 posts on the community forums.
  • Started 6 threads in the forums
  • Started this discussions
W
W
..
  • Newbie, joined since
  • Contributed 1 post on the community forums.

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet