JohnieBraaf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 3.5 Media Library displays no imagesForum: Fixing WordPress
In reply to: Media Library No media attachments found. Windows IIS 7Forum: Plugins
In reply to: [WP Db Abstraction] Fresh WP 3.5 install not compatibleHi Static Deadlock,
Thank you for sharing your valuable research information.
I have crafted an ugly solution for the out of bounds conversions error that happens when inserting new posts.
In the db-abstraction\drivers\sqlsrv.php look for:
function query( $query, $translate = true ) {
if ( ! $this->ready )
return false;And append directly after:
$query = str_replace(“N’0000-00-00 00:00:00′”, “N’1900-01-01 00:00:00′”, $query);
It’s probably not the ideal solution, but it gets the job done, without having to resort to even uglier corrective database triggers 😉
All queries will be checked, replacing the incompatible date value!
Regards, Jan
btw, using your web.config I got permalinks working properly, so not sure why you claim using permalinks will break the site,
ooh yeah one last thing, I’m using SQL Server 2012 🙂Forum: Fixing WordPress
In reply to: WordPress 3.5, Media not showing in DashboardI have solved this issue. It hade to do with the SQL Server database abstraction.
In translations.php:
Make sure extra parenthesis has been removed from $pattern = ‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)(;{0,1})$/is’;
The resulting line will be: $pattern = ‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*);{0,1}$/is’;See also:
http://wordpress.org/support/topic/fresh-wp-35-install-not-compatible?replies=4Forum: Fixing WordPress
In reply to: WordPress 3.5, Media not showing in DashboardThe problem seems not specific to version 3.5
I have installed version 3.3.2 giving the exact same behavior.
The site is running in IIS 8, should I configure rewrite rules?
Forum: Fixing WordPress
In reply to: Media Library No media attachments found. Windows IIS 7Also I am experiencing this issue.
Some people point to url rewrite rules that should be altered, but I cannot get it to work.
Forum: Fixing WordPress
In reply to: WordPress 3.5 Media Library displays no imagesHi,
I have the same problem.
May I ask, what exactly did you change to fix the problem?
Where can I remove the column orderby filter?