Please disregard the 'View article...' shown at the bottom of many posts as this is the result of restoring old forum posts from a backup.
Can't get to install pages
I'm trying to update my site to 2.3.1. I downloaded the zip of 2.3.1. I then uploaded it to my server and extracted it. Then I made sure the permissions were correct by running these commands: find . -type d -print0 | xargs -0 chmod 0755 and find . -type f -print0 | xargs -0 chmod 0644.
Then I tried going to myurl.com/install/index.php and starting the install routine. However it redirected me back to the site's homepage.
View article...
Then I tried going to myurl.com/install/index.php and starting the install routine. However it redirected me back to the site's homepage.
View article...
Comments
View article...
Just to note that the server has php version 5.2.17 (install script marked it ok).
View article...
Is it correct that we should have both folders "lessphp" and "less.php"? (located in external)
View article...
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 128 bytes) in /home/niininn/public_html/portfolio/external/less.php/lib/Less/Tree/Selector.php on line 61
When I refresh the site, it gives always the "exhaustment" of something but related to a different file. All of those are below "external/less.php/lib/Less/Tree/" though.
View article...
PHP v5.2.17 should work, but it is considered obsolete now that v5.6.0 stable is out and also v5.5.x is available along with v5.4.x...even v5.3.x is considered obsolete and will no longer be supported by the php guys. HOWEVER, it looks like your php.ini only has about 64M of ram allocated when the default is 128M. It's possible that PHP is running out of memory when compiling the bootstrap .less files. Though I've tested in many php versions from 5.2.1, thru 5.2.17, 5.3.5, 5.3.29, 5.4.33, 5.5.17, & 5.6.0, I've not tested them with less than their default settings.
php.ini should have memory_limit = 128M or larger
The reason you are seeing a 'blank' page is likely the Bootstrap .css files are not fully compiled. If you are NOT using a Bootstrap 3 theme, you can switch over to the older .less compiler by adding the following line to your /framework/conf/config.php
if (!defined('LESS_COMPILER')) define('LESS_COMPILER','lessphp'); You could also leave 'Error Reporting' turned on, empty the /tmp/css folder (.less compiler cache) and then try loading the page again.
View article...
I have "Error reporting" on and I have emptied the tmp folders several time but nothing happens and neither anymore any error messages, only blank.
View article...
it was solved by setting
php.ini should have memory_limit = 256M
via htaccess actually
View article...
View article...