Home
Login | Register
Welcome, Guest
Please Login or Register.    Lost Password?

Extra "/" in 404 error page path
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Extra "/" in 404 error page path
#307
Extra "/" in 404 error page path 2 Years, 9 Months ago Karma: 0
jSecure Version 1.0.7-
File involved:
jsecure.php line 36:
Code:

$path .= $params->get('options') == 1 ? JURI::root().'/'.$params->get('custom_path') : JURI::root();


Should be:
Code:

$path .= $params->get('options') == 1 ? JURI::root().''.$params->get('custom_path') : JURI::root();


Removed / from
Code:

JURI::root().'/'
which was causing the 404 page URL to be:

Code:

http://www.yoursite.com//plugins/system/404.html


instead of

Code:

http://www.yoursite.com/plugins/system/404.html
stretchr
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Georgia, USA
The administrator has disabled public write access.
\"It\'s a small world...
But I wouldn\'t want to paint it!
\"
Stephen Wright
 
#309
Re:Extra "/" in 404 error page path 2 Years, 9 Months ago Karma: 2
Hi,

This is already updated in latest version of jSecure Authentication. Can you please download latest version.

Regards,
Bhavin Shah
bhavin.shah
Moderator
Posts: 393
graph
User Offline Click here to see the profile of this user
Gender: Male bhavin.r.shah Location: Mumbai Birthday: 12/24
The administrator has disabled public write access.
 
#310
Re:Extra "/" in 404 error page path 2 Years, 9 Months ago Karma: 0
My report is regarding the latest version, plgSystemJSecure-1.0.7.zip which I downloaded the day that I reported this bug. I just checked again and this is the latest version that I can find posted. Just to be sure, I downloaded the file again and the bug still exists on line 36 of jsecure.php just as I posted. You may want to check into this.

Stretchr
stretchr
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Georgia, USA
The administrator has disabled public write access.
\"It\'s a small world...
But I wouldn\'t want to paint it!
\"
Stephen Wright
 
Go to topPage: 1