Jump to content
  • Sign Up

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. My guess would be that the member doesn't have a members_seo_name entry in his member record in the database. This is poor programming. So you have to put seo names for all members or you can use ftp and edit the initdata.php file changing this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); to this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING );
  2. That could only be answered by going to the vps and checking top to see whats busy and also checking your error and access logs .
  3. You have to hit the + sign on the right to set up your information.
  4. The developer posted that error was fixed on the newest release.
  5. No it was unable to update to off due to db error. Fixed.
  6. Just log into your phpmyadmin and change the member_group_id field in the member table for your member record to 4 or 6.
  7. Hard to tell if it is google since you can show anything like forum, this forum, downloads there.
  8. Skin name doesn't help me. It is how you integrated the google search in it.
  9. It is happening on the profile fields. Is there an option not to do the profiles?
  10. These instructions!! You need to read all replies...
  11. It has to have more information either in the cache folder under sql_latest_error or in forum folder php_error or error. That alone is useless.
  12. Follow the instructions here http://webflake.sx/topic/1711-fix-call-to-a-member-function-xxx-on-a-non-object-in-when-adding-a-new-application/
  13. The instructions were pretty clear. Look in your whm panel. No it won't hurt anything. Will stop the webpages for a couple of milliseconds normally and then restart. No one should even notice.
  14. If you show us the error (complete) we will have a better chance of helping.
  15. No all it does is restart the apache service that has php loaded. Then if changes were made to the php like increasing the max upload size it will reload that setting.
  16. So many different cpanels but you can try this How do I restart services in cPanel? The following article explains how to restart services in cPanel. While the service is restarting it will be temporarily unavailable. To restart a service, please follow these steps: Open a web browser and connect to your cPanel Control Panel Login as the Administrator using the information sent to you in your setup email. From the Restart Services menu, select the service you wish to restart. Confirm you would like to restart this service. As a service is restarted, a notification will appear to update the progress and let you know when the service has been successfully restarted. If there is an error that occurs during the restart, you will be notified of the details.
  17. A link would be nice but it seems you have the google search too far left and might be using all the space to the right not leaving enough for your mod to display without wrapping the notification icon.
  18. There is no hook to keep the topic/reply hidden. Seems strange you would want to have members like something they have not seen.
  19. Did you restart the http ?? Either restart that or the server in your VPS panel or Cpanel.
  20. Since you didn't show us the line before you changed it. The only thing you should have done was add AND !$topic['pinned']before the ending ) in the if statement. But you might try making it look like this else if( (!$this->allForums[$fid]['can_view_others'] AND !$this->memberData['is_mod'] ) AND ( $topic['starter_id'] != $this->memberData['member_id'] ) AND !$topic['pinned'] )And see if that works for you. But it would be nice to see what the sql error contains.
  21. If you show us the error and the lines causing the error 5 above and below error line maybe we can help.
  22. If you are using cpanel use the php configuration as the php.ini will be in a different location. Also run the php info in the support tab in acp to be sure as to what php is using when it starts. You can also use cpanel to restart the http or if you have centos use service httpd restart to restart your php. You can also try adding the code below to your conf_global.php file using ftp. ini_set('post_max_size', '64M');ini_set('upload_max_filesize', '64M');
  23. Deleted it how? I hope you did remove from the applications tab. Check the file initdata.php using ftp or file manager and make sure this is there and not the word portal or ccs or uportal /** * Default app name * You can set this in your own scripts before 'initdata.php' is required. */if ( ! defined( 'IPS_DEFAULT_PUBLIC_APP' ) ){ define( 'IPS_DEFAULT_PUBLIC_APP', 'forums' );}
×
×
  • Create New...