new install with 500 error
- emeyer
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
15 years 6 months ago #4247
by emeyer
I had sh404 installed and it worked not very well, sending things the wrong places and so on, so I disabled sh404, downloaded the advanced sef trial. It installed just fine, but I get nothing but 500 at front end. I can log on the back end fine, but there is no indication what could be wrong.
Do I need to uninstall sh404sef? Is just disabling it insufficient?
I am running a test installation in a subdirectory of http://localhost. I tried changing the apache homedir and .htaccess so there was no subdirectory, with same thing: admin interface ok, but no front end.
I tried disabling all components. Same result.
There's no log or indication I can find what I am doing wrong, except the 500. What to do?
Do I need to uninstall sh404sef? Is just disabling it insufficient?
I am running a test installation in a subdirectory of http://localhost. I tried changing the apache homedir and .htaccess so there was no subdirectory, with same thing: admin interface ok, but no front end.
I tried disabling all components. Same result.
There's no log or indication I can find what I am doing wrong, except the 500. What to do?
Please Log in or Create an account to join the conversation.
- emeyer
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
15 years 6 months ago #4248
by emeyer
oh, I should clarify the sh404 errors. Mostly it works fine actually, but in-page links for categories in remository were not activating the corresponding menu items in Extended Menu. Much as I like Extended Menu's auto-expansion of categories and list-style menus, I have reached the point of thinking I should just enter all the menu items and aliases manually, for the amount of effort it takes to get the activation to work.
Also, I disabled mootools and other javascripts in the headers, but I thought that wouldn't make a difference here, because it's php.
The codebase is Joomla 1.5.10 on Apache2 and Php5.
Also, I disabled mootools and other javascripts in the headers, but I thought that wouldn't make a difference here, because it's php.
The codebase is Joomla 1.5.10 on Apache2 and Php5.
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
15 years 6 months ago #4250
by Saka
Emir Sakic
www.sakic.net
Have you installed ionCube loader correctly?
www.sakic.net/support/ioncube/
Test with the tester file.
Test with the tester file.
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.
- emeyer
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
15 years 6 months ago #4251
by emeyer
Thank you for responding. Yes, the ioncube test passes.
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
15 years 6 months ago #4254
by Saka
Emir Sakic
www.sakic.net
Then it must be something wrong with the server, mod_rewrite support or something. Can't tell without looking on it and testing. If you install it on a server accessible from internet and it doesn't work contact me with the login info.
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.
- emeyer
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
15 years 6 months ago #4255
by emeyer
Well, I'm handicapped by the license restrictions to do that.
Are there different requirements for .htacccess? sh404sef and built joomlasef are working fine. Here is my htadccess on the localhost site:
Also, is it possible that sh404sef has created custom fields on some shared database tables? I am thinking I could try a complete uninstall and fresh reinstallation. Please could I know exactly which database tables to drop from the database,
Are there different requirements for .htacccess? sh404sef and built joomlasef are working fine. Here is my htadccess on the localhost site:
RewriteEngine on
#may need uncommenting
Options -FollowSymLinks +SymLinksIfOwnerMatch
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]
# RewriteBase /15
RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR]
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
Options -Indexes
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteCond %{REQUEST_URI} !^/joomla/
RewriteRule ^(.*)$ /joomla/$1
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteRule ^(/)?$ joomla/index.php [L]
<IfModule mod_expires.c>
# ExpiresActive On
# ExpiresByType application/x-javascript A604800
# ExpiresDefault A600
# ExpiresByType image/x-icon A2592000
# ExpiresByType text/css A604800
# ExpiresByType image/gif A2592000
# ExpiresByType image/png A2592000
# ExpiresByType image/jpeg A2592000
# ExpiresByType text/plain A86400
# ExpiresByType application/x-shockwave-flash A2592000
# ExpiresByType video/x-flv A2592000
# ExpiresByType application/pdf A2592000
# ExpiresByType text/html A600
</IfModule>
Also, is it possible that sh404sef has created custom fields on some shared database tables? I am thinking I could try a complete uninstall and fresh reinstallation. Please could I know exactly which database tables to drop from the database,
Please Log in or Create an account to join the conversation.