These OXOO and OVOO programmers are deceiving everyone they say that the system does several functions and actually not much doesn't work they are deceiving all users that's why I want the next hour to see if it reaches the level of OXOO and OVOO and there's more they launched an app for android but developed in flutter if you go to the evato page see how many people are already complaining that the app doesn't workit will be updated today
which line and from which file, in the file indicated which line number you deleted?Edit Servicecheck.blade.php in /resources/views/install/ and change the version as said (I did this but it didn't work for me, so I removed the php check line and it worked good moves you can try
check whether the DB and DB user is connected and have all privilegesGood morning everyone, I'm having problems installing, I've fixed everything, I've reviewed all the settings and when connecting to the database, a message appears
SQLSTATE[HY000] [1045] Access denied for user 'XXXXXXXX'@'localhost' (using password: YES)
Can someone help me?
I've done everything, the database has all the privileges the name of the database and the memo that is in the script I no longer know what to do in the script manual says that if you are giving this error you would have to:check whether the DB and DB user is connected and have all privileges
I have the same problem in version 4.0, were you able to resolve this error?
in my public folder there is no ddtl.txt config.txtI've done everything, the database has all the privileges the name of the database and the memo that is in the script I no longer know what to do in the script manual says that if you are giving this error you would have to:
So it's in the manual
How to resolve the Access denied issue?
Solution:
Make sure some license file available in your hosting
public -> ddtl.txt -> (value: yourdomain.com)
public -> config.txt -> (value: 1)
Note: Don't change the file structure to remove the public from the URL otherwise you get Access Denied
I'm in the same situation have you managed to solve it?app is not working flutter run time error
I'm also having problems, have you managed to solve it?Please, after I login as admin... I open new tag to check the menu I created. It return error 500 each time I click the menu.
Any fix to this pls![]()
Thanks my friend but for the 500 internal server error it didn't workAdd this .htacces in root (nexthour 4)
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteBase /
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)/$ /$1 [L,R=301]
RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
RewriteRule ^(.*)$ public/$1
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ server.php
</IfModule>
Add this .htaccess in public (solve all my problems.
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteBase /
Options +FollowSymLinks
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>