puikaaa
Forum Replies Created
-
Forum: Hacks
In reply to: What does the $box stand for in post_tags_meta_box() function?bcworkz, thank you. That was my first guess, yet wasn’t sure about it and it didn’t return any understandable value besides 0. Ill try to work around it.
Thank you again.Forum: Fixing WordPress
In reply to: Can't upgrade wordpress or install new plugins via FTP(SSL).Thank you! I changed ftp mode from ftpex to direct, by defining
define('FS_METHOD', 'direct');
in config.php file.Forum: Fixing WordPress
In reply to: WordPress redirect from wp-admin back to fron-pageOk. The solution was to add specific rules for Ngnix:
server { server_name veseligsuzturs.lv; rewrite ^(.*) https://www.veseligsuzturs.lv$1 permanent; } server { server_name www.domain.lv; root /home/domain/htdocs; index index.php; if (!-e $request_filename) { rewrite ^(.+)$ /index.php?q=$1 last; } error_page 404 /index.php; location ~ \.php$ { expires off; include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /home/domain/htdocs/$fastcgi_script_name;
This worked perfectly! No .httaccess needed as it is built-in!
Forum: Fixing WordPress
In reply to: WordPress redirect from wp-admin back to fron-pageIt isn’t there. No .httaccess file. I deleted it, but if i try to turn back on custom permalinks, they work, even if there is no .httaccess file within ROOT WP folder.
Forum: Fixing WordPress
In reply to: WordPress redirect from wp-admin back to fron-pageBut seriously i don’t have it. Is it possible that it may be somewhere outside my hosting map (where WP is located)?
Forum: Fixing WordPress
In reply to: WordPress redirect from wp-admin back to fron-pageI mentioned before, that I also tried to turn them off, but that didn’t work too.
I retried again, still with no success!Forum: Fixing WordPress
In reply to: WordPress redirect from wp-admin back to fron-pageNothing changes.
The plugins are all off and everything is like as it was right after WP installation.[EDITED]
I even re-installed the WP, that didn’t changed anything.Forum: Fixing WordPress
In reply to: WordPress redirect from wp-admin back to fron-page