Codoforum related discussions
Wampserver and Codoforum

When attempting to set up codoforum on my local wamp server, I ran into an issue right away. I extracted and uploaded the codoforum folder to the web(www) folder in wamp. I then attempted to access this folder online. The issue below was what was displayed when I attempted this:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at admin@example.com to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Apache/2.4.9 (Win32) PHP/5.5.12 Server at localhost Port 80

As I am new to Codoforum, I have no clue what the issue is. I have the latest version of wamp, which means I also have the latest PHP, Apache, and MySQL versions I think. I'd love some assistance on this.

When attempting to set up codoforum on my local wamp server, I ran into an issue right away. I extracted and uploaded the codoforum folder to the web(www) folder in wamp. I then attempted to access this folder online. The issue below was what was displayed when I attempted this: ```` Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at admin@example.com to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. Apache/2.4.9 (Win32) PHP/5.5.12 Server at localhost Port 80 ```` As I am new to Codoforum, I have no clue what the issue is. I have the latest version of wamp, which means I also have the latest PHP, Apache, and MySQL versions I think. I'd love some assistance on this.

Try giving 0755 permissions to all folders and 0644 permissions to all files.

Try giving 0755 permissions to all folders and 0644 permissions to all files.

I found out where to see the error and this is what it says:

[Thu Oct 23 16:18:14.165970 2014] [core:alert] [pid 7796:tid 848] [client 127.0.0.1:49694] C:/wamp/www/codoforum/.htaccess: Invalid command 'AddOutputFilterByType', perhaps misspelled or defined by a module not included in the server configuration
I found out where to see the error and this is what it says: ```` [Thu Oct 23 16:18:14.165970 2014] [core:alert] [pid 7796:tid 848] [client 127.0.0.1:49694] C:/wamp/www/codoforum/.htaccess: Invalid command 'AddOutputFilterByType', perhaps misspelled or defined by a module not included in the server configuration ````

Replace all the contents of your .htaccess file by following and try again.

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  Options +Indexes
  RewriteEngine on

  # if your app is in a subfolder
  #RewriteBase /my_app/ 

  # test string is a valid files
  RewriteCond %{SCRIPT_FILENAME} !-f
  # test string is a valid directory
  RewriteCond %{SCRIPT_FILENAME} !-d

  RewriteRule ^(.*)$   index.php?uri=/$1    [NC,L,QSA]
  # with QSA flag (query string append),
  # forces the rewrite engine to append a query string part of the
  # substitution string to the existing string, instead of replacing it.
</IfModule>

AddType text/css .less
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
Replace all the contents of your .htaccess file by following and try again. ``` &amp;lt;IfModule mod_rewrite.c&amp;gt; Options +FollowSymlinks Options +Indexes RewriteEngine on # if your app is in a subfolder #RewriteBase /my_app/ # test string is a valid files RewriteCond %{SCRIPT_FILENAME} !-f # test string is a valid directory RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ index.php?uri=/$1 [NC,L,QSA] # with QSA flag (query string append), # forces the rewrite engine to append a query string part of the # substitution string to the existing string, instead of replacing it. &amp;lt;/IfModule&amp;gt; AddType text/css .less AddType image/svg+xml svg svgz AddEncoding gzip svgz ```
1.27k
3
2
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft