Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Please check now.
Stiofan
I have fixe the cat count which was a bug but the redirect issue i can’t see anything in GD that would do that, can you pass me FTP info and i’ll try disabling all non essential plugins to try and track it down.
Stiofan
Hi Gary,
Please check now, this was a weird bug u have helped us track down, please confirm all is working now?
Thanks,
Stiofan
April 8, 2015 at 8:38 am in reply to: Preview Changes BUG resulting in endless duplicate posts #36498This does not happen for me, it is likely that you have a SESSION stuck from an old version, try from another broweser to confirm it does not happen, if so then that is the problem, you can clear all sessions by simply restarting the browser (maybe best to restart the computer) then please confirm it does not happen anymore.
Stiofan
Hi Gary,
Some how ur category cache count was wrong, i fixed it by unpublishing and then publishing a post, please check now.
Stiofan
OK somehow your wp-admin folder had been moved to your wp-content folder, i have moved it back and it’s now working but if you did not do this by accident then i would check your server logs to see what happened.
Thanks,
Stiofan
Hi,
I’m guessing it’s one of two things, either you have changed the wp-admin folder name or your WP install is corrupt.
If you post wp-admin and FTP details i will have a look.
Stiofan
This reply has been marked as private.I have just released a new ver of GD Booster please update it and then add this script to your child theme functions.php
add_filter('geodir_booster_script_continue','vape_exclude_js',10,2); function vape_exclude_js($res,$code){ if(strpos($code,'adview_sidebar.php') !== false){ $res = true; } return $res; }Thanks,
Stiofan
your permalinks needed saved…
wp-admin details?
April 5, 2015 at 12:56 pm in reply to: Missing argument and header information in theme compatibility after upgrade #36237Hi,
That is a PHP warning and not an error and should not really be shown unless on a dev server (new PHP has it enabled by default)
Add this to your child theme function.php to stop showing errors for now and i will have a look on Monday.
ini_set("display_errors", "0"); error_reporting(E_ERROR);The 2nd argument is not being used for anything in that function so it’s only the fact the warnings are showing that are causing problems.
Thanks,
Stiofan
We have tested a fix for GD Booster and it will be released later today.
Thanks,
Stiofan
I feel i am missing something here?
Booster made it better in both cases?Booster OFF
Booster ON
The problem was the $_SERVER[“SERVER_NAME”] was wrong, i added the filter below to fix the problem:
add_filter('geodir_curPageURL','my_change_server_name',10,1); function my_change_server_name($pageURL){ $pageURL = 'http'; if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") { $pageURL .= "s"; } $pageURL .= "://"; $pageURL .= "www.WEBSITE-NAME.com" . $_SERVER["REQUEST_URI"]; //return str_replace("www.", "", $pageURL); return $pageURL; } -
AuthorPosts



