imageDESIGN
Forum Replies Created
-
Just had the same issue with a domain doubling up. The cause was within the wp-config.php file which was moved from a MediaTemple hosted setup. The updater turned:
define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST']); define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST']); define('WP_CONTENT_URL', '/wp-content'); define('DOMAIN_CURRENT_SITE', $_SERVER['HTTP_HOST']);into:
define('WP_HOME', 'http://mydomain.com' . $_SERVER['HTTP_HOST']); define('WP_SITEURL', 'http://mydomain.com' . $_SERVER['HTTP_HOST']); define('WP_CONTENT_URL', '/wp-content'); define('DOMAIN_CURRENT_SITE', $_SERVER['HTTP_HOST']);You can see why they were doubling now. I just removed these define’s as none were needed and the problem was then resolved.
Forum: Fixing WordPress
In reply to: Telus Hosting & Plugin Upgrade IssuesAlso of note is the fact that I can Delete plugins via the delete button when it is deactivated – so it can delete directories this way, but not through the upgrade function.
Forum: Fixing WordPress
In reply to: Telus Hosting & Plugin Upgrade IssuesIf it helps, here is the system info reported by Bulletproof Security (host has phpinfo() disabled):
Website Root URL: http://clientdomain.com Document Root Path: /services/webpages/m/a/clientdomain.com/public WP ABSPATH: /services/webpages/m/a/clientdomain.com/public/ Parent Directory: /services/webpages/m/a/clientdomain.com Host by Address: hosting.megawebservers.com DNS Name Server: ns2.meganameservers.com Server Type: Apache Operating System: Linux WP Filesystem API Method: direct Server API: apache2handler - Your Host Server is using DSO cURL: cURL Extension is Loaded Zend Engine Version: 2.3.0 Zend Guard/Optimizer: A Zend Extension is Not Loaded ionCube Loader: ionCube Loader Extension is Not Loaded Suhosin: Suhosin is Not Installed/Loaded APC: APC Extension is Not Loaded eAccelerator: eAccelerator Extension is Not Loaded XCache: XCache Extension is Loaded but Not Enabled Varnish: Varnish Extension is Not Loaded Memcache: Memcache Extension is Not Loaded Memcached: Memcached Extension is Not Loaded PHP Version: 5.3.27 PHP Memory Usage: 30.53 MB WordPress Admin Memory Limit: 256M WordPress Base Memory Limit: 40M PHP Actual Configuration Memory Limit: PHP Max Upload Size: 250000000 PHP Max Post Size: 250000000 PHP Safe Mode: Off PHP Allow URL fopen: On PHP Allow URL Include: On PHP Display Errors: Off PHP Display Startup Errors: Off PHP Expose PHP: Off PHP Register Globals: On PHP MySQL Allow Persistent Connections: Off PHP Output Buffering: 0 PHP Max Script Execution Time: 30 Seconds PHP Magic Quotes GPC: On PHP open_basedir: not in use PHP XML Support: Yes PHP IPTC Support: Yes PHP Exif Support: YesForum: Fixing WordPress
In reply to: Telus Hosting & Plugin Upgrade IssuesI can SSH into the hosting, and it shows that the files and folders have the same ownership.
Forum: Plugins
In reply to: [BulletProof Security] Activating Root .htaccess doesn't stickSorry, I figured out the issue about 2 minutes after posting and tried to mark it as resolved, but it wouldn’t save. There was a funky flush_rewrite_rules in the functions.php file that was causing the issue.
Thanks for your help!
Forum: Plugins
In reply to: [Code Snippets] Import Fatal ErrorYes, this new update does fix the error – thank you!
Forum: Plugins
In reply to: [Shopp Image Tools] Images not getting removed from the databaseCould not find a suitable replacement function, so proceeded to upgrade to PHP version 5.4.15 which has solved the issue. Thanks!
Forum: Plugins
In reply to: [Shopp Image Tools] Images not getting removed from the databaseBarry,
Having a similar issue. No Javascript errors in the console, but it is throwing the following PHP error:
PHP Fatal error: Call to undefined function getimagesizefromstring() in /home/fourcorn/public_html/wp-content/plugins/shopp-image-tools/inc/orphanfinder.php on line 142It looks like the function getimagesizefromstring()is only included in PHP version 5.4.0+ – I’m looking for a replacement function, though I will look into upgrading PHP soon as well.
Same issue. GF 1.7.2, clicking the custom class button throws a JS error:
Timestamp: 13/05/2013 9:29:30 AM Error: TypeError: $m.modal is not a function Source File: http://*****.com/wp-admin/admin.php?page=gf_edit_forms&id=4 Line: 3100The Event Manager updated solved my conflict for upgrade as well. Thanks!
Forum: Plugins
In reply to: [TubePress] [Plugin: TubePress] do_shortcodeFor those looking for the answer to this, as I was, it is listed at http://wordpress.org/support/topic/tube-press-short-code-in-page-template?replies=5
Just use apply_filters instead:
<?php echo apply_filters('the_content', '[tubepress]'); ?>Scott & pglewis, thanks for your help. The issue remains with Pods 2.0.2 I have submitted my info for you just now – Thanks!
Forum: Fixing WordPress
In reply to: Website requires refresh to view almost every pageDisabling the Core Control plugin has resolved this issue. I had it installed for troubleshooting purposes for a separate issue.
I’m having the same issue, but it doesn’t validate for me using WinZip, WinRAR or Send to compressed folder on Windows 7. The readme.txt does validate on http://wordpress.org/extend/plugins/about/validator/
What else can I try!
Forum: Plugins
In reply to: [Self Hosted Plugins] [Plugin: Self Hosted Plugins] Error during activationI had the same issue and I can verify that removing the plugin headers from fakepage.php solved the issue.