Broken Link


Broken Link

Postby mcsee » Fri Jul 31, 2009 6:27 pm

In the Private Messages area, when composing a new message, the link to "Find a Member" isn't working on my forum. Is there a way to test the link to see if it's broken, or a problem causing it.

T.I.A.
m

mcsee
 
Posts: 28
Joined: Fri May 01, 2009 6:27 pm
Location: Melbourne
Blog: View Blog (0)

Re: Broken Link

Postby Helter » Fri Jul 31, 2009 10:09 pm

proVista is currently for phpBB3.0.4. If you have updated your board to 3.0.5 you should apply all prosilver edits to proVista.
To fix the current problem, open overall_header.html

FIND

Code: Select all
  1.     /**
  2.     * Find a member
  3.     */
  4.     function find_username()
  5.     {
  6.         <!-- IF UA_FIND_USERNAME -->
  7.         window.open('{UA_FIND_USERNAME}', '_usersearch', 'height=500, resizable=yes, scrollbars=yes, width=740');
  8.         <!-- ENDIF -->
  9.         return false;
  10.     }
  11.  
  12.     /**
  13.     * New function for handling multiple calls to window.onload and window.unload by pentapenguin
  14.     */
  15.     window.onload = function()
  16.     {
  17.         for (i = 0; i <= onload_functions.length; i++)
  18.         {
  19.             eval(onload_functions[i]);
  20.         }
  21.     }
  22.  
  23.     window.onunload = function()
  24.     {
  25.         for (i = 0; i <= onunload_functions.length; i++)
  26.         {
  27.             eval(onunload_functions[i]);
  28.         }
  29.     }
  30.  
  31. // ]]>
  32. </script>


REPLACE WITH

Code: Select all
  1.     /**
  2.     * Find a member
  3.     */
  4.     function find_username(url)
  5.     {
  6.         popup(url, 760, 570, '_usersearch');
  7.         return false;
  8.     }
  9.  
  10.     /**
  11.     * New function for handling multiple calls to window.onload and window.unload by pentapenguin
  12.     */
  13.     window.onload = function()
  14.     {
  15.         for (var i = 0; i < onload_functions.length; i++)
  16.         {
  17.             eval(onload_functions[i]);
  18.         }
  19.     }
  20.  
  21.     window.onunload = function()
  22.     {
  23.         for (var i = 0; i < onunload_functions.length; i++)
  24.         {
  25.             eval(onunload_functions[i]);
  26.         }
  27.     }
  28.  
  29. // ]]>
  30. </script>
  31.  


Delete the style "template" cache in the ACP

User avatar
Helter
Site Admin
 
Posts: 548
Joined: Tue Jul 19, 2005 1:29 pm
Location: Seattle Wa
Blog: View Blog (0)
Real Name: John Wagner

Re: Broken Link

Postby mcsee » Sat Aug 01, 2009 4:02 am

Thank you very much Helter, worked like magic.

Great back up as usual.

Regards
m

mcsee
 
Posts: 28
Joined: Fri May 01, 2009 6:27 pm
Location: Melbourne
Blog: View Blog (0)

Re: Broken Link

Postby mansrm81 » Mon Sep 14, 2009 5:36 am

Thanks

mansrm81
 
Posts: 1
Joined: Mon Sep 14, 2009 5:26 am
Blog: View Blog (0)



Post a reply



Return to proVista

Who is online

Users browsing this forum: No registered users and 2 guests

cron