Resolved: WordPress Notice: Trying to get property ‘ID’ of non-object
Solution: Disable the debug in WordPress config file (wp-config.php) as follows define(‘WP_DEBUG’, false);
Solution: Disable the debug in WordPress config file (wp-config.php) as follows define(‘WP_DEBUG’, false);
<?xml version=”1.0″ encoding=”UTF-8″?> <configuration> <system.webServer> <rewrite> <rules> <clear /> <!– <rule name=”Redirect to https” stopProcessing=”true”> <match url=”(.*)” /> <conditions> <add input=”{HTTPS}” pattern=”off” ignoreCase=”true” /> </conditions> <action type=”Redirect” url=”https://{HTTP_HOST}{REQUEST_URI}” redirectType=”Permanent” appendQueryString=”false” /> </rule> –> <rule name=”WordPress Rule 1″ stopProcessing=”true”> <match url=”^index\.php$” ignoreCase=”false” /> <action… Read More
Issue: http://example.com/???????/?????????/ Solution: Follow the below steps 1) Add the Reg. Key manually click start, click run, and then type the following command: reg add HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\w3svc\Parameters /v FastCGIUtf8ServerVariables /t REG_MULTI_SZ /d REQUEST_URI\0PATH_INFO 2 ) Execute the code using cmd.exe as an administrator then paste… Read More