Got Notice: Undefined variable: _SESSION in /home/kunde/public_html/wp/wp-content/themes/evolve/inc/woocommerce-support.php on line 1603
Additional all Buttons in Woocommerce are marked with a padlock using Evolve.
Tried other Theme no notice and no padlock.
Can someone help please?
Greetings
Deexperte
add_action(‘init’, ‘register_my_session’);
function register_my_session(){
if( ! session_id() ) {
session_start();
}
}
Everything seems to work great with the exception of one thing. When I look at WP Tools > Site Health I see an error
**The REST API encountered an error
The REST API is one way WordPress, and other applications, communicate with the server. One example is the block editor screen, which relies on this to display, and save, your posts and pages.
The REST API request failed due to an error.
Error: cURL error 28: Operation timed out after 10001 milliseconds with 0 bytes received (http_request_failed)
**
If I remove just the session_start() call then the error goes away (but of course, I don’t have $_SESSION data available.)
I’ve tried moving session_start to wp-config and have also tried moving it earlier / later in the wp hooks firing order, but so far no luck.
Can anyone provide some insight as to why session_start would cause a REST error, and ideas on how to properly call session_start to get access to $_SESSION?
]]>What code i need for the value?
I know that the varibale ist there, for example 4567. I get the feedback outside the form.
I Try many things.
<?php $_SESSION[‘saz’]; ?>
<?php echo $_SESSION[‘saz’]; ?>
<?php echo $saz; ?> $saz = $_SESSION[‘saz’];
SESSION:saz
echo $_SESSION[‘saz’]
and so on. Nothing works.
Can anyone help me please! You see i’m not an programmer or coder. But it is the last piece of my puzzle
THX!
]]>I’m building a custom theme and I’m trying to do the following:
– In my functions.php file I start a session on init
– I’ve added a couple of values to $_SESSION
– I’ve written a function and added it with a filter hook
– I’m trying to get some $_SESSION variables inside the function
> I’m stuck getting the $_SESSION variables. Nothing I’ve tried seems to work. Does anybody have an idea what I’m doing wrong?
]]>I have some issue with the wordpress Sessions.. I used the standard PHP $_SESSION[‘cart’][] = value to add an item to a session array. this works fine with plain php file but when i use the same file and code within the wordpress plugin its no longer working..
the output always shows 1 item even though i already added more items in the cart using this.. i also used the php array_push to insert an item but still no luck..
can somebody tell me how to solved this, i will be glad if there are people who can help me with this… peace and thanks in advance..
]]><?php $args = array( 'post_type' => 'album' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
$i = 1;
the_title();
// Gets track ID foreach track
while ($i > 0) {
$track = get_field ('track'.$i);
$permalink = get_permalink( $id );
session_start(); // STARTS VARIABLE TO SEND I TO NEXT PAGE
$_SESSION['variable_name'] = $i;
if ($track != '') {
echo '<br><a href="' . $permalink . '"><strong>' . $i . ' <strong>' . get_field ('track'.$i) . '</a>';
$i++;
}
else {
$i = 0;
}
}
endwhile; ?>
And the target page contains:
session_start();
echo $_SESSION['variable_name'];
]]>I am having a problem with my website. I use a plugin to call external PHP code into my website. On one of these pages I use $_SESSION to remember data. I have added this code to my wp-config.php file:
if (!session_id())
session_start();
This has been working perfectly up till the update to WP 3.6!
For some reason the session breaks or does not even start.
Does anyone have an idea how to fix this?
Thanks!
]]>0.9.2.5
3.5.1
I don’t know if it’s a WordPress issue, or with W3 Total Cache, but my PHP $_SESSION data is inaccurate / not working properly … or at all.
The second I disabled W3TC, my sessions were working flawlessly.
Thoughts?
https://www.ads-software.com/extend/plugins/w3-total-cache/
]]>What i’m having an issue with, is paginate_links(), or any other pagination examples i’ve found using the wordpress methods. What happens is the pagination links will show at the bottom with the appropriate amount of pages for the filtered posts, but when you click on the next page it seems to strip all query arguments, and instead just shows a list of all properties entered, rather than the filtered posts. So say I filter it down to 2 pages of posts, and i click page 2, now I see 5 pages listing all posts instead of going to the 2nd page of the filtered posts.
So here’s a snippet of the code im using on the results page:
[Code moderated as per the Forum Rules. Please use the pastebin]
and then where i want the pagination to appear on the list page, I call the paginate() function. I’m not stuck on using the i’ve tried using the paginate_link() function in the wordpress codex, i’m tried adding this code as well and it did nothing for me:
$wp_query->query_vars[ 'paged' ] > 1 ? $current = $wp_query->query_vars[ 'paged' ] : $current = 1;
I’m at a loss, i’ve scoured the net for 2 days reading anything and everything about paginating wordpress posts, and nothing is working for me… can anyone PLEASE HELP?!?! If you can, i’ll love you for life
]]>I am using wp_title for it. I am saving the title in a session variable $_SESSION:
$biq_title = wp_title('',false);
if ( $biq_title == '' )
$biq_title = 'Home';
if ( $_SESSION['biq_last_title'] )
{
// check if page has changed
$biq_last_title = $biq_title;
if ( $_SESSION['biq_last_title'] == $biq_last_title )
return false;
else
{
$_SESSION['biq_last_title'] = $biq_title;
return true;
}
}
else
$_SESSION['biq_last_title'] = $biq_title;
return true;
the session variable looses its value and contains a ‘page not found’.
If the session variable looses its value I would expect a NULL value, but how it gets the ‘page not found’????
]]>