Rambomst
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress won't display errors at allHey Deepak, Thanks for the reply however I have already looked at both those links and neither helped me in finding a solution. I have also looked at the access.log file and all it shows is that I have requested the link, no hint as to what is causing the error.
Forum: Fixing WordPress
In reply to: WordPress won't display errors at allI will give someone $15 if they tell me how to fix this issue. I am so over it >.>
Forum: Fixing WordPress
In reply to: When WP_DEBUG_DISPLAY is set to true just blank pageI am still having this issue and I have no clue how to fix it.
Forum: Fixing WordPress
In reply to: When WP_DEBUG_DISPLAY is set to true just blank pageMore Information.
It seems this happens when there is a PHP error on the webpage. I have PHP errors set to display.
Forum: Hacks
In reply to: Making posts far into the future using wp_insert_post causing errorsStill haven’t found a solution for this. Any help is much appreciated.
Forum: Hacks
In reply to: Using WordPress login authentication in external PHP fileI just tested it then and it seems to still do the same behavior even within the correct WordPress structure.
Forum: Hacks
In reply to: Using WordPress login authentication in external PHP fileThat made no difference, could this not work because the php file isn’t in the same folder as WordPress? The file is located in a folder down from WordPress. WordPress is located in the top directory and then the php file is in a custom directory “topdir/phpfiledirectory”.
Forum: Hacks
In reply to: Using WordPress login authentication in external PHP fileThanks for the reply bcworkz.
I have changed the code and now it just brings up the login screen every time the page is loaded even if I am already logged in.
My question was answered here.
Forum: Plugins
In reply to: [WP-UserOnline] [Plugin: WP-UserOnline] Showing incorrect URLsI disabled all addons and this issue was still there.
Forum: Plugins
In reply to: [WP-UserOnline] [Plugin: WP-UserOnline] Showing incorrect URLsI don’t think that is the issue.
Below is a list of plugins being used and I don’t think any of them would cause this.
Admin Bar Removal (3.1+ / 3.2+ only)
Akismet
bbPress
bbPress Topics for Posts
bbP Signature
Jetpack by WordPress.com
LeagueManager
Lightbox Plus
Login Logo
Page Links To
SB Welcome Email Editor
User Role Editor
WordPress SEO
WP-PageNavi
WP-UserOnline
WP External LinksForum: Hacks
In reply to: PHP validation and error messages in user profilesI worked it out.
add_action( 'user_profile_update_errors', 'validate_steamid_field' ); function validate_steamid_field(&$errors, $update = null, &$user = null) { if (!preg_match("/^STEAM_[0-5]:[01]:\d+$/", $_POST['_bbp_steamid'])) { $errors->add('empty_steamid', "<strong>ERROR</strong>: Please Enter a valid SteamID"); } }