Messages - Arebias

Pages: [1]
1
Aeva Media / Re: Compatibility problems with RC4 and PortaMX ?
« le: 11 Décembre 2010 à 0h51 »

Yeah I got the version thing figured out now. I installed the 'lite' version on my other test site and was able to make the changes to the code that the other guy suggested and that works just fine for that particular site in question with that particular format of url.

Good luck on future work and thanks for all the work in the past.

2
Aeva Media / Re: Compatibility problems with RC4 and PortaMX ?
« le: 10 Décembre 2010 à 22h35 »
Well yes I guess I do. I am working on that right now. I don't have that Sources/Subs-Aeva.php on the version I installed. lol

I don't know where that code is located. I am trying to find it now.

I don't exactly understand the whole situation between you guys and SMF so I apologize if I came in here and was interpreted as trying to cause problems. My intention was just to bring up a problem that I was experiencing, as well as others, without trying to point fingers. I appreciate what all the modders and coders are able to do and maybe one day I can reach that level also before I die. I am getting a late start. lol


And btw; I did try your code fix and it did not work on that particular link format.



3
Aeva Media / Re: Compatibility problems with RC4 and PortaMX ?
« le: 10 Décembre 2010 à 22h09 »
Oh, and that's not an Aeva bug you refer to, you cannot put a [url] tag inside an [img] one, plain and simple. The parser should be preventing it from happening. As you would find if you tried it on that forum, i.e. one without Aeva.


Try it on simplemachines.org. They don't have Aeva. Funny though, it won't work there either. I wonder why... is it because it's an SMF issue with your messed up code perhaps?

Even the SMF team are telling you it's not an Aeva bug!
That is not true. In a few parts.

This code does work just fine on the SMF site.

[center][url=http://www.gametracker.com/server_info/63.251.20.161:27960/][img][url=http://cache.[url=http://www.gametracker.com/server_info/63.251.20.161:27960/b_560_95_1.png]www.gametracker.com/server_info/63.251.20.161:27960/b_560_95_1.png[/url]]www.gametracker.com/server_info/63.251.20.161:27960/b_560_95_1.png[/url][/img][/url][/center]

Shows up just fine!

And now that I removed Aeva 100% from my site it works just fine there as well.


As far as the team not recognizing this as being a SMF problem, I use that word loosely because they don't see this as a problem since this is not a widely used format for URL's, they did if you read the whole post'.

Didn't I just go over this with someone?

This is a problem with smf (sort of) not with aeva.
mostly, it's a problem with that website ont using a standard url address format.

The problem is that smf interprets www as the START of a web address,
so it is attempting to make the URL that is SEES into a link because that
cache.www screws it up.


I honestly don't call this an actual SMF "bug" and I would prefer telling the
stupid people who used that format or url to use a proper format.

And as far as the code being involved in this. It looks as though it is this code in Sources/Subs-Aeva.php:


// Links urls that haven't already been linked
function aeva_autolink_urls($input)
{
   global $context, $modSettings;

   // Should haven't got here if autolinking of urls is disabled
   if (empty($modSettings['autoLinkUrls']))
      return $input;


Because when changed to this it works:

// Links urls that haven't already been linked
function aeva_autolink_urls($input)
{
   global $context, $modSettings;

   // Should haven't got here if autolinking of urls is disabled
   if (empty($modSettings['autoLinkUrls']))
      return $input;
     
   if (preg_match("/gametracker/i", $input))
      return $input;


The code changes and ID of the location causing problems is courtesy of XerraX btw



4
Aeva Media / Re: Compatibility problems with RC4 and PortaMX ?
« le: 10 Décembre 2010 à 21h09 »
The following is a quote from me on the SMF site.

This is located here: http://www.simplemachines.org/...c=200401.msg2877373#msg2877373
I am here to report a bug with Aeva as it relates to 2.0 RC4. I tried the official site for the mod at http://aeva.noisen.com/ but I don't seem to be able to create a new topic on that immensely confusing site.

Here is a link to the thread that has all the problems associated with the 'Bug'. I assume it is a bug with Aeva but it could be a bug with SMF. I am not knowledgeable enough to determine that. After reading your topic on the relationship with the SMF team I will let you determine that.

http://www.simplemachines.org/...unity/index.php?topic=412512.0
Posté : 10 Décembre 2010 à 21h07


Testing that bug here on your site with Aeva installed.





Yep. It's here too!



Pages: [1]