bparlan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Admin Panel – “Pages” or “Add New Page” redirects to “Posts”I solve issue by myself. Problem was with .htaccess, it was moddified as following in order to prevent users see extensions of website:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} "post_type=" [NC] RewriteRule (.*) /$1? [R=301,L] RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
But it turned out that it supposed to be as below cause of updates and some other reasons. Replacing this code within .htacces solved the issue. Sharing for peoples whom might have similat problems.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: Admin Panel – “Pages” or “Add New Page” redirects to “Posts”It’s been two month without any answer or opinion to try, wordpress updated (4.7) within this period and problem still exists. Here are some more observations:
I’m using Boxzilla plugin, so it’s “Boxzilla” menu is listed right after Comments on admin panel. It’s “All Boxes” sub-link is goes as: https://www.bparlan.com/wp-admin/edit.php?post_type=boxzilla-box , but whenever I click to it it directs to https://www.bparlan.com/wp-admin/edit.php which means list of my posts. Alternatively Edit Box reacts exactly same, I’m not able to list my boxes or edit them. Interestingly “Add New Box” link writes as https://www.bparlan.com/wp-admin/post-new.php?post_type=boxzilla-box and it goes that page without any problem.
So in conclusion: Any link within admin panel which relates to edit.php, which are:
- Posts (All Posts)
- Pages (All Pages) (https://www.bparlan.com/wp-admin/edit.php?post_type=page)
- Boxzilla (https://www.bparlan.com/wp-admin/edit.php?post_type=boxzilla-box)
directs to only edit.php without reading remaining ? part.
This is huge problem since I’m not able to list my “drafts” or “pages” or anything else which goes after ? of edit.php…
I’ve backed up my entire site – reinstalled wordpress many times – disabled plugins or themes etc many times. It’s been more than 5 month in this way, and I’m completely hopeless…
- This reply was modified 8 years, 2 months ago by bparlan.
Pagespeed took F with 36 point (%6 point worse), and Yslow gone 4% down too when I disable photon. I’ll leave it like that and re-test for few times more, but for the moment, no luck…
Glad I recieve such attention (: Surely I can share my url:
https://www.bparlan.com/
It is self hosted wordpress site with full updates and good SEO ranks (A (93%) Pagespeed and C (76%) Yslow) I recieve %44 F grade from Image optimization upto my test.Forum: Themes and Templates
In reply to: [Hueman] Custom Fonts loading times / Arial Font WeightAfter so many years using WordPress, I just decided to be member of support to give my comment about this issue. Even “same thing happens to me”, wished to list again since I really observed what happens:
1- page loads with Arial no matter I do
2- changes into Tittillium (titilium, roboto condensed, i tried all of them one bu one)
3- while keeps loading fonts changes to Arial
4- than Titilium
5- than Arial
6- loading finishes with last change into Titilium
Lets count this as 3 times change (will be useful for my next observing)This just looks weird. No matter I did from child theme or main theme, I cannot stop this change. Exactly 6 change, tested with all google fonts.
Keypoints:
+ Only Arial and Georgia do not make this loop, rest of all fonts does it.
+ I deleted @font-face of Titilium, still same loop.
+ Ubuntu sans – loops shortens: only 2 time change.
+ Roboto – loops shortens: only 2 time change.
+ PT Serif – loops shortens: only 2 time change.Platforms:
This loop happens in Firefox (35.0.1)
Do not happens in Chrome (40.0)Additionally: IE8 loads main menu as like there is no css, but keeps rest of site work ok. Sorry that I dont upgrade to IE11 since windows update required and I hate that.
Last Note: within this experiments, theme started to not see “self-hosted” titillium fonts, even I’m 100% sure they are in true location and style.css is ok, I cant see from firebug that fonts are loaded, it shows “Titillium” as Arial font. Mind confused a lot. Wish we can handle this problem.