I after install blog. Open login screen click. and type username and password click login button. next open Serendipity Administration Suite page. And any menu click Open login screen page.?????
Use browser: Internet Explorer 6.0
My web server:
Apache 2.2.3 / PHP5.2.ORC-6 / mod_jk 1.2.19 (Tomcat connect) / MySQL 5.1 / Tomcat 5.5.20
retry login page....
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: retry login page....
Hi!
If that happens, your webserver does not have the PHP sessions correctly configured or your browser is rejecting cookies.
Without session cookies, Serendipity cannot be used properly. You could check the "Remember me" input box, but that would only solve 80% of your problems and leave other 20% sporadic problems.
Best regards,
Garvin
If that happens, your webserver does not have the PHP sessions correctly configured or your browser is rejecting cookies.
Without session cookies, Serendipity cannot be used properly. You could check the "Remember me" input box, but that would only solve 80% of your problems and leave other 20% sporadic problems.
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Which SQL source does it tell you?
If Opera works, then it just means you have your IE and Firefox configured to not accept Cookies. Change that, and it should work in IE and FF as well.
HTH,
Garvin
Which SQL source does it tell you?
If Opera works, then it just means you have your IE and Firefox configured to not accept Cookies. Change that, and it should work in IE and FF as well.
HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Media Library menu
tnk you for answer...
Last edited by tsogtoo on Mon Oct 23, 2006 11:25 am, edited 1 time in total.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Media Library menu
Hi!
This SQL error message tells you that your "serendipity_images" table is missing the "realname" column.
This usually only happens when you upgraded an older serendipity version to a new one, and did not follow the upgrade procedure, which executes SQL statements to bring tables upt o date.
Did you perform an update?
If you know some SQL, you could compare your DB-tables with the ones listed in the sql/db.sql file and check which columns and tables you are missing.
Best regards,
Garvin
This SQL error message tells you that your "serendipity_images" table is missing the "realname" column.
This usually only happens when you upgraded an older serendipity version to a new one, and did not follow the upgrade procedure, which executes SQL statements to bring tables upt o date.
Did you perform an update?
If you know some SQL, you could compare your DB-tables with the ones listed in the sql/db.sql file and check which columns and tables you are missing.
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
thk you.
SELECT i.id, '' AS orderkey, i.name, i.extension, i.mime, i.size, i.dimensions_width, i.dimensions_height, i.date, i.thumbnail_name, i.authorid, i.path, i.hotlink, i.realname,
a.realname AS authorname
FROM ls_images AS i
LEFT OUTER JOIN ls_authors AS a
ON i.authorid = a.authorid
LEFT JOIN ls_authorgroups AS acl_a
ON acl_a.authorid = 1
LEFT JOIN ls_access AS acl_acc
ON ( acl_acc.artifact_mode = 'read'
AND acl_acc.artifact_type = 'directory'
AND acl_acc.artifact_index = i.path
)
WHERE 1=1 AND (
i.path IS NULL OR
acl_acc.groupid IS NULL
OR ( acl_acc.groupid = acl_a.groupid OR acl_acc.groupid = 0)
OR ( acl_acc.artifact_id IS NULL
)
)
GROUP BY i.id
ORDER BY i.date DESC LIMIT 0, 8
/ Unknown column 'i.realname' in 'field list'
follow code...garvinhicking wrote: Which SQL source does it tell you?
If Opera works, then it just means you have your IE and Firefox configured to not accept Cookies. Change that, and it should work in IE and FF as well.
SELECT i.id, '' AS orderkey, i.name, i.extension, i.mime, i.size, i.dimensions_width, i.dimensions_height, i.date, i.thumbnail_name, i.authorid, i.path, i.hotlink, i.realname,
a.realname AS authorname
FROM ls_images AS i
LEFT OUTER JOIN ls_authors AS a
ON i.authorid = a.authorid
LEFT JOIN ls_authorgroups AS acl_a
ON acl_a.authorid = 1
LEFT JOIN ls_access AS acl_acc
ON ( acl_acc.artifact_mode = 'read'
AND acl_acc.artifact_type = 'directory'
AND acl_acc.artifact_index = i.path
)
WHERE 1=1 AND (
i.path IS NULL OR
acl_acc.groupid IS NULL
OR ( acl_acc.groupid = acl_a.groupid OR acl_acc.groupid = 0)
OR ( acl_acc.artifact_id IS NULL
)
)
GROUP BY i.id
ORDER BY i.date DESC LIMIT 0, 8
/ Unknown column 'i.realname' in 'field list'
tell me IE and Firefox browser accept Cookies config. It's me opinion correct.garvinhicking wrote:
If Opera works, then it just means you have your IE and Firefox configured to not accept Cookies. Change that, and it should work in IE and FF as well.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
As for the SQL error, see what I wrote above.
About IE and Firefox: Check your browser configuration. You must have disabled cookies there somewhere, because if it works in Opera, it's a browser and NOT a server problem.
Best regards,
Garvin
As for the SQL error, see what I wrote above.
About IE and Firefox: Check your browser configuration. You must have disabled cookies there somewhere, because if it works in Opera, it's a browser and NOT a server problem.
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
"Error" sadly does not help us much further, can you please describe what exactly happens? Maybe provide a URL or screenshot for us?
Best regards,
Garvin
"Error" sadly does not help us much further, can you please describe what exactly happens? Maybe provide a URL or screenshot for us?
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
hi
My problem about...
file download of web from http://localhost/web/ okey successfuly but file download of web from http://192.168.0.xxx/web/ not open.
file download of web from http://localhost/web/ okey successfuly but file download of web from http://192.168.0.xxx/web/ not open.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: hi
Excuse me? Sadly I don'T understand what you are trying to say?
Best regards,
Garvin
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/