Koobazaur
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Cron Manager - debug & control] Fatal errorHaving the same issue. Any fix yet? Thanks!
Forum: Fixing WordPress
In reply to: Media Sizes and Custom Theme Image Sizes being limited to 500pxblah, figured it out. the theme was setting $content_width to 500, which apparently is some global var used by WordPress to trim image sizes.
Forum: Fixing WordPress
In reply to: Media Sizes and Custom Theme Image Sizes being limited to 500pxFYI my plugins are:
Akismet, BackWPUp, Contact Form 7, Google Analytics by Yoast, Kimili Flash Embed, PS Disable Auto Formatting, Redirection, Regenerate Thumbs, Sociable and Yoast SEO.
Theme is a mod of the Caroline theme (https://ww.wp.xz.cn/themes/coraline/)
Don’t see anything that should have been an issue, ugh!
I have also submitted a support ticket as you advised.
Hello,
Sorry for bringing this back up. We did enable EXIF ( V1.4 ) but we are experiencing the same issue. The odd thing is, the meta is preserved fine on another dev machine.
Would anything below, as reported by NGG, be a potential culprit?
Operating System : Linux (64 Bit)
Server : Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9
Memory usage : 7.84 MByte
MYSQL Version : 5.1.73-cll
SQL Mode : Not set
PHP Version : 5.4.33
PHP Safe Mode : Off
PHP Allow URL fopen : On
PHP Memory Limit : 2000
PHP Max Upload Size : 128M
PHP Max Post Size : 256M
PCRE Backtracking Limit : 10000000
PHP Max Script Execute Time : 300s
PHP Exif support : Yes ( V1.4 )
PHP IPTC support : Yes
PHP XML support : Yes
Graphic LibraryGD Version : bundled (2.1.0 compatible)
FreeType Support : No
T1Lib Support : No
GIF Read Support : Yes
GIF Create Support : Yes
JPEG Support : Yes
PNG Support : Yes
WBMP Support : Yes
XPM Support : Yes
XBM Support : Yes
JIS-mapped Japanese Font Support : NoActually I just tested on another server and the IPTC meta was preserved. So it seems it is a server-side issue. Looking at the NGG homepage I noticed:
PHP Exif support : No
PHP IPTC support : Yes
PHP XML support : YesSo I can see why it would erase the Exif data, but it should still keep the IPTC? What would we need to add to the server to enable the EXIF support?
Cais,
Thank you for the quick response. I will ask my client if he is comfortable giving those out. In the meantime, is there any info I can provide that might narrow it down? The plugin homepage shows “GD Version : bundled (2.1.0 compatible)” and all the libraries/formats supported except FreeType.
Also, just to make sure, I am referring to the metadata embedded in the file itself; NextGEN does seem to remember it fine when I click on the Meta button in the Gallery manager, but when I right-click-save the image, it no longer has the info. We are using just regular JPGs.
Best,
JakubInvestigating further, I found that the IPN handler does NOT handle subscription cancellation messages as well, so if someone cancels it via their PayPal account, it will incorrectly send emails saying a payment failed and will not remove said user from the member list. Are there any plans to address this?
I can hack in the support for it into the ipnhandler.php myself, but I figure it’s a pretty major issue, and I don’t want to be modifying your code too much in case of future upgrades.
I need to build my own user infrastructure, so being able to implement sessions my way without having to worry about WordPress erasing my data at some point in time for some random reason is really helpful.
So, apparently, WordPress doesn’t do anything with sessions. I’ve been putting a session_id(); code almost everywhere in the rendering stage (my theme) and it’s always null. That and I never see any PHPSESSIONID cookies in my browser either. This leads me to a belief that I can implement my own Session framework without having to worry about WordPress interfering with it. w00t!
What I meant was, which hook I use to call my session_start(); either wp_header or wp_footer.
Forum: Plugins
In reply to: User account and access managament system?Sorry, I started a new topic on this with a more to-the-point question.
Forum: Plugins
In reply to: User account and access managament system?Thanks for the incredably helpful reply.
So, looking at the fact there are some Cart plugins, it leads me to a believe there HAS to be a way to make this work. Unfortunately I could not test them because the carts I tried would give me constant errors.
So it turns out I can check session variables in a plugin. Bu t if I try session_start() in it, I get this warning:
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\wordpress\wp-includes\l10n.php:36) in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\wordpress\wp-content\plugins\session_tester.php on line 49
Any idea why? Is there any documentation on what wordpress does with sessions (I don’t wont to interfere with WordPress using my own code).