impulsus

Topic: other pages do not work

other pages do not work.
because it will be?

www.impulsus-mx.com

http://www.impulsus-mx.com/post/

put and does not work

add the line RewriteBase /impulsus-mx.com to the .htaccess file from your root jobberbase folder

AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php

***************
RewriteEngine on
Options +FollowSymlinks

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
RewriteBase /www.impulsus-mx.com

ErrorDocument 404 /page-unavailable/

<files ~ "\.tpl$">
order deny,allow
allow from none
deny from all
</files>

navjotjsingh

Re: other pages do not work

Try changing this line in your .htaccess:

Code:

Options +FollowSymlinks

to

Code:

# Options +FollowSymlinks

and then try.

impulsus

Re: other pages do not work

make changes and not working...

=======

AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php

RewriteEngine on
# Options +FollowSymlinks

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

ErrorDocument 404 /page-unavailable/

<files ~ "\.tpl$">
order deny,allow
allow from none
deny from all
</files>

navjotjsingh

Re: other pages do not work

Try replacing

Code:

RewriteRule . index.php [L]

with

Code:

RewriteRule . /index.php [L]

impulsus

Re: other pages do not work

It works correctly. GRACIAS

impulsus

Re: other pages do not work

one more question www.impulsus-mx.com/admin not working

has

http://www.impulsus-mx.com/admin/

Innactive jobs
No jobs, yet.

impulsus

Re: other pages do not work

AddHandler x-mapp-php5 .php

RewriteEngine on
# Options +FollowSymlinks

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Options +FollowSymlinks

ErrorDocument 404 /page-unavailable/

<files ~ "\.tpl$">
order deny,allow
allow from none
deny from all
</files>

navjotjsingh

Re: other pages do not work

impulsus wrote:

one more question www.impulsus-mx.com/admin not working

has

http://www.impulsus-mx.com/admin/

Innactive jobs
No jobs, yet.

That's because all jobs are activated and they can be accessed by visiting diff categories. Only inactive jobs show up on Admin homepage.

navjotjsingh

Re: other pages do not work

Ok, I found, other links are not working in admin directory too.

Try adding

Code:

RewriteBase /www.impulsus-mx.com/admin

to your .htaccess in Admin directory. Try then.

impulsus

Re: other pages do not work

I have the same result with the amendment.

****

AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php

RewriteEngine on
# Options +FollowSymlinks

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteBase /www.impulsus-mx.com/admin

ErrorDocument 404 /page-unavailable/

<files ~ "\.tpl$">
order deny,allow
allow from none
deny from all
</files>

*****

Innactive jobs
No jobs, yet.

http://www.impulsus-mx.com/admin/

navjotjsingh

Re: other pages do not work

Are you sure you are making changes to .htaccess in admin directory? Your Admin Directory's .htaccess should look like this now:

Code:

RewriteEngine on
Options +FollowSymlinks

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

RewriteBase /www.impulsus-mx.com/admin

ErrorDocument 404 /page-unavailable/

impulsus

Re: other pages do not work

yes the change. Htaccess is in /admin with the changes dice direige me to this page.

http://www.impulsus-mx.com/page-unavailable/

*****
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php

RewriteEngine on
# Options +FollowSymlinks

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

ErrorDocument 404 /page-unavailable/

impulsus

Re: other pages do not work

the changes are correct, and fix it

******
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php

RewriteEngine on
# Options +FollowSymlinks

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /admin/index.php [L]

navjotjsingh

Re: other pages do not work

Good to see that it is finally working for you.