i have restored the database in my local testing machine that is running on xampp. everything else is working fine but when i try to view any node it just shows up the blank screen. Some contents are showing quite fine and data is being showing but one Content is not showing any data.
I am trying to turn my D7 site into a progressive web app and have installed the pwa module. I get an error in the browser when using either the default or my own icons. The error says the icons can't be located at path... and the URL that fails has ?q= in it. When I remove the ?q= and try the URL I get the icon.
I am tried to restore my website on server by old backup.
When I upload and configure I got this error:
PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'antarbha_drupal.drup_workflow_type_map' doesn't exist: SELECT type, wid FROM {workflow_type_map}; Array ( ) में workflow_get_workflow_type_map() (पंक्ति 15 की /home/antarbha/public_html/sites/all/modules/workflow/workflow.node.type_map.inc).
I am editing PHP code in a ckEditor basic page. I know the node ID of another page on my site that contains a PHP file. For simplicity’s sake, let’s say the node ID is 1234. I can do $node = node_load(1234). How do I parse all the data in $node? Because I’m editing PHP code in the ckEditor, this line:
I have a small webform I am using for the contact page at nowbuilders.com/contact-us which has recently stopped sending the values in the email message. Messages are logged properly on the website, but email content appears like this:
Submitted on
Submitted by user:
Submitted values are:
My problem is that for some users (not for all) when they submit a form the get the error:
'The form has become outdated. Press the back button, copy any unsaved work in the form, and then reload the page'
And the are not allowed to send the form.
The user is logged before he is sent to the form by this way:
$user = user_load(4478);
$form_state = array();
$form_state['uid'] = $user->uid;
user_login_submit(array(), $form_state);