Warning: “continue” targeting switch is equivalent to “break”. Did you mean to use “continue 2”? in /home/www/client-final-sealworks.erichepperle.com/wp-content/plugins/essential-grid/includes/item-skin.class.php on line 1306
Before digging into the code on that page, I have to say this is a known working Duplicator archive. So, the only thing that I can pinpoint that changed is when I set up the subdomain (client-final-sealworks.erichepperle.com) it specifically asked me what version of PHP I wanted to use. I think I selected “just use what the main domain is using” or something similar. Probably PHP 8.
So, my question is: Is it a known issue already that using the wrong PHP version on restore causes this error?
Thanks
]]>I reinstalled it on a Unix server but they are only running PHP v5.5 so it’s not running there, either.
Will the Windows version work well and is there a way for me to set permissions on a folder in a windows server so that folder and all child folders inherit the same permissions without having access to admin section of the actual server?
]]>Love the plugin, but it does not function on any PHP version higher than 7
I have the link to our testimonial page currently only working on 7. If I switch to 7.1-7.4 it breaks.
Is there any update in the works or fixes for this?
Theme Choices Version: 4.0 by Kreisi
Thanks
]]>I recently upgraded my php version to 7.3. Everything works great except for that I just realized my plugins dont work. When I click any of them such as Yoast or Custom Permalinks or Ready SSL, Mailchimp for WP (all very common plugins), I just get a 500 error.
It works perfectly fine when I switch it back to php 5.3 but i do not want to go that route.
I tried a bunch of troubleshooting including disabling/reenabling the plugins, etc.
Any help would be greatly appreciated!
Thank you
]]>They used to look all perfect (back in last September, the last time I checked on this page).
However, now I changed the PHP version from 5.6 to 7.1, only the top table’s Japanese and Hawaiian specific character “?” won’t display correctly, but the other two tables on the same page display perfectly.
Then, if I change the PHP version back to 5.6, the totally opposite would happen; the top table’s Japanese and Hawaiian characters display perfect, but the other two table below are messed up.
I’m wondering how could the tables created from the same plugin using the same source behave differently to the PHP versions..?
I have tried to change the php.uni setting but no success so far…
Hope if you could give me some advice…
(FYI, the characters outside the table behave exact the same as the bottom two tables)
Am setting up WordPress 4.9.1 within MAMP 4.2 on a Mac 10.11.6 OS for a friend to do some testing.
The installation is hanging up on the install.php file and not finishing. When I abort the installation, the files are installed, but I’m betting the white screen of death.
I’ve been using the MAMPA logs to track the errors – the message is:
WordPress database error Unknown column ‘customprefix_’ in ‘field list’ for query SELECT customprefix_
While we’re using PHP version 7.1.8, the Mac OS is running PHP 5.5.38
]]>Apache 2.2
PHP 5.2.11
MySQL 5.0.88
These are being run on Windows XP Pro SP3.
I recently updated one of the installs to 3.7 and after doing so, if I try to update any themes or plugins I get an error that says something like this: The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature.
For now I am just trying to get authoritative advice on whether the versions of the components I am running will work with 3.7 and 3.8.
I tried updating another install to 3.8 which went fine, but when I tried to update the twentythirteen theme I got the same error message as above. NOTE: I just tried it again and the theme updated successfully.
My main question is: What version of PHP is required for 3.7 and 3.8? Some people have said that 5.3 is required and some have said 5.2.5.
I am nervous about updating my other installs until I find out what the latest version of PHP that they will work with.
Thanks
]]>Rather than write my own function from scratch, I thought I’d use the existing WordPress shortcode-parser, ‘shortcode_parse_atts()’ in wp-includes/shortcodes.php. I’m getting odd results though.
I’m currently testing the site offline, using MAMP, which gives me the option to change the PHP version between 5.2.17 and 5.4.4 (I don’t know why just those particular versions).
In PHP v.5.4.4, everything appears to work fine. The function returns an associative array of key=>value pairs from the shortcode string, as expected.
However, in the older PHP version, shortcode_parse_atts() returns each shortcode attribute key/value pair as a single string, in an unkeyed array, which breaks the rest of my code.
Anyone know why this is happening? Other shortcodes appear work as they should otherwise, in both PHP versions, so I’m stumped why the same function that is (I presume) used by WordPress itself doesn’t work in the context of my popup panel.
Anyone any idea why this might be happening, and how I might go about fixing it?
For reference, here is the function in question:
function shortcode_parse_atts($text) {
$atts = array();
$pattern = '/(\w+)\s*=\s*"([^"]*)"(?:\s|$)|(\w+)\s*=\s*\'([^\']*)\'(?:\s|$)|(\w+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|(\S+)(?:\s|$)/';
$text = preg_replace("/[\x{00a0}\x{200b}]+/u", " ", $text);
if ( preg_match_all($pattern, $text, $match, PREG_SET_ORDER) ) {
foreach ($match as $m) {
if (!empty($m[1]))
$atts[strtolower($m[1])] = stripcslashes($m[2]);
elseif (!empty($m[3]))
$atts[strtolower($m[3])] = stripcslashes($m[4]);
elseif (!empty($m[5]))
$atts[strtolower($m[5])] = stripcslashes($m[6]);
elseif (isset($m[7]) and strlen($m[7]))
$atts[] = stripcslashes($m[7]);
elseif (isset($m[8]))
$atts[] = stripcslashes($m[8]);
}
} else {
$atts = ltrim($text);
}
return $atts;
}
Cheers,
a|x
]]>i did attempt to change the password by using an UPDATE query to the db in phpmyadmin. this di not work. before i start changing versions of php, i would like to try to create a new admin user in phpmyadmin. does anyone know how to do this? my knowledge is limited in this area.
thanks!
]]>Running WP 2.5.1.
Also, is it possible to run two different WPthemes one setup for PHP4x other for 5x on same server?
Thanks,
Robert