search for: in: entire forum this post
you are here: root => Installing the Nodesforum => Installation Support => Errors installing
previous | page 3 of 4 | next
member since:
folders:
10
posts:
22
replies:
75
ok.

it seems that you are having a problem with the anti leech protection.

This protection is a personal flavour of mine, i usually do that on all my sites.

the idea basically is that in the images folder theres a folder named with a bunch of random characters and inside that second folder is all the picture content including buttons(minipics) avatars and any graphic.

so if someone tries to hotlink images from your forum it wont work long cos routinely the folder named with a bunch of characters changes its name to another bunch of characters.

normally and also in all my personal experiences there should never be more than 1 pictures folder, inside just 1 folder named bunch of numbers and inside all the graphics only once.

in your case i sounds like possibly every-time the folder tries to rename itself for some reason it instead creates a new copy of itself. thats a problem cos that means that 1 eventually youll have tons of copies of these folders. also of course routinely multiplying the images folders could definitely lead to space problems... and finally it actually causes a problem with the way the whole image folders is going to work cos on every page load the forum needs to determine again what is the "mystery path" of the images folder and then uses it to show images and also to chose where to place new uploaded avatars and delete old ones ect. but if theres many of them theres no way telling which one it will use. and this could lead to multiple problems with avatars not beeing found. could possibly explain why your old avatar was not found too.

basically put simply if theres more than 1 copy of the stuff in the images folders its actually a big problem we need to figure out what causes that or just disable the anti-leech protection alltogheter

so the part of the code that deals with that is found at the beginning of pre_output.php and it looks like that:

code:
//-------------IMAGES MYSTERY FOLDER
//read time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','r');
$lastglobtime=@fread($lastpathloadtimefile,9999);
@fclose($lastpathloadtimefile);
//read time of last rotation
$lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','r');
$lastpathrotationtime=@fread($lastpathrotationtimefile,9999);
@fclose($lastpathrotationtimefile);
//write time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','w');
if($lastpathloadtimefile===false)
{echo '<span style="padding:4px;margin:4px;color:#000000;background-color:#FFFFFF;border-style:solid;border-width:1px;border-color:#000000;"><span style="color:red;">error!!</span> unable to write to images/lastpathloadtimefile please set the permissions to allow the system to write in the "images" folder.</span><br />';}
fwrite($lastpathloadtimefile,$nowtime);
fclose($lastpathloadtimefile);
//get current path
$_nodesforum_mysterypath=glob($_nodesforum_code_path.'images/*');
$_nodesforum_mysterypath=$_nodesforum_mysterypath[0];
if($lastglobtime<($nowtime-15) && $lastpathrotationtime<($nowtime-(12*3600)))
{
    //if last glob older than x seconds change path
    $newmystery=$_nodesforum_code_path.'images/_'.rand(111111,999999);
    rename($_nodesforum_mysterypath,$newmystery);
    $_nodesforum_mysterypath=$newmystery;
    //write time of last rotation
    $lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','w');
    fwrite($lastpathrotationtimefile,$nowtime);
    fclose($lastpathrotationtimefile);
}



of course 1 way to go would be to just disable the hotlink protection alltogheter by commenting out the part that does the rename:


code:
//-------------IMAGES MYSTERY FOLDER
//read time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','r');
$lastglobtime=@fread($lastpathloadtimefile,9999);
@fclose($lastpathloadtimefile);
//read time of last rotation
$lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','r');
$lastpathrotationtime=@fread($lastpathrotationtimefile,9999);
@fclose($lastpathrotationtimefile);
//write time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','w');
if($lastpathloadtimefile===false)
{echo '<span style="padding:4px;margin:4px;color:#000000;background-color:#FFFFFF;border-style:solid;border-width:1px;border-color:#000000;"><span style="color:red;">error!!</span> unable to write to images/lastpathloadtimefile please set the permissions to allow the system to write in the "images" folder.</span><br />';}
fwrite($lastpathloadtimefile,$nowtime);
fclose($lastpathloadtimefile);
//get current path
$_nodesforum_mysterypath=glob($_nodesforum_code_path.'images/*');
$_nodesforum_mysterypath=$_nodesforum_mysterypath[0];
//if($lastglobtime<($nowtime-15) && $lastpathrotationtime<($nowtime-(12*3600)))
//{
//    //if last glob older than x seconds change path
//    $newmystery=$_nodesforum_code_path.'images/_'.rand(111111,999999);
//    rename($_nodesforum_mysterypath,$newmystery);
//    $_nodesforum_mysterypath=$newmystery;
//    //write time of last rotation
//    $lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','w');
//    fwrite($lastpathrotationtimefile,$nowtime);
//    fclose($lastpathrotationtimefile);
//}




then just remove all extra copies of the stuff in the images folder and you should be rid of that problem.


on the other hand if that problem occurs on your server there must be a reason. if we did manage to identify that reason i could possibly come up with an update that might allow you to benefit from the anti-leech protection and could also solve it for anyone else in the future who might experience the same problem that you do.

though im having difficulty figuring out what could cause that exactly. im looking at that code that im showing you above and i see that every fopen in that code only opens files that keep track of times ("lastpathrotationtimefile" and "lastpathloadtimefile"). so i think the only part that could possibly do something like that is the rename() operation. is it possible that for some reason when your server renames a folder via php rename() it creates a new copy of the folder instead of actually renaming? could be some special setting. but anyways i think we should also make sure that what the parameters passed to this rename operation have nothing wrong in them.


to troubleshoot this problem i would recommend that you temporarily change the part that deals with rotating the mystery folder from this:

code:
//-------------IMAGES MYSTERY FOLDER
//read time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','r');
$lastglobtime=@fread($lastpathloadtimefile,9999);
@fclose($lastpathloadtimefile);
//read time of last rotation
$lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','r');
$lastpathrotationtime=@fread($lastpathrotationtimefile,9999);
@fclose($lastpathrotationtimefile);
//write time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','w');
if($lastpathloadtimefile===false)
{echo '<span style="padding:4px;margin:4px;color:#000000;background-color:#FFFFFF;border-style:solid;border-width:1px;border-color:#000000;"><span style="color:red;">error!!</span> unable to write to images/lastpathloadtimefile please set the permissions to allow the system to write in the "images" folder.</span><br />';}
fwrite($lastpathloadtimefile,$nowtime);
fclose($lastpathloadtimefile);
//get current path
$_nodesforum_mysterypath=glob($_nodesforum_code_path.'images/*');
$_nodesforum_mysterypath=$_nodesforum_mysterypath[0];
if($lastglobtime<($nowtime-15) && $lastpathrotationtime<($nowtime-(12*3600)))
{
    //if last glob older than x seconds change path
    $newmystery=$_nodesforum_code_path.'images/_'.rand(111111,999999);
    rename($_nodesforum_mysterypath,$newmystery);
    $_nodesforum_mysterypath=$newmystery;
    //write time of last rotation
    $lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','w');
    fwrite($lastpathrotationtimefile,$nowtime);
    fclose($lastpathrotationtimefile);
}

to this:

code:
//-------------IMAGES MYSTERY FOLDER
//read time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','r');
$lastglobtime=@fread($lastpathloadtimefile,9999);
@fclose($lastpathloadtimefile);
//read time of last rotation
$lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','r');
$lastpathrotationtime=@fread($lastpathrotationtimefile,9999);
@fclose($lastpathrotationtimefile);
//write time of last glob
$lastpathloadtimefile=@fopen($_nodesforum_code_path.'images/lastpathloadtimefile','w');
if($lastpathloadtimefile===false)
{echo '<span style="padding:4px;margin:4px;color:#000000;background-color:#FFFFFF;border-style:solid;border-width:1px;border-color:#000000;"><span style="color:red;">error!!</span> unable to write to images/lastpathloadtimefile please set the permissions to allow the system to write in the "images" folder.</span><br />';}
fwrite($lastpathloadtimefile,$nowtime);
fclose($lastpathloadtimefile);
//get current path
$_nodesforum_mysterypath=glob($_nodesforum_code_path.'images/*');
$_nodesforum_mysterypath=$_nodesforum_mysterypath[0];
if($lastglobtime<($nowtime-15) && $lastpathrotationtime<($nowtime-(60)))
{
    //if last glob older than x seconds change path
    $newmystery=$_nodesforum_code_path.'images/_'.rand(111111,999999);
echo 'will rename mystery folder from '.$_nodesforum_mysterypath.' to '.$newmystery.'<br />';
    rename($_nodesforum_mysterypath,$newmystery);
    $_nodesforum_mysterypath=$newmystery;
    //write time of last rotation
    $lastpathrotationtimefile=@fopen($_nodesforum_code_path.'images/lastpathrotationtimefile','w');
    fwrite($lastpathrotationtimefile,$nowtime);
    fclose($lastpathrotationtimefile);
}



maybe just comment out this part of the code in your pre_output.php and put this one under for the test and once were finished testing remove the test version and uncomment the original

all that i changed in this "test" version of this code is i reduced the time it will wait to rotate the mystery folder (every minute instead of every day) and made it so that when it does the rotation it will output on the page that its doing it and whats the "from" and "to" name

so what you should expect to see if you try that test code is when you load a the page, max once every 60 seconds (if theres lots of ppl on your site someone else could get it) when the anti-leech code tries to rename your mystery folder in your images folder you will see it written on top of the page. then once you see that you should go into your images folder and double check that everything really happened as planned.

when it says: will rename mystery folder from path1 to path2 you can go check in your images folder and make sure that path1 isnt there anymore and that path2 is there and the only one. and that should help us see whats going on in there.





wassaa


test: test
post #156 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi envis,

Ok so I have changed the pre output file to the new testing script and deleted all other image folders and just left the one that is being used at the moment.

I have tested the image upload and the folder changes the image is deleted and the new image saved under the new changed name folder and there is still only 1 image folder so that’s good news.

I think that the problem began when I started uploading my site to 2 separate root folder locations (I wonted to run 2 identical sites to reduce the load on the one site – this will not work due to the changes in the forum folder it self would have been ok if only the database updated) then as changes to the site began and I started to put and get from both sites the extra folders started to build up.

Although I tried deleting all files uploaded to the .org site and uploaded them again from the .com site so I though this would be ok until I set both sites to run from the one images folder but I guess I was wrong due to the fact I missed that the images folder changed names. My Bad sorry. This would explain the mass of image folders as each time I uploaded the forum the image folder was already a new name so the folder was added not replaced.

I will leave the test code in place until I here back from you just in case I am missing anything else.

Again many thanks for your time and help.


Jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #157 permalink
member since:
folders:
10
posts:
22
replies:
75
If now that you removed all extra copies of your images folder contents and now its able to rename without creating more copies, then it looks good, you can go back to the original anti-leech code (changing the path once per day instead of every minute, will allow clients to cache the images for a bit longer)

---------------------------

i dont wanna tell you how to run your own site but i must admit that i dont really understand how 2 identical sites on the same server would reduce your load. apache/php theyre pretty fast. but if you make half the ppl load 1 file and half the ppl load another, if anything it can only reduce your servers ability to cache these files.

its like its easier to make 40 hamburgers than 20 hamburgers and 20 hot dogs.

in my personal experience, when your site gets lots of traffic, its MYSQL thats gonna start using a lot of CPU (of course thats different for all sites depending how they are built). the solution is to make custom caches.

example if a page makes multiple DB readings to build itself, make it that it builds all itself in a var and then save the result in a file and output it on the page too. then everytime that page is loaded look if you got a cached save that is less old than lets say 5 minutes and use the cache if its less old than 5 minutes. (caps that whole process to be ran max once per 5 minutes no matter how much traffic you got)

well thats one of my personal tricks. works really great on my sites.

also having 2 version of your site will force you to do every future update in double. that doesnt sound too good to me

heres an example of an experimental site of mine that has 2 names:

http://atsameip.com/ http://onsameip.com/

(PS thats not 1 of my big sites thats really just an experimental one dont judge me on that)

in fact its only 1 site cos i dont like to work in double (gotta be efficient to accomplish something and working in double goes against efficiency) but im using PHP to load a different name depending on the domain. i could go further and make PHP load different colors for each domain ect.

but anyways thats just my 2 cents. your site is looking good! also maybe your method to reduce server load could work in ways that i dont understand. i dont pretend that im extremely experienced in all this. just a noob who likes to program and i learned all i know on my own during the last 3 years, before that i couldnt program at all. (learned from w3schools and random googling..)

thanks for giving a try to my forum script. and if you have any other problem dont hesitate to ask me here

also stay tuned as im still planning a lots of updates for the future!

wassaa


test: test
post #159 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi Envis,
Ill change the code back now thank you for the advice I was already starting to think it was a bad idea trying to have 2 sites running on the same server its not something iv done in the past and I don’t think it will be something I try in the future your right it starts becoming a pain updating 2 sites that have changing content.

I though that a good addition to the forum would be listing how many guests and members are currently looking or logged in to the forum just an idea maybe for a future version any ways thanks again for all your help and advice and I look forward to see how the forum progresses

If I come across any other problems ill let you know.

Many Thanks

Jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #160 permalink
member since:
folders:
10
posts:
22
replies:
75
cool!

you know having an *optional online status was in my plans already for 2.0 (optional cos some sites that already have online status on their own user system might prefer not having it in double).

but your idea to show how many users/guests online goes right along with it. And its also something that ive seen regularily on other popular forum software. So its added to my list. thanks for the good idea

wassaa


test: test
post #161 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi envis,
I have just noticed or maby im missing somthing but how does someone find other peoples forum home pages?. I had to take a look at your user id then change the number in the explorer bar from the address of my home page.
Please can you let me know if im just being dum lol

Many Thanks


Jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #162 permalink
member since:
folders:
10
posts:
22
replies:
75
you can find people's pages by clicking their name, like right here on the left side of this post you see my pic and my name under it, just click my name and that will bring you to my page. my name also appears next to the folders i create.

wassaa


test: test
post #163 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi envis,
i agree but that only works if you are looking at a post of theres already but what if they only post on there home page how will you find there page with out already knowing its there i can look at folders on the server but only i can do that how do members and guests know what other forum pages are there.

many thanks


jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #164 permalink
member since:
folders:
10
posts:
22
replies:
75
well if someone posts on their own forum page but nowhere else on the forum there are less chances that people land on their forum page, but the stuff that they talk about in posts that they post on their own forum page can still come up in the search results, so thats a way that ppl could land on their forum pages.

but for the moment there are no official way of browsing the registered users.

but since the forum uses your site's user system you can make your own system to browse the users in your site and you can link to their forum pages by appending their uniqueID to mysite.com/my_forum_url?_nodesforum_node=u

like in this link: http://home.nodesforum.com/demo?_nodesforum_node=u1 in this example my userID is 1, but this forum here uses the forums user system, on your site you must use your own site's user table's uniqueID cos thats what the forum uses. the forum has its own users table but it is not used at all when you use your own user system it only uses your own users table.

i guess in a way its a bit of a blind user system from the forum, but while the forum offers no way of seeing what users exist at the moment, it does allow you, if you even stumble on a user that you wouldnt want to post on your forum, to remove all the posts from this user from a certain folder but also from the whole forum if you do it from the root. you can also ban this user and optionally his IP from the forum either from a certain folder or from the whole forum too.

you can also see the list of everything beeing posted anywhere in the forum by looking at the post history of the root folder (the link to do that is all the way at the bottom page of the forum home page and says "see the posts history of this folder and its children") but only people who have moderator rights on the root folder can look at that.

but im not exactly sure what it is that you have in mind. im open to suggestions.

wassaa


test: test
post #165 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi Envis,
Thanks again for the advice ill look at it today see what i can come up with your idea should work with the right code. I will let you know how it goes maby the code will drop into your forum as well to link to its own user table with a few little changes.

Many Thanks


Jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #166 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi Envis,
Ok I have now solved the problem and coded my own user forum home page list it works across your forum code and my user system IV just added it below the forum in a scrolling list.

here is the link http://www.recyclemefree.com/forum.php

thanks for the idea if you wont to take a look at the code let me know


jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #167 permalink
member since:
folders:
10
posts:
22
replies:
75
yea i see it, simple but efficient.

maybe sometime you might need to cut down the list in pages if you end up getting a lot of users though.

wassaa


test: test
post #168 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi envis,
I agree iv not really decided yet how to style and display the members results but for now it works and solves the issue

its something to build upon im going to adapt the script and add in number of members and guests loged in

many thank


jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #169 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi Envis,
Is there a Link Target tag in the bbcode i don't seam to be able to find it and i need to set a link on a signature with out setting the main div

many Thanks

jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #172 permalink
member since:
folders:
10
posts:
22
replies:
75
quote from jim on post #172
Is there a Link Target tag in the bbcode


well yes and no.

no:
i chose to not provide a target attribute on my bbcode link tag cos i prefer to force all user posted links to open in a new window. just a way to not lead ppl away from my site.

yes:
on the other hand ppl who have the power of using the HTML tag can do anything HTML allows in their posts.
if you want a link that has a target set to "_self" for example, you can just do it with the HTML tag like this:

example:
test

code:
[html]<a href="http://abc.com/" target="_self">test</a>[/html]


wassaa


test: test
post #173 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi Envis,
Yes but in the signature it does not seam to work i am trying to get around the forum user homepage not yet having a description or about section so i have 1 user using 2 accounts 1 he has set his signature as a about us and the other account he uses to post so he does not have the whole about bit after each post and can use a proper signature.


Many Thanks

Jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #174 permalink
member since:
folders:
10
posts:
22
replies:
75
hmm im not sure why it doesnt work in the signature im trying it here and it works as you can see in my signature. is it possible that the user that has the HTML that doesnt work doesnt have the power of using the HTML? cos only the main admin has that power by default, others need to receive it.

wassaa


test: test
post #175 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi Envis,
I over looked html permissions on other users so far only myself has full access ill take a look a feature i missed.


Thanks Again

Jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #176 permalink
member since:
folders:
0
posts:
0
replies:
27
Hi Envis,
One of my forum members is having problems embedding the following Google maps code any suggestions? I had a look around the forum came across a few google maps but now info

http://www.recyclemefree.com/forum.php?_nodesforum_node=u42​

This is what he sent me

[GOOGLE_MAPS]

src="http://maps.google.ca/maps?f=q&source=s_q&hl​=en&geocode=&q=472+rupert+st+thunderbay&sll=49.8​91235,-97.15369&sspn=40.562697,78.222656&ie=UTF8&​;hq=&hnear=472+Rupert+St,+Thunder+Bay,+Thunder+Bay+Distr​ict,+Ontario+P7B+3X9&t=h&ll=48.426201,-89.243302&​;spn=0.019935,0.036478&z=14&iwloc=A&output=embed​"></iframe><br /><small><a href="http://maps.google.ca/maps?f=q&source=embed&hl​=en&geocode=&q=472+rupert+st+thunderbay&sll=49.8​91235,-97.15369&sspn=40.562697,78.222656&ie=UTF8&​;hq=&hnear=472+Rupert+St,+Thunder+Bay,+Thunder+Bay+Distr​ict,+Ontario+P7B+3X9&t=h&ll=48.426201,-89.243302&​;spn=0.019935,0.036478&z=14&iwloc=A" style="color:#0000FF;

[/GOOGLE_MAPS]


unable to embed this

it looks like he is trying to put the map inside his signature

Thanks


Jim

Recycling is Good for You Me and Our Planet.

Visit the Recycle Me Free website www.recyclemefree.com and take 5 minutes to think how you can help our planet.
post #179 permalink
member since:
folders:
10
posts:
22
replies:
75
code:
[GOOGLE_MAPS]

src="http://maps.google.ca/maps?f=q&source=s_q&hl​ =en&geocode=&q=472+rupert+st+thunderbay&sll=49.8​ 91235,-97.15369&sspn=40.562697,78.222656&ie=UTF8&​ ;hq=&hnear=472+Rupert+St,+Thunder+Bay,+Thunder+Bay+Distr​ ict,+Ontario+P7B+3X9&t=h&ll=48.426201,-89.243302&​ ;spn=0.019935,0.036478&z=14&iwloc=A&output=embed​ "></iframe><br /><small><a href="http://maps.google.ca/maps?f=q&source=embed&hl​ =en&geocode=&q=472+rupert+st+thunderbay&sll=49.8​ 91235,-97.15369&sspn=40.562697,78.222656&ie=UTF8&​ ;hq=&hnear=472+Rupert+St,+Thunder+Bay,+Thunder+Bay+Distr​ ict,+Ontario+P7B+3X9&t=h&ll=48.426201,-89.243302&​ ;spn=0.019935,0.036478&z=14&iwloc=A" style="color:#0000FF;

[/GOOGLE_MAPS]



this code does not work because it is incomplete

a complete embed code from google will look like this


code:
[GOOGLE_MAPS]<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/?ie=UTF8&ll=37.0625,-95.677068&spn=34.313287,56.513672&t=h&z=4&output=embed"></iframe><br /><small><a href="http://maps.google.com/?ie=UTF8&ll=37.0625,-95.677068&spn=34.313287,56.513672&t=h&z=4&source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>[/GOOGLE_MAPS]





View Larger Map

notice that the google embed code starts with <iframe width="425" height="350" fram..... and has all those things that are not found in the code that your user is using. it is important obviously to take the entire embed code and place it between the google_maps tags. somehow your user most have lost a part of the embed code tag, maybe the user did not select the complete tag correctly of something...

wassaa


test: test
post #180 permalink
please login to reply
previous | page 3 of 4 | next

moderators of this post

al (level: ∞)
powered by Nodesforum