Jump to content
[MUST READ] Forum Rules ×

bentxt

Senior Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by bentxt

  1. Knowledgebase iFastNet https://kb.ifastnet.com/index.php?/ iFastNet Free Hosting https://kb.ifastnet.com/index.php?/category/27/0/10/Free-Hosting/cPanel-FAQ/ Hello, how can i create a working cname? Did the Free Hosting have full cname support? Greets bentxt
  2. Support ticket: CNAME is not supported. @RoyalityFree Did you have a screenshot for me? I'm confused.
  3. Hello, CNAME is not supported for byethost. Greets bentxt
  4. Hello, did we have cname support with byet.host Free Hosting? https://suspended-website.com/c/ I get this message: Greets steveng https://www.byet.net/index.php?/topic/22820-lets-encrypt-on-free-hosting/&tab=comments#comment-32143
  5. Hello, bynet.host use a Nginx Webserver, did i need a .htaccess ?
  6. Hello, in my Wordpress Sofaculous installation i don't the .htaccess . Screenshot, part of FileZilla ftp client:
  7. Hello, how can i make a backup from my MaySQL Database? Thank you bentxt
  8. Hello, i have install a Wordpress instance with Softaculous at my first subdomain. Where is my .htaccess file? Greets benttxt
  9. Hello, is the byet.host support ab bot? If i write a ticket, than the was removed from Softaculious. Greets bentxt
  10. Hello, if I install Shopware, i get this error: Shopware Version : 6.4.9.0 How can i solved this problem? Greets bentxt
  11. Hello, good morning anyone use Grav, and have the solution? Greets bentxt
  12. .htaccess <IfModule mod_rewrite.c> RewriteEngine On ## Begin RewriteBase # If you are getting 500 or 404 errors on subpages, you may have to uncomment the RewriteBase entry # You should change the '/' to your appropriate subfolder. For example if you have # your Grav install at the root of your site '/' should work, else it might be something # along the lines of: RewriteBase /<your_sub_folder> ## # RewriteBase / ## End - RewriteBase ## Begin - X-Forwarded-Proto # In some hosted or load balanced environments, SSL negotiation happens upstream. # In order for Grav to recognize the connection as secure, you need to uncomment # the following lines. # # RewriteCond %{HTTP:X-Forwarded-Proto} https # RewriteRule .* - [E=HTTPS:on] # ## End - X-Forwarded-Proto ## Begin - Exploits # If you experience problems on your site block out the operations listed below # This attempts to block the most common type of exploit `attempts` to Grav # # Block out any script trying to use twig tags in URL. RewriteCond %{REQUEST_URI} ({{|}}|{%|%}) [OR] RewriteCond %{QUERY_STRING} ({{|}}|{%25|%25}) [OR] # Block out any script trying to base64_encode data within the URL. RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR] # Block out any script that includes a <script> tag in URL. RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR] # Block out any script trying to set a PHP GLOBALS variable via URL. RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] # Block out any script trying to modify a _REQUEST variable via URL. RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) # Return 403 Forbidden header and show the content of the root homepage RewriteRule .* index.php [F] # ## End - Exploits ## Begin - Index # If the requested path and file is not /index.php and the request # has not already been internally rewritten to the index.php script RewriteCond %{REQUEST_URI} !^/index\.php # and the requested path and file doesn't directly match a physical file RewriteCond %{REQUEST_FILENAME} !-f # and the requested path and file doesn't directly match a physical folder RewriteCond %{REQUEST_FILENAME} !-d # internally rewrite the request to the index.php script RewriteRule .* index.php [L] ## End - Index ## Begin - Security # Block all direct access for these folders RewriteRule ^(\.git|cache|bin|logs|backup|webserver-configs|tests)/(.*) error [F] # Block access to specific file types for these system folders RewriteRule ^(system|vendor)/(.*)\.(txt|xml|md|html|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ error [F] # Block access to specific file types for these user folders RewriteRule ^(user)/(.*)\.(txt|md|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ error [F] # Block all direct access to .md files: RewriteRule \.md$ error [F] # Block all direct access to files and folders beginning with a dot RewriteRule (^|/)\.(?!well-known) - [F] # Block access to specific files in the root folder RewriteRule ^(LICENSE\.txt|composer\.lock|composer\.json|\.htaccess)$ error [F] ## End - Security </IfModule>
  13. https://bastelben.22web.org/htaccess_tester.php Grav Apache .htaccess Tester The file .htaccess exists and is readable to the webserver. The file contains: <IfModule mod_rewrite.c> RewriteEngine On ## Begin RewriteBase # If you are getting 500 or 404 errors on subpages, you may have to uncomment the RewriteBase entry # You should change the '/' to your appropriate subfolder. For example if you have # your Grav install at the root of your site '/' should work, else it might be something # along the lines of: RewriteBase /<your_sub_folder> ## # RewriteBase / ## End - RewriteBase ## Begin - X-Forwarded-Proto # In some hosted or load balanced environments, SSL negotiation happens upstream. # In order for Grav to recognize the connection as secure, you need to uncomment # the following lines. # # RewriteCond %{HTTP:X-Forwarded-Proto} https # RewriteRule .* - [E=HTTPS:on] # ## End - X-Forwarded-Proto ## Begin - Exploits # If you experience problems on your site block out the operations listed below # This attempts to block the most common type of exploit `attempts` to Grav # # Block out any script trying to use twig tags in URL. RewriteCond %{REQUEST_URI} ({{|}}|{%|%}) [OR] RewriteCond %{QUERY_STRING} ({{|}}|{%25|%25}) [OR] # Block out any script trying to base64_encode data within the URL. RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR] # Block out any script that includes a <script> tag in URL. RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR] # Block out any script trying to set a PHP GLOBALS variable via URL. RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] # Block out any script trying to modify a _REQUEST variable via URL. RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) # Return 403 Forbidden header and show the content of the root homepage RewriteRule .* index.php [F] # ## End - Exploits ## Begin - Index # If the requested path and file is not /index.php and the request # has not already been internally rewritten to the index.php script RewriteCond %{REQUEST_URI} !^/index\.php # and the requested path and file doesn't directly match a physical file RewriteCond %{REQUEST_FILENAME} !-f # and the requested path and file doesn't directly match a physical folder RewriteCond %{REQUEST_FILENAME} !-d # internally rewrite the request to the index.php script RewriteRule .* index.php [L] ## End - Index ## Begin - Security # Block all direct access for these folders RewriteRule ^(\.git|cache|bin|logs|backup|webserver-configs|tests)/(.*) error [F] # Block access to specific file types for these system folders RewriteRule ^(system|vendor)/(.*)\.(txt|xml|md|html|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ error [F] # Block access to specific file types for these user folders RewriteRule ^(user)/(.*)\.(txt|md|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ error [F] # Block all direct access to .md files: RewriteRule \.md$ error [F] # Block all direct access to files and folders beginning with a dot RewriteRule (^|/)\.(?!well-known) - [F] # Block access to specific files in the root folder RewriteRule ^(LICENSE\.txt|composer\.lock|composer\.json|\.htaccess)$ error [F] ## End - Security </IfModule> # Begin - Prevent Browsing and Set Default Resources Options -Indexes DirectoryIndex index.php index.html index.htm # End - Prevent Browsing and Set Default Resources </div>
  14. ? i don't find the solution for me. ? https://learn.getgrav.org/17/troubleshooting/page-not-found PHP Info phpinfo.php
  15. This is my grav Testsite, installed with Softaculous. https://bastelben.22web.org/ https://www.w3.org/ https://validator.w3.org/ https://validator.w3.org/nu/?doc=http%3A%2F%2Fbastelben.22web.org%2F bentxt with WordPress, Softaculus https://bastelbenwp.22web.org/ https://validator.w3.org/nu/?doc=http%3A%2F%2Fbastelbenwp.22web.org%2F bentxt try to install Shopware The following errors were found The following errors were found : Could not make the query numbered : 174 MySQL Error No : 1064 MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'GENERATED ALWAYS AS (json_unquote(json_extract(`price`,'$.taxStatus'))) VIRTU...' at line 22 bentxt Joomla - ok https://bastelbentest.22web.org/
  16. @BastelPichi2 Can you test, if you get the same Error? Thank you bentxt
  17. Hello, we have no solution for this problem? Which Softaculous package can i use with infinitiyFree?
  18. Compare iFastNet Company https://saasscout.com/hosting/byet-vs-infinityfree/ Plans byet.host https://byet.host/free-hosting https://byet.host/paid-hosting Compare The Plans infinityfee https://www.infinityfree.net/premium/
  19. Hallo, what ist InfinityFree ? I'm using "https://byet.host/free-hosting" ? https://www.infinityfree.net/ InfinityFree isn't byet.host. I'm search the information, the link from byet.host. Greets bentxt
  20. https://learn.getgrav.org/17/troubleshooting/page-not-found#htaccess-test-script Grav Apache .htaccess Tester hp_value display_errors On php_value mbstring.http_input auto php_value date.timezone Europe/Berlin <IfModule mod_rewrite.c> RewriteEngine On ## Begin RewriteBase # If you are getting 500 or 404 errors on subpages, you may have to uncomment the RewriteBase entry # You should change the '/' to your appropriate subfolder. For example if you have # your Grav install at the root of your site '/' should work, else it might be something # along the lines of: RewriteBase /<your_sub_folder> ## # RewriteBase / ## End - RewriteBase ## Begin - X-Forwarded-Proto # In some hosted or load balanced environments, SSL negotiation happens upstream. # In order for Grav to recognize the connection as secure, you need to uncomment # the following lines. # # RewriteCond %{HTTP:X-Forwarded-Proto} https # RewriteRule .* - [E=HTTPS:on] # ## End - X-Forwarded-Proto ## Begin - Exploits # If you experience problems on your site block out the operations listed below # This attempts to block the most common type of exploit `attempts` to Grav # # Block out any script trying to use twig tags in URL. RewriteCond %{REQUEST_URI} ({{|}}|{%|%}) [OR] RewriteCond %{QUERY_STRING} ({{|}}|{%25|%25}) [OR] # Block out any script trying to base64_encode data within the URL. RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR] # Block out any script that includes a <script> tag in URL. RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR] # Block out any script trying to set a PHP GLOBALS variable via URL. RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] # Block out any script trying to modify a _REQUEST variable via URL. RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) # Return 403 Forbidden header and show the content of the root homepage RewriteRule .* index.php [F] # ## End - Exploits ## Begin - Index # If the requested path and file is not /index.php and the request # has not already been internally rewritten to the index.php script RewriteCond %{REQUEST_URI} !^/index\.php # and the requested path and file doesn't directly match a physical file RewriteCond %{REQUEST_FILENAME} !-f # and the requested path and file doesn't directly match a physical folder RewriteCond %{REQUEST_FILENAME} !-d # internally rewrite the request to the index.php script RewriteRule .* index.php [L] ## End - Index ## Begin - Security # Block all direct access for these folders RewriteRule ^(\.git|cache|bin|logs|backup|webserver-configs|tests)/(.*) error [F] # Block access to specific file types for these system folders RewriteRule ^(system|vendor)/(.*)\.(txt|xml|md|html|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ error [F] # Block access to specific file types for these user folders RewriteRule ^(user)/(.*)\.(txt|md|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ error [F] # Block all direct access to .md files: RewriteRule \.md$ error [F] # Block all direct access to files and folders beginning with a dot RewriteRule (^|/)\.(?!well-known) - [F] # Block access to specific files in the root folder RewriteRule ^(LICENSE\.txt|composer\.lock|composer\.json|\.htaccess)$ error [F] ## End - Security </IfModule> # Begin - Prevent Browsing and Set Default Resources Options -Indexes DirectoryIndex index.php index.html index.htm # End - Prevent Browsing and Set Default Resources </div> How can i solved the probem?
×
×
  • Create New...