Back to Forum Home Page

You must be a registered user (on-premise or cloud) to add any post. To get access, enter your registered Emaill address below and we will email you the access token. Enter your token along with your email address to add the post. You can use your last received token if you have already generated one.

Q. How to get access to FlinkISO Forum?

Ans:In order to able to post, you must be a registered user either with FlinkISO either On-premise or Cloud. You can login to the forum via using your email address, which you or your administrator used duing the registration on the websile. Once you have the email address, use the same email addres and generate a token. We will send you the token on the same email address. Use that token along with the email address to login. You can read posts without login.

Home > Application Installation

Error


Hello, I have the following error, when I want to access the site, configured for ../app/webroot in apache2, it redirects me to "/users/login" with the message "The requested URL was not found on this server."  , I have everything configured, mysql ok, database generated ,rewrite ok, I do not have any records in tmp/log, apache listens on port 82

thanks for the help

on 10/10/24 | Open | By: Yoel Unanue

Hi Yoel Unanue,

Please check if you have .htaccess files in application root folder, app folder and app/webroot folder. Also, try debug level as 2 in app/Config/Core.php file. Make sure app/tmp folder has 777 permission. 

-FlinkISO Help Team

 

on 10/10/24 | By: FlinkISO Team

Thanks, yes, I have the permissions at 0777 on /app/tmp/logs, all the folders contain .htaccess, the apache2 virtual server points to /app/webroot, everything seems to be correct.

Is debian 12.7 

file var/web/flinkiso-ver-2x-on-premise/.htaccess

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteRule    ^$ app/webroot/    [L]
  RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>

 

file  /flinkiso-ver-2x-on-premise/app/.htaccess :

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$    webroot/    [L]
   RewriteRule    (.*) webroot/$1    [L]
</IfModule>

 

file /flinkiso-ver-2x-on-premise/app/webroot/.htaccess :

Options -Indexes
<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteRule ^ index.php [L]
</IfModule>
<IfModule mod_deflate.c>
 # Compress HTML, CSS, JavaScript, Text, XML and fonts
 AddOutputFilterByType DEFLATE application/javascript
 AddOutputFilterByType DEFLATE application/rss+xml
 AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
 AddOutputFilterByType DEFLATE application/x-font
 AddOutputFilterByType DEFLATE application/x-font-opentype
 AddOutputFilterByType DEFLATE application/x-font-otf
 AddOutputFilterByType DEFLATE application/x-font-truetype
 AddOutputFilterByType DEFLATE application/x-font-ttf
 AddOutputFilterByType DEFLATE application/x-javascript
 AddOutputFilterByType DEFLATE application/xhtml+xml
 AddOutputFilterByType DEFLATE application/xml
 AddOutputFilterByType DEFLATE font/opentype
 AddOutputFilterByType DEFLATE font/otf
 AddOutputFilterByType DEFLATE font/ttf
 AddOutputFilterByType DEFLATE image/svg+xml
 AddOutputFilterByType DEFLATE image/x-icon
 AddOutputFilterByType DEFLATE text/css
 AddOutputFilterByType DEFLATE text/html
 AddOutputFilterByType DEFLATE text/javascript
 AddOutputFilterByType DEFLATE text/plain
 AddOutputFilterByType DEFLATE text/xml
 AddOutputFilterByType DEFLATE application/x-font-woff
 AddOutputFilterByType DEFLATE application/x-font-woff2
 
 # Remove browser bugs (only needed for really old browsers)
 BrowserMatch ^Mozilla/4 gzip-only-text/html
 BrowserMatch ^Mozilla/4\.0[678] no-gzip
 BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
 Header append Vary User-Agent
</IfModule>

<IfModule mod_expires.c>
   # Turn on the module.
   ExpiresActive on
   # Set the default expiry times.
   ExpiresDefault "access plus 2 days"
   ExpiresByType image/jpg "access plus 1 month"
   ExpiresByType image/gif "access plus 1 month"
   ExpiresByType image/jpeg "access plus 1 month"
   ExpiresByType image/png "access plus 1 month"
   ExpiresByType text/css "access plus 1 month"
   ExpiresByType text/javascript "access plus 1 month"
   ExpiresByType application/javascript "access plus 1 month"    
   ExpiresByType image/ico "access plus 1 month"
   ExpiresByType image/x-icon "access plus 1 month"
   ExpiresByType text/html "access plus 2 seconds"
   ExpiresByType font/woff2 "access plus 1 month"
   ExpiresByType font/woff "access plus 1 month"
   ExpiresByType font/ttf "access plus 1 month"
</IfModule>

Header set Access-Control-Allow-Origin *
 

on 14/10/24 | By: Yoel Unanue

Hi,

You must point virtual server to application folder, not webroot. 

-FlinkISO Help Team

 

on 14/10/24 | By: FlinkISO Team

Thanks, I already tried with the application folder, I changed it again but I still have the problem, I am using port 82 since 80 is in use with olnyoffice, could it have to do with the problem? Maybe the debian distribution ? I had to install some fonts by hand, I don't see why it doesn't write to the .log file

on 14/10/24 | By: Yoel Unanue

Hi,

Try with these directory settings

 

<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>

 

<Directory /var/www/"<Your flinkiso root directory>"/>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>

-Regards
FlinkISO Help Team

on 14/10/24 | By: FlinkISO Team

Thanks, it worked correctly, I needed to add some PHP extensions, a2enmod headers and curl

on 15/10/24 | By: Yoel Unanue