Bleuy
Forum Replies Created
-
Thanks Kyle, that appeared to resolve part of the problem.
Is it me or does the Admin module now run like a tortoise! Keeps timing out with connection lost errors, but internet is fine and it didn’t do it before the upgrade!
Thanks, that sorted it 🙂
Forum: Plugins
In reply to: [ImageMapper] Inserting into WidgetThank you, I had worked round it, but thats useful to know.
Cheers
Forum: Fixing WordPress
In reply to: WordPress site running slowly suddenlyI’ve got exactly the same issue. I used Pingdom to review the issue and it relates to the Wait Time. I have 10 wordpress websites all running separately on their Professional Shared Hosting and my sites are taking from between 8-18secs to load (totally unsatisfactory). These websites are a maximum of 38 pages with circa 6plugins. They have advised that I upgrade to their VPS service. They were running fine about a month ago, but have got progressively worse!
Forum: Fixing WordPress
In reply to: Changed site URL now pages not working correctlyDon’t worry folks I fixed this! It appears that I was editing the wrong .htaccess file. I found this link very useful and more importantly easy to follow.
Do you have both versions of the plugin enabled? ie Gravity Forms Salesforce Web to Lead Add-On & Gravity Forms Salesforce API Add-On?
If you do uninstall the Gravity Forms Salesforce Web as you only need the Gravity Forms Salesforce API Add-On.
This should resolve your problem.
Forum: Fixing WordPress
In reply to: Changed site URL now pages not working correctlyI correct myself, its not working!
Forum: Fixing WordPress
In reply to: Changed site URL now pages not working correctlyps! I have restored the original .htaccess which has resolved the pages problem, but I would love a resolution to changing the URL – There are so many options and the ones I have tried to date, just haven’t worked successfully.
Forum: Plugins
In reply to: [Multiple Carousel] [Plugin: multicarousel] Change StylesIs this still the only way of updating the CSS? Although I am used to editing CSS to achieve what I want, I am by no means conversant with PHP. I have changed the CSS on the plugin and my child theme but it still keeps defaulting. Which is a shame as this plugin is perfect for what I need bar the ability to customise the backgrounds, borders and buttons!
Jan Dembowski, I could give you a big virtual hug!
After weeks of trying to resolve this, you have the magic touch.
All working fine now, thanks VERY much for your assistance.
Clare
OK, Mod_rewrite is enabled, have tried again changing from default and back and still getting the 404 Error. Its not even going to my 404 error thats set up but an Apache one!
Thanks Justin, I am already outside of my technical limit, how would I do that please?
Forum: Plugins
In reply to: [Captcha] Not working on custom from please helpI have the same problem. The Salesforce code is put into the html on the page, but I am a little unsure where the code you suggest actually needs to go.
I have pasted what you suggest at the bottom of the form but when I put the page live, it just shows the code.
Forum: Fixing WordPress
In reply to: Permalinks not working after moving WordPressI think the problem may be that the site was originally set to be a network and I am now going back to single user version. I have looked at the wp-config.php which is as follows:
<?php
/***
* WordPress’s Debianised default master config file
* Please do NOT edit and learn how the configuration works in
* /usr/share/doc/wordpress/README.Debian
***//* Look up a host-specific config file in
* /etc/wordpress/config-<host>.php or /etc/wordpress/config-<domain>.php
*/
$debian_server = preg_replace(‘/:.*/’, “”, $_SERVER[‘HTTP_HOST’]);
$debian_server = preg_replace(“/[^a-zA-Z0-9.\-]/”, “”, $debian_server);
$debian_file = ‘/etc/wordpress/config-‘.strtolower($debian_server).’.php’;
/* Main site in case of multisite with subdomains */
$debian_main_server = preg_replace(“/^[^.]*\./”, “”, $debian_server);
$debian_main_file = ‘/etc/wordpress/config-‘.strtolower($debian_main_server).’.php’;if (file_exists($debian_file)) {
require_once($debian_file);
define(‘DEBIAN_FILE’, $debian_file);
} elseif (file_exists($debian_main_file)) {
require_once($debian_main_file);
define(‘DEBIAN_FILE’, $debian_main_file);
} elseif (file_exists(“/etc/wordpress/config-default.php”)) {
require_once(“/etc/wordpress/config-default.php”);
define(‘DEBIAN_FILE’, “/etc/wordpress/config-default.php”);
} else {
header(“HTTP/1.0 404 Not Found”);
echo “Neither <b>$debian_file</b> nor <b>$debian_main_file</b> could be found.
Ensure one of them exists, is readable by the webserver and contains the right password/username.”;
exit(1);
}/* Default value for some constants if they have not yet been set
by the host-specific config files */
define(‘ABSPATH’, ‘/usr/share/wordpress/’);
define(‘WP_CORE_UPDATE’, false);
define(‘WP_ALLOW_MULTISITE’, true);
define(‘DB_NAME’, ‘wordpress’);
define(‘DB_USER’, ‘wordpress’);
define(‘DB_HOST’, ‘localhost’);/* Default value for the table_prefix variable so that it doesn’t need to
be put in every host-specific config file */
if (!isset($table_prefix)) {
$table_prefix = ‘wp_’;
}require_once(ABSPATH . ‘wp-settings.php’);
?>I obviously need to do something with this file (and probably the SQL database) but I am a little unsure of what I need to do! Your thoughts are very welcome
Forum: Fixing WordPress
In reply to: Permalinks not working after moving WordPressThanks t-p I have done all that already (as per my initial post) Does anyone else have any thoughts on this? the .htaccess file is currently empty!