Author Topic: [No support!] The only place to talk with the author for now...  (Read 851954 times)

0 Members and 2 Guests are viewing this topic.

Offline Nao/Gilles

  • Admin
  • *
  • Posts: 10700
  • Gender: Male
  • Dinosaure de l'animation japonaise, du Net, et de la connerie.
    • View Profile
    • Cynacittà @ noisen
Haven't posted here in a while...
Hopefully some users will receive a notification for a bump to this topic, and will pass the word around!

For the first time in my life (I'm serious!), I'm putting something on sale. Aeva Media normally costs $9.99 for one year of downloads & support, it's now $0.99 (90% off!) for a day -- good enough to download & legally own a copy on your forum -- and $2.99 for a year. Given that I'm not gonna update it very often, it's probably best for you to just take a $1 copy and then pay again if you need support. Then again, assuming the sale isn't over by then.

The main reason is simply that it's been quite a few years since I last did serious work on AeMe, even the Wedge version (which is free) doesn't get more than security updates & fixes, so this is a way to make up for it!
If you have a SMF forum running Aeva Media 1.x, it's a good opportunity to get its premium features for next to nothing.

I'm not setting a definite duration for the sale (it will be at least a week, possibly a month), so enjoy it while it lasts!

PS: as I mentioned-- please spread the word! I'm not going to do it, I'm no longer on the official SMF forums or anywhere else for what it's worth.
« Everyone knows rock attained perfection in 1974. It's a scientific fact. »

Suz

  • Guest
  •  
For the first time in my life (I'm serious!), I'm putting something on sale. Aeva Media normally costs $9.99 for one year of downloads & support, it's now $0.99 (90% off!) for a day -- good enough to download & legally own a copy on your forum -- and $2.99 for a year. Given that I'm not gonna update it very often, it's probably best for you to just take a $1 copy and then pay again if you need support. Then again, assuming the sale isn't over by then.
I can't figure out where to go to buy it.  I see the free versions that can be downloaded and I've joined the Wedge website, but I just can't find a place to purchase this smf mod.

Suz

  • Guest
  •  
I found it. 
Posted on 19 September 2017 à 20h36

Well, I ordered it and i paid for it but I have no clue how to download it.

This is very troublesome.

Well, I purchased it at 9.99 and my profile over at the Wedge website says I have the subscription, but I can't for the life of me figure out where exactly v2.0 is to download and it doesn't appear that anyone is on either website.

Lovely.  Can we please put ONE MORE confirmation widget on posting?
« Last Edit à 21h16 »

Offline Nao/Gilles

  • Admin
  • *
  • Posts: 10700
  • Gender: Male
  • Dinosaure de l'animation japonaise, du Net, et de la connerie.
    • View Profile
    • Cynacittà @ noisen
Well it's in the media section... it has an aeva folder. Then an aeva 2.0 folder. (?)
« Everyone knows rock attained perfection in 1974. It's a scientific fact. »

khollcroft

  • Guest
  •  
Greetings, I am using AVEA Media v 1.4w on a forum running  SMF 2.0.15

For some time now I have been seeing an error originating from the media code I believe. The error is

8192: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead

usually from the Avea-Embed.php file.  Was hoping this could be resolved, perhaps with an update. I have no problem paying for the update.

Look forward to your reply.

Cheeers

Offline Nao/Gilles

  • Admin
  • *
  • Posts: 10700
  • Gender: Male
  • Dinosaure de l'animation japonaise, du Net, et de la connerie.
    • View Profile
    • Cynacittà @ noisen
You should find this at line 378 in that file...

Code: [Select]
$input = preg_replace('`(#[^"<]*)`e', 'str_replace("~", "-", "$1")', $input);
You can replace with, for instance:

Code: [Select]
$input = preg_replace_callback('~#[^"<]*~', function ($match) { return strtr($match[0], '~', '-'); }, $input);
This is taken straight from Wedge (wedge.org, which has Aeva Media 2.x directly embedded in it), and should only work on PHP 5.3+, but 99% of servers have it by now.

I'm surprised I didn't backport this into v1.4 and v2.0, though. Not that anyone complained...
« Everyone knows rock attained perfection in 1974. It's a scientific fact. »