Me neither!Lucifer4o wrote:I have touched nothing!
yeah but I was hoping for something posted in this decade.GoBieN wrote:Yes, there are many posts to be found with issues with Godaddy and the app.php routing. Try the search.
Can i please this thumbnails pic to download ?cholo981 wrote:Me neither!Lucifer4o wrote:I have touched nothing!![]()
I'll tell you more.
I have an old board backup with phpbb 3.1.2 and I can still see the bug with IE11 on it.
It miss the Toggle:
Even rows go +1 for every single click.
Odd rows go -1.
The result doesn't get recorder in the database.
So I'm pretty sure it was related to the response of the phpbb ajax callback function.
Now works perfectly.![]()
Freaking IE...
Code: Select all
<IfModule mod_rewrite.c>
RewriteEngine on
#
# The following 3 lines will rewrite URLs passed through the front controller
# to not require app.php in the actual URL. In other words, a controller is
# by default accessed at /app.php/my/controller, but can also be accessed at
# /my/controller
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app.php [QSA,L]
Options +FollowSymLinks
</IfModule>
GoBieN wrote:Maybe I was exagerating.
But check that you have a .htaccess file in your forum root and it contains the required section for app.php routing.Code: Select all
<IfModule mod_rewrite.c> RewriteEngine on # # The following 3 lines will rewrite URLs passed through the front controller # to not require app.php in the actual URL. In other words, a controller is # by default accessed at /app.php/my/controller, but can also be accessed at # /my/controller # RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ app.php [QSA,L] Options +FollowSymLinks </IfModule>
Code: Select all
<IfModule mod_rewrite.c>
RewriteEngine on
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
# The following 3 lines will rewrite URLs passed through the front controller
# to not require app.php in the actual URL. In other words, a controller is
# by default accessed at /app.php/my/controller, but can also be accessed at
# /my/controller
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app.php [QSA,L]
#
# If symbolic links are not already being followed,
# uncomment the line below.
# http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
#
#Options +FollowSymLinks
</IfModule>
I've had some issues on my host as well, not with GoDaddy though. With that app.php, bloody mod security doesn't like it.GoBieN wrote:Yes, there are many posts to be found with issues with Godaddy and the app.php routing. Try the search.
GoBieN wrote:Try removing the comment sign for the line: Options +FollowSymLinks