rearley
Forum Replies Created
-
Forum: Plugins
In reply to: [Wallet for WooCommerce] Virtual ProductsNO, I don’t want the restriction, but there seems to be one in place. Anytime I place a virtual product, the wallet balance does not get used. I would like to be able to use it for ALL products.
The other thing I am having an issue with, and this could be just how I have started to use it, is slow load times because of the amount of tasks I have created under one project.
Do you have a better suggestion for this? Example, I am building a SaaS platform and I have many MANY tasks. Some assigned to different milestones. I am wondering, with the way the plugin is designed, that I should break it up into many projects, but I don’t see a way to link them.
Thanks for any suggestions on a better way to utilize your plugin.
Thanks for the quick reply and I will keep an eye out for the changes.
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesDan,
Just to add some more fun to this, mine is working again. I started commenting out the thumber class, it worked, so I took the comment out and it still worked. So not sure if HG fixed something or what.Thanks again for your hard work. Starting work on my own plugin for the Little League I help and know it can be some work.
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesPlease have some patience with the developer.
Dan,
So I decided to install fresh copy of WordPress and Document Gallery on a test server using Vagrant. No issues with connections so far and I have xDebugged to crap out of the plugin. So I am stumped why it is occurring on the production side. I am going to try and re-create my production server on my Vagrant box and see what I can find there. Very odd issues..Just as a side not, who having the issue is also hosting on HostGator?
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesOh I understand the work thing. I will play around on my test server when I get some time. It seems like it was when the Thumber stuff was put in place. If I am the trouble case don’t stress. I will try and see what I can see when I get some time. Slammed at work as well and this is for the non-profit local Little League program I help with. I have a workaround for now.
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesCan I ask what that had you change? For some reason I am still having issues and want to look and see what else could be going on if this solves the other person’s issues. I assume it is something in the WP HTTP objects. Not sure if you hook into it at anytime.
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesHere is the settings and I will go look through the logs.
Array
(
[thumber] => Array
(
[gs] => /usr/bin/gs
[active] => Array
(
[av] => 1
[gs] => 1
[imagick] => 1
[thumber-co] =>
)[width] => 200
[height] => 200
)[gallery] => Array
(
[columns] => 4
[order] => ASC
[orderby] => menu_order
[relation] => AND
[limit] => -1
[mime_types] => application,video,text,audio,image
[post_status] => any
[post_type] => attachment
[descriptions] =>
[attachment_pg] =>
[fancy] =>
[new_window] =>
[paginate] => 1
[skip] => 0
)[css] => Array
(
[text] =>
)[meta] => Array
(
[version] => 4.1.9
[donate_link] => https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=EE5LWRLG933EN&lc=US&item_name=Document%20Gallery%20Plugin&item_number=document%2dgallery¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
[items_per_page] => 10
)[logging] => Array
(
[enabled] =>
[purge_interval] => 7
)[thumber-co] => Array
(
[uid] =>
[secret] =>
[subscription] => Array
(
)[direct_upload] =>
[mime_types] => Array
(
))
)
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesHere is two screen shots. One will be JP and the other from the Dashboard of WP.
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesOK, disabled all plug-ins. Enabled DG and Jetpack and was unable to re-connect Jetpack until I disabled DG.
Forum: Plugins
In reply to: [Document Gallery] Connection IssuesWill do. The process I went through to come to the conclusion about this plug in was I disabled one plug-in at a time, tested, enabled and took those steps through all plug-ins. It started working when DG was disabled.
When I get some time I will disable all and enable DG. Maybe a odd conflict going on.
Forum: Plugins
In reply to: [Database Sync] (HTTP 406) Remote site not accessible@rodrigovilla3, No problem, glad I could help.
Forum: Plugins
In reply to: [Database Sync] (HTTP 406) Remote site not accessibleI found the fix to this atleast on HostGator. The issue is their mod_security settings on their shared hosting.
function.php
look for the function dbs_postBelow is what my function looks like. I am sure it can be cleaned up some more but this was just something to get it working.
function dbs_post($url, $action, $params) { $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,"; $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5"; $header[] = "Cache-Control: max-age=0"; $header[] = "Connection: keep-alive"; $header[] = "Keep-Alive: 300"; $header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7"; $header[] = "Accept-Language: en-us,en;q=0.5"; $header[] = "Pragma: "; // browsers keep this blank. $remote = $url . '/wp-admin/admin-ajax.php?action=' . $action . '&api_version=' . DBS_API_VERSION; $ch = curl_init($remote); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); $result = curl_exec($ch); $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($code != 200) { throw new RuntimeException('HTTP Error', $code); } return $result; }