[bd] Data Storage [Deleted]

I need to disable (uninstall) this addon as to use the xenforo per default settings. How can i do that?

Simply move all the files from the remote server, back to the data directory. Remove additions to the config.php and uninstall the addon.

In the case you're using an Amazon S3 bucket, you can move all the files back using the AWS CLI. Installation guide here: http://docs.aws.amazon.com/cli/latest/userguide/installing.html

Once that's done, run "aws configure" and add your access key and secret key in. Then run "aws s3 sync s3://mybucket ." to download all of the files from the s3 bucket.
 
Hey Xfrocks!

We purchased your addon and install on our local Xenforo dev site. After Install and set this code to config file:

$config['bdDataStorage'] = array(
array(
'type' => 'ftp',
'host' => '',
'username' => '',
'password' => '',
'path' => '',
'url' => '',
'port' => 21,
//'passive' => true,
'backup' => 'data',
),
);

with info to my FTP.

After install and move data files from data to the directory on the server I see the avatar show well however I cant change the avatar. I loads and tell successfully uploaded the file but avatar not changed.

Also I cant logged out user after the plugin installed.

Please could you help?

Thank you.
 

Attachments

  • Screenshot 2016-06-29 15.59.57.webp
    Screenshot 2016-06-29 15.59.57.webp
    44.1 KB · Views: 8
Hey Xfrocks!

We purchased your addon and install on our local Xenforo dev site. After Install and set this code to config file:

$config['bdDataStorage'] = array(
array(
'type' => 'ftp',
'host' => '',
'username' => '',
'password' => '',
'path' => '',
'url' => '',
'port' => 21,
//'passive' => true,
'backup' => 'data',
),
);

with info to my FTP.

After install and move data files from data to the directory on the server I see the avatar show well however I cant change the avatar. I loads and tell successfully uploaded the file but avatar not changed.

Also I cant logged out user after the plugin installed.

Please could you help?

Thank you.
For detailed support, please use the thread on our website https://xfrocks.com/other/threads/bd-data-storage-paid.194/. Or if you prefer, start a conversation on xfrocks.com :)
 
Cross posting from the XFRocks forum since I need some help with this.

After installing this app, I'm seeing quite a few errors in the server log.

Code:
Zend_Http_Client_Adapter_Exception: Unable to Connect to tcp://s3-us-west-2.amazonaws.com:80. Error #110: Connection timed out - library/Zend/Http/Client/Adapter/Socket.php:235

ErrorException: fopen(/usr/docroot/stormtrack.org/community/internal_data/temp/bddss3df_k1yxXx): failed to open stream: No such file or directory -library/bdDataStorage/StreamWrapper/Abstract.php:533

ErrorException: getimagesize(): Read error! - library/XenGallery/Helper/Image.php:84

ErrorException: copy(/youtube_b-I7TlKzD9A_thumb.jpg): failed to open stream: Permission denied - library/XenGallery/Helper/Image.php:994

Also, here is a link to page with broken images. I confirmed that the broken thumbnails are not in the S3 bucket.
http://stormtrack.org/community/find-new/330292/media

I have [bd] Cache installed as well and I'm wondering if that could be interfering with this plugin. Please advise.
 
Cross posting from the XFRocks forum since I need some help with this.

After installing this app, I'm seeing quite a few errors in the server log.

Code:
Zend_Http_Client_Adapter_Exception: Unable to Connect to tcp://s3-us-west-2.amazonaws.com:80. Error #110: Connection timed out - library/Zend/Http/Client/Adapter/Socket.php:235

ErrorException: fopen(/usr/docroot/stormtrack.org/community/internal_data/temp/bddss3df_k1yxXx): failed to open stream: No such file or directory -library/bdDataStorage/StreamWrapper/Abstract.php:533

ErrorException: getimagesize(): Read error! - library/XenGallery/Helper/Image.php:84

ErrorException: copy(/youtube_b-I7TlKzD9A_thumb.jpg): failed to open stream: Permission denied - library/XenGallery/Helper/Image.php:994

Also, here is a link to page with broken images. I confirmed that the broken thumbnails are not in the S3 bucket.
http://stormtrack.org/community/find-new/330292/media

I have [bd] Cache installed as well and I'm wondering if that could be interfering with this plugin. Please advise.
Looks like a connection issue from your server to Amazon's. How often are you having this issue? In production, it's safe to ignore if it doesn't happen a lot of time. However, if you have a lot of those, you may need to take a look into your network stack.
 
Looks like a connection issue from your server to Amazon's. How often are you having this issue? In production, it's safe to ignore if it doesn't happen a lot of time. However, if you have a lot of those, you may need to take a look into your network stack.

When we have the [bd] Data Storage add-on enabled we see several per day, something like 2-3 per hour. We'll go through the server to rule out any issues there and follow up once done, if necessary. Can I start a Conversation with you on the support forum if we need further guidance?
 
When we have the [bd] Data Storage add-on enabled we see several per day, something like 2-3 per hour. We'll go through the server to rule out any issues there and follow up once done, if necessary. Can I start a Conversation with you on the support forum if we need further guidance?
Yes, sure. Also, it's worth updating to the latest version before investigation too. This version has improvements for bad network situations.
 
Just ran the thumbnail rebuild with similar setup as yours and it went without issue. My guess is you have at least one missing attachment (local or S3, doesn't matter) and XFMG choked on that one as soon as it reached that particular file and stop running further. Please start a conversation with me, we will discuss further how to pin point that file and fix it.

over a year later and i'm having another look at this problem...

What seems to be happening is as soon as [bd] Data Storage is enabled, creation of the second, smaller, XFMG thumbnail (the one with the _thumb.jpg filename) stops happening, both on initial addition of the media and if 'Rebuild XenForo Media Gallery Thumbnails' is run manually.

No errors in the error log though.

The only solution i have right now is to disable the addon, run the 'Rebuild XenForo Media Gallery Thumbnails', then transfer the images to S3 manually. Not ideal.
 
over a year later and i'm having another look at this problem...

What seems to be happening is as soon as [bd] Data Storage is enabled, creation of the second, smaller, XFMG thumbnail (the one with the _thumb.jpg filename) stops happening, both on initial addition of the media and if 'Rebuild XenForo Media Gallery Thumbnails' is run manually.

No errors in the error log though.

The only solution i have right now is to disable the addon, run the 'Rebuild XenForo Media Gallery Thumbnails', then transfer the images to S3 manually. Not ideal.
That's unacceptable. Do you have test/staging environment? Or can you enable the add-on debug mode before testing again? Please do not enable debug mode on production server ever since it will generate huge log file. To enable debug mode, add this to your config.php

PHP:
$config['bdDataStorageDebug'] = true;
 
That's unacceptable. Do you have test/staging environment? Or can you enable the add-on debug mode before testing again? Please do not enable debug mode on production server ever since it will generate huge log file. To enable debug mode, add this to your config.php

PHP:
$config['bdDataStorageDebug'] = true;

no staging server but i enabled debug mode for a few minutes and started thumbnail regeneration. Again, no mention of any *_thumb.jpg files:

Code:
2017-06-15 07:48:07 url_stat/hit ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg array
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:08 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg true 0.044629096984863
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg array
2017-06-15 07:48:08 _tryDownloadFile/hit xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY
2017-06-15 07:48:08 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY 1.9073486328125e-5
2017-06-15 07:48:08 _tryDownloadFile/hit xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY
2017-06-15 07:48:08 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY 2.0980834960938e-5
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg array
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:09 url_stat/hit ds0://root/bdCache/css/1497480993/f3d89fc4066059aedd279cd4a9bab872.css array
2017-06-15 07:48:09 url_stat/hit ds0://root/bdCache/css/1497480993/acbbdf6353f7bbdeea0d759e157b82e3.css array
2017-06-15 07:48:09 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg true 0.046200037002563
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg array
2017-06-15 07:48:09 _tryDownloadFile/hit xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go
2017-06-15 07:48:09 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go 1.7881393432617e-5
2017-06-15 07:48:09 _tryDownloadFile/hit xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go
2017-06-15 07:48:09 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go 2.0980834960938e-5
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg array
2017-06-15 07:48:10 _cacheLoad/hit /home/thumped/public_html/bbs/internal_data/ds0/bdCache/css/1497480993/379bd9eb292c178d37b6f3a52a6f295b.css.txt too small
2017-06-15 07:48:10 url_stat/_tryDownloadFile ds0://root/bdCache/css/1497480993/379bd9eb292c178d37b6f3a52a6f295b.css false 0.040755987167358
2017-06-15 07:48:10 _isDirectory ds0://root/bdCache/css/1497480993/379bd9eb292c178d37b6f3a52a6f295b.css false 7.8678131103516e-6
2017-06-15 07:48:10 _cacheLoad/hit /home/thumped/public_html/bbs/internal_data/ds0/bdCache/css/1497480993/e74b1810493f59473c30da588b73d9a0.css.txt too small
2017-06-15 07:48:10 url_stat/_tryDownloadFile ds0://root/bdCache/css/1497480993/e74b1810493f59473c30da588b73d9a0.css false 0.03498101234436
2017-06-15 07:48:10 _isDirectory ds0://root/bdCache/css/1497480993/e74b1810493f59473c30da588b73d9a0.css false 6.9141387939453e-6
2017-06-15 07:48:10 _cacheLoad/hit /home/thumped/public_html/bbs/internal_data/ds0/bdCache/css/1497480993/e71a1f440c5146621c390a7dd79cbcf0.css.txt too small
2017-06-15 07:48:10 url_stat/_tryDownloadFile ds0://root/bdCache/css/1497480993/e71a1f440c5146621c390a7dd79cbcf0.css false 0.034908056259155
2017-06-15 07:48:10 _isDirectory ds0://root/bdCache/css/1497480993/e71a1f440c5146621c390a7dd79cbcf0.css false 7.1525573730469e-6
2017-06-15 07:48:10 deleteDownloadedFiles /home/thumped/public_html/bbs/internal_data/temp/bddss3df_y2f58K true
2017-06-15 07:48:10 deleteDownloadedFiles /home/thumped/public_html/bbs/internal_data/temp/bddss3df_icxVFy true
2017-06-15 07:48:10 deleteDownloadedFiles /home/thumped/public_html/bbs/internal_data/temp/bddss3df_4wCVkm true
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:10 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg true 0.058037996292114
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg array
2017-06-15 07:48:10 _tryDownloadFile/hit xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W
2017-06-15 07:48:10 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W 1.9073486328125e-5
2017-06-15 07:48:10 _tryDownloadFile/hit xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W
2017-06-15 07:48:10 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W 2.5033950805664e-5
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg array
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:12 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg true 0.056938886642456
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg array
2017-06-15 07:48:12 _tryDownloadFile/hit xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF
2017-06-15 07:48:12 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF 1.6927719116211e-5
2017-06-15 07:48:12 _tryDownloadFile/hit xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF
2017-06-15 07:48:12 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF 2.3126602172852e-5
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg array
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:12 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_jtKzkt ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg true 0.068601846694946
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg array
2017-06-15 07:48:12 _tryDownloadFile/hit xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_jtKzkt
2017-06-15 07:48:12 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_jtKzkt 4.1961669921875e-5
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
 
no staging server but i enabled debug mode for a few minutes and started thumbnail regeneration. Again, no mention of any *_thumb.jpg files:

Code:
2017-06-15 07:48:07 url_stat/hit ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg array
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:08 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg true 0.044629096984863
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg array
2017-06-15 07:48:08 _tryDownloadFile/hit xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY
2017-06-15 07:48:08 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY 1.9073486328125e-5
2017-06-15 07:48:08 _tryDownloadFile/hit xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY
2017-06-15 07:48:08 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_FrJIgBK1uN4.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_KUTpqY 2.0980834960938e-5
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:08 url_stat/hit ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg array
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:09 url_stat/hit ds0://root/bdCache/css/1497480993/f3d89fc4066059aedd279cd4a9bab872.css array
2017-06-15 07:48:09 url_stat/hit ds0://root/bdCache/css/1497480993/acbbdf6353f7bbdeea0d759e157b82e3.css array
2017-06-15 07:48:09 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg true 0.046200037002563
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg array
2017-06-15 07:48:09 _tryDownloadFile/hit xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go
2017-06-15 07:48:09 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go 1.7881393432617e-5
2017-06-15 07:48:09 _tryDownloadFile/hit xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go
2017-06-15 07:48:09 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_bs3HkxdhD1M.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_4w70go 2.0980834960938e-5
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:09 url_stat/hit ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg array
2017-06-15 07:48:10 _cacheLoad/hit /home/thumped/public_html/bbs/internal_data/ds0/bdCache/css/1497480993/379bd9eb292c178d37b6f3a52a6f295b.css.txt too small
2017-06-15 07:48:10 url_stat/_tryDownloadFile ds0://root/bdCache/css/1497480993/379bd9eb292c178d37b6f3a52a6f295b.css false 0.040755987167358
2017-06-15 07:48:10 _isDirectory ds0://root/bdCache/css/1497480993/379bd9eb292c178d37b6f3a52a6f295b.css false 7.8678131103516e-6
2017-06-15 07:48:10 _cacheLoad/hit /home/thumped/public_html/bbs/internal_data/ds0/bdCache/css/1497480993/e74b1810493f59473c30da588b73d9a0.css.txt too small
2017-06-15 07:48:10 url_stat/_tryDownloadFile ds0://root/bdCache/css/1497480993/e74b1810493f59473c30da588b73d9a0.css false 0.03498101234436
2017-06-15 07:48:10 _isDirectory ds0://root/bdCache/css/1497480993/e74b1810493f59473c30da588b73d9a0.css false 6.9141387939453e-6
2017-06-15 07:48:10 _cacheLoad/hit /home/thumped/public_html/bbs/internal_data/ds0/bdCache/css/1497480993/e71a1f440c5146621c390a7dd79cbcf0.css.txt too small
2017-06-15 07:48:10 url_stat/_tryDownloadFile ds0://root/bdCache/css/1497480993/e71a1f440c5146621c390a7dd79cbcf0.css false 0.034908056259155
2017-06-15 07:48:10 _isDirectory ds0://root/bdCache/css/1497480993/e71a1f440c5146621c390a7dd79cbcf0.css false 7.1525573730469e-6
2017-06-15 07:48:10 deleteDownloadedFiles /home/thumped/public_html/bbs/internal_data/temp/bddss3df_y2f58K true
2017-06-15 07:48:10 deleteDownloadedFiles /home/thumped/public_html/bbs/internal_data/temp/bddss3df_icxVFy true
2017-06-15 07:48:10 deleteDownloadedFiles /home/thumped/public_html/bbs/internal_data/temp/bddss3df_4wCVkm true
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:10 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg true 0.058037996292114
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg array
2017-06-15 07:48:10 _tryDownloadFile/hit xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W
2017-06-15 07:48:10 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W 1.9073486328125e-5
2017-06-15 07:48:10 _tryDownloadFile/hit xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W
2017-06-15 07:48:10 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_UIdiaf-ltKw.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_ZUXv5W 2.5033950805664e-5
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:10 url_stat/hit ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg array
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:12 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg true 0.056938886642456
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg array
2017-06-15 07:48:12 _tryDownloadFile/hit xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF
2017-06-15 07:48:12 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF 1.6927719116211e-5
2017-06-15 07:48:12 _tryDownloadFile/hit xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF
2017-06-15 07:48:12 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_6EPbTX2zWEY.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_9c84gF 2.3126602172852e-5
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg array
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
2017-06-15 07:48:12 _uploadFile /home/thumped/public_html/bbs/internal_data/temp/bddsaso_jtKzkt ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg true 0.068601846694946
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg array
2017-06-15 07:48:12 _tryDownloadFile/hit xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_jtKzkt
2017-06-15 07:48:12 stream_open/_tryDownloadFile ds0://root/xengallery/youtube/youtube_o4y4GtlMj1oIT.jpg /home/thumped/public_html/bbs/internal_data/temp/bddsaso_jtKzkt 4.1961669921875e-5
2017-06-15 07:48:12 url_stat/hit ds0://root/xengallery/youtube/ array
That log did look good, no error or anything. Since there is no mention of thumbnail I think there might be some other conflict... Are you using XFMG 1.1.13?
 
Hmm, you have [bd] Attachment Store too, right?

i do indeed


[bd] API
1.5.1

[bd] Attachment Store
1.3.0

[bd] Cache
1.2.3

[bd] Data Storage
1.2.3

[bd] Forum Watch
2.1.1b

[bd] Image
1.2.2

[bd] Keyword Alert
1.1.0

[bd] Mails
1.0.1

[bd] Paygates
1.5.2

[bd] Paygates: STRIPE
1.2.0

[bd] Push Notification
2.1.1

[bd] Social Share
2.3.0

[bd] Tag Me
3.2.0

[bd] Widget Framework
2.6.3

big fan of your work :)
 
Top Bottom