ChocoTUx
Forum Replies Created
-
Hi,
Im today solved same error message. Try to control your settings (if have email from, header etc…) – its my problem.
And lots of server hosting do not allow function mail() (spam protection) so its could be problem, that your server provider change php setings – try this way
<?php
mail(’[email protected]’, ‘Test email’, ‘testing’);
?>And one question to addon author. It is same error log? For me is very difficult to discover a lots of different problems from one same error message.
Thanks
RomanForum: Plugins
In reply to: [Loco Translate] Wrong JSON formatFinaly I had convert all files (included in this ajax proccess) to UTF without BOM and shutdown header (content length) and its works.
I know that is not the best idea, but I had spend lot of time about this problem a I guest the problem will be in other file with wrong format, so you plugin is fenomenal (really I love ajax things) and I fix my IDE so this problem will not happen again.
Thank you for you support.
Forum: Plugins
In reply to: [Loco Translate] Wrong JSON formatYe its my fault. I have some problem between windows and utf-8 coding and when you load long of json – header(‘Content-Length: ‘.strlen($body), true ); its make some mistake.
But thank you for help.
Forum: Themes and Templates
In reply to: Creating Full Width TemplateHi, you can edit css style in your teamplate (style.css). If you want redesign old template, you must edit more .php pages like header.php etc…
function get_header() call header.php but it isnt only part before </head>. Just look to this page.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] No pictures up-loadedOh, I use theme, which I edit, so I cant update it. Any idea how I can fix it myself?
thx
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] No pictures up-loadedHi, I have similar problem,
When I add Image field type to my profile, it add two arrays. When I upload from one of them, nothing happen. – In DB xprofile_data make a line but value is empty.
I use new WP 4.0.
Thank you.
RomanForum: Plugins
In reply to: [BP Profile Search] Cant update new fieldI install wp few days ago (and probably not shutdown auto. update). My version: You are using a development version (4.1-alpha-30308).
I tryed delete unserialize function, but it have different structure, and next function is confused about it. I start make some foreach where make correct structure and if I had some errors in my logic i decided report error to you (but if you cant simulate this error, i can try finish my “hot-fix” and share it. (but probably on next thuesdeay).
Forum: Themes and Templates
In reply to: [Magazine Basic] commercial useHi Jan,
I knew what is GPL, but I did not know that all codes on the www.remarpro.com under it.
Thank you
Forum: Plugins
In reply to: [BP Profile Search] Cant update new fieldK, np
When I try add new field (in User->Profile Search) it stop on this warnings
Warning: unserialize() expects parameter 1 to be string, array given in address\wp-content\plugins\bp-profile-search-master\bps-main.php on line 58
and
Warning: Invalid argument supplied for foreach() in address\wp-content\plugins\bp-profile-search-master\bps-functions.php on line 162When I do some var_dump, I′ll get this arrays:
near 56lines on bps-main – var_dump($meta[‘bps_options’]);
show this:
array(1) { [0]=> array(10) { [“field_name”]=> array(1) { [0]=> string(1) “1” } [“field_label”]=> array(1) { [0]=> string(4) “asdf” } [“field_desc”]=> array(1) { [0]=> string(4) “asdf” } [“field_range”]=> array(1) { [0]=> NULL } [“directory”]=> string(3) “Yes” [“header”]=> string(0) “” [“toggle”]=> string(7) “Enabled” [“button”]=> string(0) “” [“method”]=> string(4) “POST” [“searchmode”]=> string(4) “LIKE” } }but this thing you send to function unserialize which is expected string.
thx