Hi I've been developing a drupal site on my local machine for a couple of weeks. Got myself a domain name and some hosting and uploaded it but I'm getting strange errors. Sometime I get 404 errors and soemtimes 500 erros when trying to load pages. Also, anything which is a sub folder of admin just displays a blank white screen.
Sometimes I get these errors, soemtimes not:
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'r05booy_tvn_get_form' was given in /home/r05booy/public_html/includes/menu.inc on line 348.
I have mod_rewrite on and friendly urls on the server. My database is set up and connecting ok.
I'm using version 6.
Thanks for any help or insite!
Jonesy
UPDATE
Thanks to the clearing cache suggestions I managed to fix this.
Since I couldn't get to the performance page I found an article on how to do this - http://drupal.org/node/42055.
I created a file called clear.php with the following code:
<?php
include_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
drupal_flush_all_caches();
?>
Uploaded it to the root, then browsed to it. It fixed all my problems. remember to delete the file afterwards!
drush cc all- googletorp