[ABD] Phoogle (Google) Map

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
Locked
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: [BETA] Phoogle (Google) Map

Post by david63 »

Perhaps I have missed something somewhere but how do you allocate the Admin/Moderator markers to those members?
David
Remember: You only know what you know and - you don't know what you don't know!

I now no longer support any of my extensions but they will start to become available here
lespinet
Registered User
Posts: 32
Joined: Sat May 03, 2008 5:28 pm

Re: [BETA] Phoogle (Google) Map

Post by lespinet »

Good morning,

I have an error in the adm of phoogle, then "markers Phoogle map", then "special markers / reserved (-) Using a special marker?", Or when I put on "non" I have this error :

Code: Select all

Erreur générale
SQL ERROR [ mysql4 ]

Incorrect integer value: '' for column 'use_special_markers' at row 1 [1366]

SQL

UPDATE phpbb3_phoogle_config SET marker_folder = 'images/phoogle/markers/', use_special_markers = '' WHERE map_id = '1'

BACKTRACE

FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()

FILE: includes/acp/acp_phoogle.php
LINE: 538
CALL: dbal_mysql->sql_query()

FILE: includes/functions_module.php
LINE: 471
CALL: acp_phoogle->main()

FILE: adm/index.php
LINE: 84
CALL: p_master->load_active()

Can help resolve this bug please?

thank you ;)
hello, sorry my English, but I am french, forgive me please.
User avatar
easygo
Registered User
Posts: 689
Joined: Sun Oct 31, 2004 4:23 pm
Contact:

Re: [BETA] Phoogle (Google) Map

Post by easygo »

lespinet wrote:Good morning,

I have an error in the adm of phoogle, then "markers Phoogle map", then "special markers / reserved (-) Using a special marker?", Or when I put on "non" I have this error :

Code: Select all

Erreur générale
SQL ERROR [ mysql4 ]

Incorrect integer value: '' for column 'use_special_markers' at row 1 [1366]

SQL

UPDATE phpbb3_phoogle_config SET marker_folder = 'images/phoogle/markers/', use_special_markers = '' WHERE map_id = '1'

BACKTRACE

FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()

FILE: includes/acp/acp_phoogle.php
LINE: 538
CALL: dbal_mysql->sql_query()

FILE: includes/functions_module.php
LINE: 471
CALL: acp_phoogle->main()

FILE: adm/index.php
LINE: 84
CALL: p_master->load_active()

Can help resolve this bug please?

thank you ;)
Open includes/acp/acp_phoogle.php and then search/replace

Code: Select all

			$use_special_markers = ($_POST['use_special_markers']) ? intval($_POST['use_special_markers']) : "";
with

Code: Select all

			$use_special_markers = request_var('use_special_markers', '');
Hope it helps / easy
Casual developer for AJAX Chat on behalf of the author / Arcade Center powered by phpBB Arcade

A problem well put is half solved. (John Dewey, 1859–1952)
lespinet
Registered User
Posts: 32
Joined: Sat May 03, 2008 5:28 pm

Re: [BETA] Phoogle (Google) Map

Post by lespinet »

easygo wrote:
lespinet wrote:Good morning,

I have an error in the adm of phoogle, then "markers Phoogle map", then "special markers / reserved (-) Using a special marker?", Or when I put on "non" I have this error :

Code: Select all

Erreur générale
SQL ERROR [ mysql4 ]

Incorrect integer value: '' for column 'use_special_markers' at row 1 [1366]

SQL

UPDATE phpbb3_phoogle_config SET marker_folder = 'images/phoogle/markers/', use_special_markers = '' WHERE map_id = '1'

BACKTRACE

FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()

FILE: includes/acp/acp_phoogle.php
LINE: 538
CALL: dbal_mysql->sql_query()

FILE: includes/functions_module.php
LINE: 471
CALL: acp_phoogle->main()

FILE: adm/index.php
LINE: 84
CALL: p_master->load_active()

Can help resolve this bug please?

thank you ;)
Open includes/acp/acp_phoogle.php and then search/replace

Code: Select all

			$use_special_markers = ($_POST['use_special_markers']) ? intval($_POST['use_special_markers']) : "";
with

Code: Select all

			$use_special_markers = request_var('use_special_markers', '');
Hope it helps / easy
good evening,

thank you its re-runs!

But now I do not have the marker "red" as Admin, and the list of users or I am not in red.

an idea or two?
hello, sorry my English, but I am french, forgive me please.
User avatar
easygo
Registered User
Posts: 689
Joined: Sun Oct 31, 2004 4:23 pm
Contact:

Re: [BETA] Phoogle (Google) Map

Post by easygo »

lespinet wrote:
easygo wrote:
lespinet wrote:Good morning,

I have an error in the adm of phoogle, then "markers Phoogle map", then "special markers / reserved (-) Using a special marker?", Or when I put on "non" I have this error :

Code: Select all

Erreur générale
SQL ERROR [ mysql4 ]

Incorrect integer value: '' for column 'use_special_markers' at row 1 [1366]

SQL

UPDATE phpbb3_phoogle_config SET marker_folder = 'images/phoogle/markers/', use_special_markers = '' WHERE map_id = '1'

BACKTRACE

FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()

FILE: includes/acp/acp_phoogle.php
LINE: 538
CALL: dbal_mysql->sql_query()

FILE: includes/functions_module.php
LINE: 471
CALL: acp_phoogle->main()

FILE: adm/index.php
LINE: 84
CALL: p_master->load_active()

Can help resolve this bug please?

thank you ;)
Open includes/acp/acp_phoogle.php and then search/replace

Code: Select all

			$use_special_markers = ($_POST['use_special_markers']) ? intval($_POST['use_special_markers']) : "";
with

Code: Select all

			$use_special_markers = request_var('use_special_markers', '');
Hope it helps / easy
good evening,

thank you its re-runs!

But now I do not have the marker "red" as Admin, and the list of users or I am not in red.

an idea or two?
Sorry, I can't follow. If you want to use these special markers for admins
and moderators, you should better leave that switch ON, of course.
Casual developer for AJAX Chat on behalf of the author / Arcade Center powered by phpBB Arcade

A problem well put is half solved. (John Dewey, 1859–1952)
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: [BETA] Phoogle (Google) Map

Post by david63 »

david63 wrote:Perhaps I have missed something somewhere but how do you allocate the Admin/Moderator markers to those members?
David
Remember: You only know what you know and - you don't know what you don't know!

I now no longer support any of my extensions but they will start to become available here
lespinet
Registered User
Posts: 32
Joined: Sat May 03, 2008 5:28 pm

Re: [BETA] Phoogle (Google) Map

Post by lespinet »

easygo wrote:
lespinet wrote:
easygo wrote:
lespinet wrote:Good morning,

I have an error in the adm of phoogle, then "markers Phoogle map", then "special markers / reserved (-) Using a special marker?", Or when I put on "non" I have this error :

Code: Select all

Erreur générale
SQL ERROR [ mysql4 ]

Incorrect integer value: '' for column 'use_special_markers' at row 1 [1366]

SQL

UPDATE phpbb3_phoogle_config SET marker_folder = 'images/phoogle/markers/', use_special_markers = '' WHERE map_id = '1'

BACKTRACE

FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()

FILE: includes/acp/acp_phoogle.php
LINE: 538
CALL: dbal_mysql->sql_query()

FILE: includes/functions_module.php
LINE: 471
CALL: acp_phoogle->main()

FILE: adm/index.php
LINE: 84
CALL: p_master->load_active()

Can help resolve this bug please?

thank you ;)
Open includes/acp/acp_phoogle.php and then search/replace

Code: Select all

			$use_special_markers = ($_POST['use_special_markers']) ? intval($_POST['use_special_markers']) : "";
with

Code: Select all

			$use_special_markers = request_var('use_special_markers', '');
Hope it helps / easy
good evening,

thank you its re-runs!

But now I do not have the marker "red" as Admin, and the list of users or I am not in red.

an idea or two?
Sorry, I can't follow. If you want to use these special markers for admins
and moderators, you should better leave that switch ON, of course.
yes thank you, but on the index it does not markers in red?
hello, sorry my English, but I am french, forgive me please.
User avatar
BassFace
Registered User
Posts: 783
Joined: Tue Dec 02, 2003 7:10 pm
Location: Aurora, CO

Re: [BETA] Phoogle (Google) Map

Post by BassFace »

david63 wrote:Perhaps I have missed something somewhere but how do you allocate the Admin/Moderator markers to those members?
I believe the user's Default User Group must be set to admin/moderator for them to display the special map markers. That is set (if I remember right) in the ACP under User Groups.
User avatar
BassFace
Registered User
Posts: 783
Joined: Tue Dec 02, 2003 7:10 pm
Location: Aurora, CO

Re: [BETA] Phoogle (Google) Map

Post by BassFace »

lespinet, can you post a screenshot of what you are referring to?
User avatar
easygo
Registered User
Posts: 689
Joined: Sun Oct 31, 2004 4:23 pm
Contact:

Re: [BETA] Phoogle (Google) Map

Post by easygo »

lespinet wrote:yes thank you, but on the index it does not markers in red?
Hem, since when? With the original files and settings your marker
should always be displayed for you, at least on the main map.

Did you mean that other users can't see the red one? Check your profile settings
as to Phoogle or rather say Yes to 'Show my marker on the Phoogle map'.
Casual developer for AJAX Chat on behalf of the author / Arcade Center powered by phpBB Arcade

A problem well put is half solved. (John Dewey, 1859–1952)
Kestel17
Registered User
Posts: 10
Joined: Sun Mar 16, 2008 9:08 pm

Re: [BETA] Phoogle (Google) Map

Post by Kestel17 »

BassFace thanks for Fantastic Mod ;)

It works prefect^^

greetings from Germany :mrgreen:

Kestel17
User avatar
Sunka
Registered User
Posts: 566
Joined: Wed Mar 26, 2008 2:48 pm
Location: Croatia, Zvoneca

Re: [BETA] Phoogle (Google) Map

Post by Sunka »

BassFace, please help

Sunka wrote:Only Admin and Global Moderators have special images for maps...I created rank Moderators...How to set them to have special images on maps too?
M*I*B
Registered User
Posts: 22
Joined: Wed Feb 05, 2003 11:08 pm
Location: Germany/NRW
Contact:

Re: [BETA] Phoogle (Google) Map

Post by M*I*B »

I have some trouble; may can anybody help me on the right way?!?

I setup Phoogle on a brandnew installed 3.0.1 and implement it in ProSilver (1) and Glacier (2). The most funktions are doing very well, but some don't in both styles so that I belive that is'nt a problem with the styles at all...

1.
In (2) the Map looks perfect, in (1) the Map are to big and is cutoff on the right side in the UCP

2.
If a User like to set his own Marker on the home he can't; there is no marker that he can catch and drop !? In MSIE7 I can read a errormessage like

Code: Select all

Line: 303
Sign: 8
Error: 'icon12' is not definied
Code: 0
URL: [domain]/ucp.php?i=phoogle&mode=phoogle
If I drag and move the Map I get

Code: Select all

Line: 277
Sign: 9
Error: 'marker' is NUL or not definied
Code: 0
URL: [domain]/ucp.php?i=phoogle&mode=phoogle

Ok, that's all at the Moment. Hope that anybody can help me solving that... and pls excuse my ugly english :roll:

BTW: I have test it with FireFox 2, MSIE 6 and 7, all last aviable Versions. Site runs on a WIN-System with Apache 2.2 and last stable PHP and MySQL 5.1 (UTF8)
WriteYaa...
Micha
lespinet
Registered User
Posts: 32
Joined: Sat May 03, 2008 5:28 pm

Re: [BETA] Phoogle (Google) Map

Post by lespinet »

BassFace wrote:lespinet, can you post a screenshot of what you are referring to?
Good morning,

Sorry, all is returned to a normal!

all my apologies

Forgive me.
hello, sorry my English, but I am french, forgive me please.
bogdan81
Registered User
Posts: 7
Joined: Mon Jun 23, 2008 7:57 am

Re: [BETA] Phoogle (Google) Map

Post by bogdan81 »

Hi ,

First of all a very interesting MOD. I have installed it on 3.0.1 PHPBB, and I am using the Subsilver Theme.
I have a problem in ACP, while I am trying to view someone profiles. This is what I receive:

[phpBB Debug] PHP Notice: in file /includes/functions_profile_fields.php on line 758: Invalid argument supplied for foreach()
[phpBB Debug] PHP Notice: in file /adm/index.php on line 150: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2956)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 152: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2956)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 153: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2956)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 154: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2956)

Please help!!
Locked

Return to “[3.0.x] Abandoned MODs”