After validation, if user wants to login, it goes back to last opened page(mail validation page)
After validation, if user wants to login, it goes back to last opened page(mail validation page)
Last edited by ekirbiz; 07-15-2009 at 09:19 AM.
IndexU version?
Browser and browser version?
Login from what page?
indexu deluxe 1.4 with opera and netscape and firefox.
from login block on the left hand.
when user login it opens last opened page.
Last edited by ekirbiz; 07-16-2009 at 04:07 AM.
And my second question about image files.
<%if $logo|file_exists%><img src="<%$logo%>" /><%/if%> does't show image files when uploaded?
1.4? That's beta and unsupported. We never support SVN versions, ever. That's why we have beta testers.
As for the login issue, the user is returned to the last page they were on.
As for the image file, of course nothing will show up, you didn't enter a path TO the $logo. View the page source and you'll see that. This isn't a bug.
Everything is correct but image doesn't shown.
In page source i can see this:
<img src="http://www.olmedia.net/upload_files/upload_files/logo_5.gif" />
But in site i can not see the image as the attachement.
I used:
<%if $logo|file_exists%><img src="<%$site_url%>/upload_files/<%$logo%>" /><%/if%>
Before i use:
<%if $logo|file_exists%><img src="<%$logo%>" /><%/if%>
Why? Must i wait for a time for changings?
http://www.olmedia.net/upload_files/...les/logo_5.gif returns a 404 error which means that the file doesn't exist.
You can't display something if it's not there, and no matter what code you use it won't appear.
The following is correct with correct tags added to make sure you stay xhtml compliant.
<%if $logo|file_exists%><img src="<%$site_url%>/upload_files/<%$logo%>" alt='' height='' width='' border='0' />
<%/if%>
I found the error. When i typed
<%if $logo|file_exists%><img src="<%$logo%>" /><%/if%>
<%$logo%> showing in page as upload_files/logoxx.gif
http://www.xxxxxx.com/upload_files/u...les/logo_5.gif
So above it types twice upload_files
<%if $logo|file_exists%><img src="http://www.xxx.com/<%$logo%>" /><%/if%> worked.
Thanks Bruce.
And that got me too, lotsa things you don't remember when you see too much stuff.