 | Re: Question for NightRider |  |
Posted: 10/18/2006 2:35 PM |
|
|
|
|
|
| Citation |
| Posts |
940 |
| Word Cnt. |
48,215 |
| BDay |
Mar 4 |
| Sign |
Pisces |
| Sex |
 |
|
|
|
Joined: Mar 20, 2006
Local time: 10:37 AM
|

|
|
|
|
 |
| Just had a thought. Maybe the count included the new files that are added such as contact.php |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/18/2006 4:29 PM |
|
|
|
|
|
| Citation |
| Posts |
940 |
| Word Cnt. |
48,215 |
| BDay |
Mar 4 |
| Sign |
Pisces |
| Sex |
 |
|
|
|
Joined: Mar 20, 2006
Local time: 10:37 AM
|

|
|
|
|
 |
Well I don't have words to explain my thanks for you straightening all that out. I was telling DH about what you have done for me and he said to tell you thank you from him.
I guess I need to stick with the mods that come from phpbb. Esp since I don't have the knowledge to do otherwise. |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/19/2006 2:42 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:37 AM
Location: St Pete, FL
|

|
|
|
|
 |
So are all the problems resolved now? It looks like everything is working correctly but I may not be looking in the right places for all I know...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/19/2006 5:13 PM |
|
|
|
|
|
| Citation |
| Posts |
940 |
| Word Cnt. |
48,215 |
| BDay |
Mar 4 |
| Sign |
Pisces |
| Sex |
 |
|
|
|
Joined: Mar 20, 2006
Local time: 10:37 AM
|

|
|
|
|
 |
I've tried everything I can think of to try even registered a couple personas. All looks well except for although the configuration has the allow auto login there is no box to check to auto login in the login page.
Did you see I had a mod there in EM that allows a smiley in topics? I tried to install it but of course it cannot copy blah blah. I have seen the 'P' guys mods are not EM compliant but this was the only one I could find that did this. |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/19/2006 7:10 PM |
|
|
|
|
|
| Site Admin |
| Posts |
49593 |
| Word Cnt. |
2,756,445 |
| BDay |
Apr 22 |
| Sign |
Taurus |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 9:37 AM
Location: Texas
|

|
|
|
|
 |
We had a MOD installed that would place an icon next to the topic but Nightrider uninstalled it. For one thing the panel took up a lot of room and for another hardly anyone used it.
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/19/2006 9:56 PM |
|
|
|
|
|
| Citation |
| Posts |
940 |
| Word Cnt. |
48,215 |
| BDay |
Mar 4 |
| Sign |
Pisces |
| Sex |
 |
|
|
|
Joined: Mar 20, 2006
Local time: 10:37 AM
|

|
|
|
|
 |
| The people I know would use the heck out of it. They would love putting more than one Icon in a topic LOL. |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/19/2006 11:51 PM |
|
|
|
|
|
| Site Admin |
| Posts |
49593 |
| Word Cnt. |
2,756,445 |
| BDay |
Apr 22 |
| Sign |
Taurus |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 9:37 AM
Location: Texas
|

|
|
|
|
 |
Yeah, I know what you mean, sometimes we need a lot of visual effects to express ourselves! LOL
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/20/2006 10:32 AM |
|
|
|
|
|
| Citation |
| Posts |
940 |
| Word Cnt. |
48,215 |
| BDay |
Mar 4 |
| Sign |
Pisces |
| Sex |
 |
|
|
|
Joined: Mar 20, 2006
Local time: 10:37 AM
|

|
|
|
|
 |
I would think you could resize the panel?
Every one of these things that EM cannot find a file to copy have that other mods folder in there. |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/23/2006 11:38 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 11:37 AM
Location: St Pete, FL
|

|
|
|
|
 |
| KeeKee wrote:
|
|
All looks well except for although the configuration has the allow auto login there is no box to check to auto login in the login page.
|
There was a piece of code missing from the includes/page_header.php file...
| Code:
|
//
// Allow autologin?
//
if (!isset($board_config['allow_autologin']) || $board_config['allow_autologin'] )
{
$template->assign_block_vars('switch_allow_autologin', array());
$template->assign_block_vars('switch_user_logged_out.switch_allow_aut ologin', array());
}
|
After adding this, the Auto Login option appears in the Index page login panel:
Usually what causes this is that you manually edited an older version of the file, then overwrote the valid version on the server. So make sure you ALWAYS download current copies of your files from your server before manually modifying them and ALWAYS be sure to make backups of the files before you modify them just in case you make a mistake...
| KeeKee wrote:
|
|
Did you see I had a mod there in EM that allows a smiley in topics? I tried to install it but of course it cannot copy blah blah. I have seen the 'P' guys mods are not EM compliant but this was the only one I could find that did this.
|
Ok, do this:
OPEN
post_icons_part1.mod
FIND
| Code:
|
#
#-----[ FIND ]------------------------------------------------
#
# this is a partial search : the full line is longer
#
$select_sql = ( !$submit ) ? ", t.topic_title,
|
REPLACE WITH
| Code:
|
#
#-----[ FIND ]------------------------------------------------
#
$select_sql = (
|
Save, upload, and try again using EM...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Question for NightRider |  |
Posted: 10/24/2006 3:00 PM |
|
|
|
|
|
| Citation |
| Posts |
940 |
| Word Cnt. |
48,215 |
| BDay |
Mar 4 |
| Sign |
Pisces |
| Sex |
 |
|
|
|
Joined: Mar 20, 2006
Local time: 10:37 AM
|

|
|
|
|
 |
I didn't do anything with the login. Now when trying to login I get...
SQL Error : 1146 Table 'mainbase.SESSIONS_KEYS_TABLE' doesn't exist
INSERT INTO SESSIONS_KEYS_TABLE(key_id, user_id, last_ip, last_login) VALUES ('6035a905184ab5b749afc9a9109770d5', 2, '4597f05a', 1161719703)
Line : 229
File : /mounted-storage/home24b/sub001/sc11665-DVNB/www/forums/test/includes/ sessions.php
That is what I think I saw when I tried installing that Contact List havn't done anything else to it though. |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|