agnkol
Forum Replies Created
-
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Player list bug?Hi Brian,
I’ve already changed the memory limit to 64MB, but the issue is still present.
Adres URL WordPressa: https://www.sheplays.pl Adres URL witryny: https://www.sheplays.pl Wersja SP: 1.3.2 Wersja WP: 4.0 Ustawienia WP multisite w??czone: Nie Informacje serwera: IdeaWebServer/v0.80 (like Apache) Wersja PHP: 5.2.17 Limit pami?ci WP: 64 MB Tryb debugowania WP: Nie J?zyk WP: pl_PL Maksymalny rozmiar uploadu WP: 64 MB Maksymalny rozmiar PHP Post: 64 MB Limit czasu PHP: 30 PHP Max Input Vars: Zainstalowano SUHOSIN: Nie Domy?lna strefa czasowa: Domy?lna strefa czasowa to UTC fsockopen/cURL: Twój serwer ma w??czone fsockopen i cURL. Klient SOAP: Twój serwer ma w??czon? obs?ug? SOAP
I think I have similar issue.
If I use shortcode to display player list I only see Rank and Name, ie.
https://www.sheplays.pl/liga/statystyki/
shortcode used: [player_list id=”1047″ number=”12″ columns=”goals” orderby=”goals” order=”DESC” show_all_players_link=”1″]If you display the full list, everything is there:
https://www.sheplays.pl/list/strzelcy-bramek/Forum: Fixing WordPress
In reply to: 403 on home pageI managed to solve the issue.
The problem was due to the fact that the folder in root was called “StronaWWW” not “stronawww”….Forum: Fixing WordPress
In reply to: 403 on home pageI’ve have tried but again without results…
# 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: 403 on home pageHI Michael,
Thank you for answering.
Yes, I’ve installed wordpress in /stronawww directory and that’s where the .htaccess is located.
I’ve removed the bit you suggested, but it didn’t change anything ??
DirectoryIndex index.php
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]# 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
Any other ideas?
Forum: Fixing WordPress
In reply to: PHP if statement problem<?php if($_SERVER['QUERY_STRING']=="page_id=15")||($_SERVER['QUERY_STRING']=="page_id=12") : ?> <ul> <li><a href="?page_id=24">Wieliczka</a></li> <li><a href="?page_id=25">Niepo?omice</a></li> <li><a href="?page_id=26">Gdów</a></li> </ul> <?php endif; ?>