Support Forum
getting server errors which explains why its not doing anything...
The server encountered an internal error or misconfiguration and was unable to complete your request
and
"NetworkError: 500 Internal Server Error - http://xxxxxxxxxxxx/index.php?.....8;userid=2"
can you check your server error log for any more info???
also, make sure that the file simple-press/forum/profile/ahah/sp-ahah-profile-save.php and make sure its there? though it must if you save other data... and then verify owner and permissions on it...
do you run mod_security on your server?
Visit Cruise Talk Central and Mr Papa's World
check with your host... or if self managed, you will want to do a php_info() and see if mod_security is loaded... its an apache module... but the bane of developers with all its false positives...
Visit Cruise Talk Central and Mr Papa's World
mapge??
could look in /usr/local/apache/modules on your server and see if its in there too... of course, assumes you are running apache...
well, still need to figure out what your server does not like... not much I can do until we figure out what is causing the 500 error... its not generally happening on other sites...
Visit Cruise Talk Central and Mr Papa's World
Update!
I just looked into Admin Toolbox, then Error Log, and this is what happen when I click to update :
file: /simple-press/sp-api/sp-api-filters.php
line: 1641
function: stripslashes
Notice | Array to string conversion
I think I just nailed it, right? Hope it's a good clue. I should have seen this before... what I was seeing instead was the server Error Log.
The server Error Log show :
Premature end of script headers: /wp/index.php
well, not sure... it is only a notice - not an error... but we can try something... in sp-ahah-profile-save.php, around line 103, can you change
if (isset($_POST['usergroup_join'])) { $update = true; $joins = sp_esc_str($_POST['usergroup_join']); foreach ($joins as $membership) { sp_add_membership($membership, $thisUser); } }
to
if (isset($_POST['usergroup_join'])) { $update = true; foreach ($_POST['usergroup_join'] as $membership) { $membership = sp_esc_int($membership); sp_add_membership($membership, $thisUser); } }
Visit Cruise Talk Central and Mr Papa's World
please verify its entered correct... that line did not change from before.. nor did #1
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)