| View previous topic :: View next topic |
| Author |
Message |
northend
Joined: 26 Jun 2006 Posts: 3
|
Posted: Sun Jun 25, 2006 9:33 pm Post subject: Public Access |
|
|
Hi
I have got Thyme installed - so far so good. All seems to work reasonably well until I log out of admin and then I immediately get the log in message again.
I have tried to enable public access on the Admin > Users > Public Access screen but all I have is Guest Account (crossed out) and "***" in the other fields. If I click Enable then nothing happens. I have enabled Public access in calendar view but this is not making any difference.
Also, could you please explain - if I have more than one calendar set up, how do users view the different calendars. I thought there may be a drop down box to select a calendar but I can't see one.
Many thanks! |
|
| Back to top |
|
 |
northend
Joined: 26 Jun 2006 Posts: 3
|
Posted: Sun Jun 25, 2006 9:42 pm Post subject: |
|
|
Hi me again!
Sorted the drop down calendar box problem - one less problem. |
|
| Back to top |
|
 |
esoft_ian
Joined: 12 Sep 2005 Posts: 5275
|
Posted: Sun Jun 25, 2006 9:52 pm Post subject: |
|
|
Hi northend,
It sounds like the Guest Account's id is off. Was Thyme's database info imported from another server?
If you have access to a MySQL client such as phpMyAdmin, please execute the following:
| Code: |
| update thyme_Users set id = 0 where userid = '_cal_default_'; |
.. and that will do it. |
|
| Back to top |
|
 |
northend
Joined: 26 Jun 2006 Posts: 3
|
Posted: Mon Jun 26, 2006 8:57 am Post subject: |
|
|
| Thanks, worked a treat! |
|
| Back to top |
|
 |
asappub
Joined: 03 Feb 2007 Posts: 25 Location: San Diego, CA
|
Posted: Sun Feb 04, 2007 1:19 am Post subject: Same Problem for Me |
|
|
I'm having the same problem with guest account. What do I do with the code? I'm at the PHPMyAdmin.
Do I click on the Thyme database, then click "SQL" at the top, then select "Go " after pasting in the following code:
update thyme_Users set id = 0 where usierid = '_cal_default_'; _________________ Catlady |
|
| Back to top |
|
 |
esoft_ian
Joined: 12 Sep 2005 Posts: 5275
|
Posted: Sun Feb 04, 2007 3:22 am Post subject: |
|
|
| Yep |
|
| Back to top |
|
 |
asappub
Joined: 03 Feb 2007 Posts: 25 Location: San Diego, CA
|
Posted: Sun Feb 04, 2007 6:07 am Post subject: Still Show Guest with Asterisks |
|
|
I executed the command in MySQL and still can't get public access. Take a look at the site and let me know if I'm doing something wrong.
www.blackdiego.com/thyme _________________ Catlady |
|
| Back to top |
|
 |
esoft_ian
Joined: 12 Sep 2005 Posts: 5275
|
Posted: Sun Feb 04, 2007 2:10 pm Post subject: |
|
|
HI,
It looks like public access is enabled. I am able to view the site without logging in. |
|
| Back to top |
|
 |
Catlady Guest
|
Posted: Tue Feb 06, 2007 1:33 am Post subject: Then Why Can't I Post an Ad If I'm Not Logged in |
|
|
Then maybe my problem is different. I want users to be able to post an ad if they're not logged in. Is there a way to do this?
When I log myself out, and turn off Quick Post, I can't seem to post an ad. |
|
| Back to top |
|
 |
esoft_ian
Joined: 12 Sep 2005 Posts: 5275
|
Posted: Tue Feb 06, 2007 2:08 am Post subject: |
|
|
Hi,
You can do this in Admin -> Calendars -> Members, change Public to have Normal access. |
|
| Back to top |
|
 |
asappub
Joined: 03 Feb 2007 Posts: 25 Location: San Diego, CA
|
Posted: Tue Feb 06, 2007 4:45 am Post subject: Thank you |
|
|
Thank you. It worked!!  _________________ Catlady |
|
| Back to top |
|
 |
MicroZone Guest
|
Posted: Fri Feb 16, 2007 5:45 am Post subject: guest account |
|
|
Thanks for the SQL tip...it worked for my Thyme installation as well.
I just wanted to point out that in the code, please change "usierid" to "userid" ...I didn't notice at first and put it in the SQL query and it returned an error. Just a note to help ease others frustration.
Thanks again! Great software and great support ! |
|
| Back to top |
|
 |
esoft_kent
Joined: 11 Jan 2007 Posts: 143
|
Posted: Fri Feb 16, 2007 6:37 pm Post subject: |
|
|
| Thanks for pointing that out. I corrected the error. |
|
| Back to top |
|
 |
jasperespejo
Joined: 07 Sep 2006 Posts: 80 Location: Mandaluyong, Philippines
|
Posted: Tue May 29, 2007 7:54 am Post subject: Public Access not working |
|
|
I have this same problem:
I have tried to enable public access on the Admin > Users > Public Access screen but all I have is Guest Account (crossed out) and "***" in the other fields. If I click Enable then nothing happens. I have enabled Public access in calendar view but this is not making any difference.
I have tried the SQL statement but it did not work. I have recently changed the database to import data from a week old backup. _________________ Jasper Espejo |
|
| Back to top |
|
 |
esoft_ian
Joined: 12 Sep 2005 Posts: 5275
|
Posted: Tue May 29, 2007 12:34 pm Post subject: |
|
|
Hi Jasper,
If you look in phpMyAdmin the guest account is there, but the userid is probably different. Rather than '_cal_default_' it may say something like 'Guest Account'. You will have to browse the users table to find this. Once done, alter the query so that it matches the row. E.g. something like:
update thyme_Users set id = 0 where userid = 'Guest Account'; |
|
| Back to top |
|
 |
|