Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Blank screen issue in joomla 1.0

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 202
    Comment on it

    The blank screen in joomla 1.0 powered sites can be resolved by the following ways:

    You have to edit the two pages

    Step 1:

    1. In /includes/Cache/Lite/Function.php
    2.  
    3. Replace
    4. $arguments = func_get_args();
    5.  
    6. to
    7.  
    8. $arguments = func_get_args();
    9. $numargs = func_num_args();
    10. for ($i = 1; $i < $numargs; $i++) {
    11. $arguments[$i] = &$arguments[$i];
    12. }
    13. In /includes/vcard.class.php
    14. Add a if statement just above the code:

    15.  
    16. if(!function_exists('quoted_printable_encode')) {
    17. function quoted_printable_encode($input, $line_max = 76) {
    18. ....
    19. .....
    20. }
    21. }
    Step 2:
    1. In /includes/Cache/Lite/Function.php
    2. replace
    3. $result = call_user_func_array(array($class, $method), &$arguments);
    4. to
    5. $result = call_user_func_array(array($class, $method), $arguments);
    6.  
    7. $result = call_user_func_array(array($$object_123456789, $method), &$arguments);
    8. to
    9. $result = call_user_func_array(array($$object_123456789, $method), $arguments);
    10.  
    11. $result = call_user_func_array($target, &$arguments);
    12. to
    13. $result = call_user_func_array($target, $arguments);

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: