Try php 5.6, I believe in the release thread it says not to use any version above thatTrying to setup my hotel with PHP 7. & MySQL & Arcturus EMU & Chocolatey CMS.
But when i try to go onto my website it shows this:
URL:You must be registered for see links
Any idea? Thanks
RecommendationsTry php 5.6, I believe in the release thread it says not to use any version above that
Using IIS with PHP7 and mysql 5.1 should that work?Recommendations
* For Windows we recommend latest XAMPP version with php7.0 or higher.
ONTOPIC: Are you using MYSQL 5.5? Because, it seems like it doesn't support 5.6
Try using XAMPP instead of IIS, but if you still want to use IIS you need to convert the .htaccess to web.config.Using IIS with PHP7 and mysql 5.1 should that work?
(Notice: IIS & PHP7 worked before.) Also ot approved by dev of Chocolatey
Ask the dev for the web.config, if you don't know how.yeah i'll stay with IIS. Oh shoot, how do i do that again
There already is a web.config i saw just nowAsk the dev for the web.config, if you don't know how.
Try deleting your web.config and reimporting .htaccess into url rewriteThere already is a web.config i saw just now
This is web.config:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^habbo-web/(.*)$" ignoreCase="false" />
<action type="Rewrite" url="public/habbo-web/{R:1}" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^.*$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
<defaultDocument>
<files>
<clear />
<add value="index.php" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
This is htacess
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options -Indexes
Options -MultiViews
RewriteEngine On
# Security Modules
RewriteRule ^(app/|resources/|bootstrap/|config/|database/|routes/|storage/|docs/|vendor/) - [F,L,NC]
# Habbo Web Assets
RewriteRule ^habbo-web/(.*)$ public/habbo-web/$1 [L]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [L]
</IfModule>
<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary
</IfModule>
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/jpg "access 2 month"
ExpiresByType image/gif "access 2 month"
ExpiresByType image/jpeg "access 2 month"
ExpiresByType image/png "access 2 month"
ExpiresByType text/css "access 2 month"
ExpiresByType application/x-javascript "access plus 2 month"
ExpiresByType text/javascript "access plus 2 month"
ExpiresByType application/javascript "access plus 2 month"
ExpiresByType image/x-icon "access plus 12 month"
ExpiresByType image/icon "access plus 12 month"
ExpiresByType application/x-ico "access plus 12 month"
ExpiresByType application/ico "access plus 12 month"
</IfModule>
Exactly how do i "You will need installTry deleting your web.config and reimporting .htaccess into url rewrite