June 30, 20241 yr установил 4.11 вся работает кроме VİP i Turbo объявления не показыается на главной странице ктото сможет помочь installed 4.11 everything works except VIP and Turbo ads are not shown on the main page can anyone help Edited June 30, 20241 yr by Aytac Bayramzade
July 4, 20241 yr Hi, Users cannot create an account because sending the code does not work, nothing arrives in the email box
December 3, 20241 yr FilesMatch "config\.php"> Require all denied </FilesMatch> <FilesMatch ".(htaccess|temp|sql)$"> Require all denied </FilesMatch>RewriteCond %{REQUEST_URI} !/login.php1. Outdated Order directive syntaxThe Order directive is deprecated, and Apache 2.4 no longer supports it. If you're using Apache 2.4 or a newer version, you should use the Require directive instead of Order.Your <FilesMatch> configuration should be updated like this:apacheKopēt kodu<FilesMatch "config\.php"> Require all denied </FilesMatch> <FilesMatch ".(htaccess|temp|sql)$"> Require all denied </FilesMatch>2. PHP settings (mod_php5)If your server is running PHP 7 or newer, mod_php5.c is no longer supported. You should use the appropriate mod_php module based on your PHP version. If your server uses PHP-FPM, these directives won't work. You need to check whether your server is configured with the correct PHP version and settings.If you're using a newer PHP version, this part of the configuration might need to be removed or adjusted, as certain settings (e.g., magic_quotes_gpc) are deprecated.3. RewriteRule and URL request configurationThe RewriteCond and RewriteRule directives seem correct, but if the login page isn't working, there might be an issue with URL redirection. Ensure that the URLs are correctly passed to index.php and that the .htaccess file uses the correct paths.If the server is misconfigured, the rewrite rules could prevent login or other parts of the website from loading.Check that index.php handles the requests properly.4. Protection via .htaccessEnsure that login scripts are not directly blocked by .htaccess, as this could cause issues with logging in if access is being blocked unintentionally.Example of adjusting RewriteRule: If using index.php causes issues with the login process, you may need to add an exception for the login page:apacheKopēt koduRewriteCond %{REQUEST_URI} !/login.php5. Check server logsIf the problem persists, check the server logs (e.g., error.log and access.log) for more information about errors. Server logs can provide hints about what is happening and why the login isn't functioning properly.6. Check PHP errors and session settingsEnsure that PHP session handling and error reporting are configured correctly. Any errors related to session handling or data processing during the login could result in login failures.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.