AeonOfTime
Forum Replies Created
-
Forum: Plugins
In reply to: [EVE ShipInfo] Fitting import din’t workeHi screeyed,
I released v2.1, which should fix the issue you had.
Regards,
Aeon.
Forum: Plugins
In reply to: [EVE ShipInfo] Fitting import din’t workeHi screeyed,
thanks for the bug report, and especially the screenshots – that’s very helpful.
I will have a look this weekend, I’m sure I can fix that quite easily.
Forum: Plugins
In reply to: [EVE ShipInfo] 500 server errorHeya,
Sorry for the delay, I was away on holiday – seeing that the error happened while unserializing a data file of the plugin, I’m assuming you have the same problem that others also had, namely not enough memory to load all the data.
I’m working on a new version that will replace the data files with custom database tables to solve this issue, but in the meantime you can try increasing WordPress’ memory limits.
Add the following lines into your wp-config.php file (before the comment line where it says to stop editing):
$limit = 180; // megabytes define('WP_MEMORY_LIMIT', $limit.'M'); define('WP_MAX_MEMORY_LIMIT', $limit.'M');If it does not work with 180 MB, try a really high number like 600, and if it works then, try decreasing it again to an amount that works.
Regards,
Aeon.
Forum: Plugins
In reply to: [EVE ShipInfo] Download link for images failingNo final ETA yet sadly, life is crazy at the moment 🙂
Forum: Plugins
In reply to: [EVE ShipInfo] Download link for images failingHi jackservvs,
I just tried the images download with three different browsers without problems. I don’t quite see what the problem could be here, but you could try using this direct download link:
http://www.aeonoftime.com/EVE_Online_Tools/EVE-ShipInfo-WordPress-Plugin/releases/1.8-gallery.zip
Regarding the multiple fittings, thanks for telling me! I’m working on a new version at the moment, and will include a fix for that.
Regards,
Aeon.
Forum: Plugins
In reply to: [EVE ShipInfo] can we get this working?Hi hybrid,
I am working on an update that will solve the memory issues. It will take a little while still however, me being currently swamped at work.
Just to make sure it’s not a separate issue however, could you send me a screenshot of a fit that has been cut off? You can send it to eve{at}aeonoftime.com.
Regards,
Aeon,
Forum: Plugins
In reply to: [EVE ShipInfo] can we get this working?Hi gmakstutis,
I have had several people complain of this issue. I have tested the plugin with different configurations, and found that the PHP memory limit was the reason in several cases.
The new version, v1.10, has a failsafe built in for when the plugin does not have enough memory. You should at least get an error message now instead of just the site seemingly stopping in mid stride.
To fix the memory issue, you can try putting the following lines into your
wp-config.phpfile:
$limit = 160; // megabytes
define('WP_MEMORY_LIMIT', $limit.'M');
define('WP_MAX_MEMORY_LIMIT', $limit.'M');
Please test this and tell me if that fixed your problem.
Regards,
AeonOfTime.
Forum: Plugins
In reply to: [EVE ShipInfo] need helpI’ll mark this as resolved – just comment here again if you still have trouble.
Forum: Hacks
In reply to: Safeguarding local plugin files during upgradeHi bcworkz,
Yes, I opted for the upload folder variant – it’s cleaner this way, and less error prone. The plugin just has to check if the target folder exists (the user has to upload the files manually), and a plugin update does not affect the archives.
Thanks 🙂
Forum: Hacks
In reply to: Safeguarding local plugin files during upgradeHi Marios,
no, they are not too big individually, but it is a large collection of about 800 screenshots that weigh in at 135 MB in total (it’s a collection of spaceship screenshots from a game). I made the screenshots an optional download that you have to install into the plugin’s folder manually.
…And of course that folder gets deleted each time you update the plugin via WordPress, so I would like to find a way to make it independent of the plugin.
Forum: Plugins
In reply to: [EVE ShipInfo] need helpHi nefrit,
Sorry, I did not see your post until today – I always assumed I would get an email notification for new support threads as plugin author. Apparently not 😐
Do you still have the same issue with the v1.9 release?
I subscribed to this topic, so feel free to reply and I’l see what I can do if it still does not work.
Regards,
Aeon.
Forum: Fixing WordPress
In reply to: Errors in new upgrade for 3.4.1 in user.phpI had the same issue, what fixed it for me was to download the full 3.4.1 package from the official website, and replace all files of my wordpress install with those from the archive.
After that the update script upgraded the database and everything runs fine.