Jump to content

AndyLaci

Members
  • Posts

    29
  • Joined

  • Last visited

Profile Information

  • Activity
    Freelancer

Recent Profile Visitors

2,470,503 profile views

AndyLaci's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Hello, I am trying to install fresh prestashop 1.6.1.4 on localhost and still getting this error, more details: url: http://localhost/prestashop/install/ os: mac os El captain apache: mac os apache 2.4.16 php: brew 5.6.17, with php56-mcrypt error log: [Mon Jan 25 17:25:20.305518 2016] [core:notice] [pid 28027] AH00052: child pid 29050 exit signal Segmentation fault (11) access log: no error I am fighting with this issue for 3 days now and no clue, when tried on docker package it worked fine, but if its so unstable, the system is unusable, can you please tell me what might be the problem. Tried to play with mod_reqtimeout, but still getting 500 errors, it is of course on. --------------------------------------------------------------------------------------------------- php -m shows bcmath bz2 calendar Core ctype curl date dba dom ereg exif fileinfo filter ftp gd gettext hash iconv json ldap libxml mbstring mcrypt mhash mysql mysqli mysqlnd odbc openssl pcntl pcre PDO pdo_mysql PDO_ODBC pdo_pgsql pdo_sqlite Phar posix readline Reflection session shmop SimpleXML soap sockets SPL sqlite3 standard sysvmsg sysvsem sysvshm tokenizer wddx xml xmlreader xmlrpc xmlwriter xsl zip zlib --------------------------------------------------------------------------------------------------- my httpd.conf is ServerRoot "/usr" Listen 80 LoadModule authn_file_module libexec/apache2/mod_authn_file.so LoadModule authn_core_module libexec/apache2/mod_authn_core.so LoadModule authz_host_module libexec/apache2/mod_authz_host.so LoadModule authz_groupfile_module libexec/apache2/mod_authz_groupfile.so LoadModule authz_user_module libexec/apache2/mod_authz_user.so LoadModule authz_core_module libexec/apache2/mod_authz_core.so LoadModule access_compat_module libexec/apache2/mod_access_compat.so LoadModule auth_basic_module libexec/apache2/mod_auth_basic.so LoadModule reqtimeout_module libexec/apache2/mod_reqtimeout.so LoadModule filter_module libexec/apache2/mod_filter.so LoadModule mime_module libexec/apache2/mod_mime.so LoadModule log_config_module libexec/apache2/mod_log_config.so LoadModule env_module libexec/apache2/mod_env.so LoadModule headers_module libexec/apache2/mod_headers.so LoadModule setenvif_module libexec/apache2/mod_setenvif.so LoadModule version_module libexec/apache2/mod_version.so LoadModule proxy_module libexec/apache2/mod_proxy.so LoadModule proxy_connect_module libexec/apache2/mod_proxy_connect.so LoadModule proxy_ftp_module libexec/apache2/mod_proxy_ftp.so LoadModule proxy_http_module libexec/apache2/mod_proxy_http.so LoadModule proxy_fcgi_module libexec/apache2/mod_proxy_fcgi.so LoadModule proxy_scgi_module libexec/apache2/mod_proxy_scgi.so LoadModule proxy_wstunnel_module libexec/apache2/mod_proxy_wstunnel.so LoadModule proxy_ajp_module libexec/apache2/mod_proxy_ajp.so LoadModule proxy_balancer_module libexec/apache2/mod_proxy_balancer.so LoadModule proxy_express_module libexec/apache2/mod_proxy_express.so LoadModule slotmem_shm_module libexec/apache2/mod_slotmem_shm.so LoadModule lbmethod_byrequests_module libexec/apache2/mod_lbmethod_byrequests.so LoadModule lbmethod_bytraffic_module libexec/apache2/mod_lbmethod_bytraffic.so LoadModule lbmethod_bybusyness_module libexec/apache2/mod_lbmethod_bybusyness.so LoadModule unixd_module libexec/apache2/mod_unixd.so LoadModule status_module libexec/apache2/mod_status.so LoadModule autoindex_module libexec/apache2/mod_autoindex.so LoadModule negotiation_module libexec/apache2/mod_negotiation.so LoadModule dir_module libexec/apache2/mod_dir.so LoadModule alias_module libexec/apache2/mod_alias.so LoadModule rewrite_module libexec/apache2/mod_rewrite.so LoadModule hfs_apple_module libexec/apache2/mod_hfs_apple.so <IfModule unixd_module> User _www Group _www </IfModule> ServerAdmin [email protected] ServerName andy-localhost <Directory /> AllowOverride none Require all denied </Directory> DocumentRoot "/Users/andy/Workspace/php" <Directory "/Users/andy/Workspace/php"> Options FollowSymLinks MultiViews Options +Indexes AllowOverride All Require all granted </Directory> <IfModule dir_module> DirectoryIndex index.html </IfModule> <FilesMatch "^\.([Hh][Tt]|[Dd][ss]_[ss])"> Require all denied </FilesMatch> <Files "rsrc"> Require all denied </Files> <DirectoryMatch ".*\.\.namedfork"> Require all denied </DirectoryMatch> ErrorLog "/private/var/log/apache2/error_log" LogLevel warn <IfModule log_config_module> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common <IfModule logio_module> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio </IfModule> CustomLog "/private/var/log/apache2/access_log" common </IfModule> <IfModule alias_module> ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) "/Library/WebServer/CGI-Executables/$1" </IfModule> <IfModule cgid_module> </IfModule> <Directory "/Library/WebServer/CGI-Executables"> AllowOverride None Options None Require all granted </Directory> <IfModule mime_module> TypesConfig /private/etc/apache2/mime.types AddType application/x-compress .Z AddType application/x-gzip .gz .tgz </IfModule> TraceEnable off Include /private/etc/apache2/extra/httpd-mpm.conf Include /private/etc/apache2/extra/httpd-autoindex.conf <IfModule proxy_html_module> Include /private/etc/apache2/extra/proxy-html.conf </IfModule> <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin </IfModule> Include /private/etc/apache2/other/*.conf --------------------------------------------------------------------------------------------------- my php.ini is [php] engine = On short_open_tag = Off asp_tags = Off precision = 14 output_buffering = 4096 zlib.output_compression = Off implicit_flush = Off unserialize_callback_func = serialize_precision = 17 disable_functions = disable_classes = zend.enable_gc = On expose_php = On max_execution_time = 60 max_input_time = 120 memory_limit = 512M error_reporting = E_ALL display_errors = On display_startup_errors = On log_errors = On log_errors_max_len = 1024 ignore_repeated_errors = Off ignore_repeated_source = Off report_memleaks = On track_errors = On html_errors = On variables_order = "GPCS" request_order = "GP" register_argc_argv = Off auto_globals_jit = On post_max_size = 64M auto_prepend_file = auto_append_file = default_mimetype = "text/html" default_charset = "UTF-8" doc_root = user_dir = enable_dl = Off file_uploads = On upload_max_filesize = 64M max_file_uploads = 20 allow_url_fopen = On allow_url_include = Off default_socket_timeout = 60 [CLI Server] cli_server.color = On [Date] date.timezone = Europe/Bratislava [filter] [iconv] [intl] [sqlite] [sqlite3] [Pcre] [Pdo] [Pdo_mysql] pdo_mysql.cache_size = 2000 pdo_mysql.default_socket= [Phar] [mail function] SMTP = localhost smtp_port = 25 mail.add_x_header = On [sql] sql.safe_mode = Off [ODBC] odbc.allow_persistent = On odbc.check_persistent = On odbc.max_persistent = -1 odbc.max_links = -1 odbc.defaultlrl = 4096 odbc.defaultbinmode = 1 [interbase] ibase.allow_persistent = 1 ibase.max_persistent = -1 ibase.max_links = -1 ibase.timestampformat = "%Y-%m-%d %H:%M:%S" ibase.dateformat = "%Y-%m-%d" ibase.timeformat = "%H:%M:%S" [MySQL] mysql.allow_local_infile = On mysql.allow_persistent = On mysql.cache_size = 2000 mysql.max_persistent = -1 mysql.max_links = -1 mysql.default_port = mysql.default_socket = /tmp/mysql.sock mysql.default_host = mysql.default_user = mysql.default_password = mysql.connect_timeout = 60 mysql.trace_mode = Off [MySQLi] mysqli.max_persistent = -1 mysqli.allow_persistent = On mysqli.max_links = -1 mysqli.cache_size = 2000 mysqli.default_port = 3306 mysqli.default_socket = mysqli.default_host = mysqli.default_user = mysqli.default_pw = mysqli.reconnect = Off [mysqlnd] mysqlnd.collect_statistics = On mysqlnd.collect_memory_statistics = On [OCI8] [PostgreSQL] pgsql.allow_persistent = On pgsql.auto_reset_persistent = Off pgsql.max_persistent = -1 pgsql.max_links = -1 pgsql.ignore_notice = 0 pgsql.log_notice = 0 [sybase-CT] sybct.allow_persistent = On sybct.max_persistent = -1 sybct.max_links = -1 sybct.min_server_severity = 10 sybct.min_client_severity = 10 [bcmath] bcmath.scale = 0 [browscap] [session] session.save_handler = files session.use_strict_mode = 0 session.use_cookies = 1 session.use_only_cookies = 1 session.name = PHPSESSID session.auto_start = 0 session.cookie_lifetime = 0 session.cookie_path = / session.cookie_domain = session.cookie_httponly = session.serialize_handler = php session.gc_probability = 1 session.gc_divisor = 1000 session.gc_maxlifetime = 1440 session.referer_check = session.cache_limiter = nocache session.cache_expire = 180 session.use_trans_sid = 0 session.hash_function = 0 session.hash_bits_per_character = 5 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" [MSSQL] mssql.allow_persistent = On mssql.max_persistent = -1 mssql.max_links = -1 mssql.min_error_severity = 10 mssql.min_message_severity = 10 mssql.compatibility_mode = Off mssql.secure_connection = Off [Assertion] [COM] [mbstring] [gd] [exif] [Tidy] tidy.clean_output = Off [soap] soap.wsdl_cache_enabled=1 soap.wsdl_cache_dir="/tmp" soap.wsdl_cache_ttl=86400 soap.wsdl_cache_limit = 5 [sysvshm] [ldap] ldap.max_links = -1 [mcrypt] [dba] [opcache] [curl] [openssl]
  2. Hi, I am facing problems with prestashop layered navigation speed. It is based on ajax, so it should be fast! but as you mention, when you have more products on shop, it is "blazing" slow. I got an idea to solve this problem by loading products line by line (if you have for ex. 12 products on 1 page, it would be great if it loads 4 then 4 and the last 4). I also set cron jobs for every type of indexation in module. It helps a bit, but every magento navigation, which isn't based on ajax is much more faster. Another issue with this module is, that it doesnt work in prices drop and search page. I am thinking about creating category sale and copy all of the shop categories to sale category and I hope it will work, but this solution seems really redundand and hard to maintain. I mentioned there are lots of people complaining about speed and placement of this module. http://forge.prestashop.com/browse/PSCFI-5191 http://forge.prestashop.com/browse/PSCFV-7210 http://www.prestashop.com/forums/topic/249131-layered-navigation/ http://forge.prestashop.com/browse/PSCFV-2033 http://www.prestashop.com/forums/topic/122857-cant-configure-layered-navigation-block/ I will be thankful for any help with theese problems.
  3. please, do you have some solution for this, or should I start digging up in the prestashop database to reach this result?
  4. wouldnt there be problem with attributes? We are talking about shop with clothes, so allmost every product have some attributes. I found somewhere in one tutorial that you can remove the products by if statement which was something like: if quantity 0 and all attributes quantity 0 then dont show. Do I have to care about attribute quantyties in this case? Or prestashop set this stock.quantity automatically when there is 0 of every attribute?
  5. This solution is good, but I want other thing. This disales the view of the product, I would like just to hide the product from product list with ability to find it on google or relink to product, not to deactivate it from all views, maybe it could be done in productController with this solutiun plus enabling to view deactivated product, but it is not the best solution. The best would be changing the code, where the products load to product-list and filter them by quantity greater than 0. Changing the core can be done in override section am I right?
  6. Hi everyone, I would need help with modifying this function. I would like to display products in product-list which are not out of stock (all of their attributes have quantity 0), but would be seen if user somehow get to old product by old link. Easier: old products stay, but are not wisible in product list. This would save me tons of time, because the database is optimised, but it is bit hard to get to understand it.
  7. try english next time. It can be fixed by replacing the deprecated functions in images.inc.php by functions from the result in this file. Dunno why isnt working when in this file it is fixed. If you dont understant -> replace isPicture(xxx) with ImageManager::isRealImage(xxx) and do it with all problematic functions. Check the negation by functions!!!
  8. ty, for response, but I dont want to solve that visual problem, that will be made with jQuery. I just want the piece of code that sends customer to the product list with filtered brand products. for example: shop.com/brand?filter=onlywoman
  9. I viewed demo of the Advanced Top Menu and there is just highlighted current category, but the left column still stays under header categories and other categories on the same level are seen too. Dont know if this can be modified in the settings..
  10. Hi, I would like to create links in brands sections to differ between genders. I would like to show over the brand logo two links and each of them will filter the brand (filter by gender). It shoud look like this: Is it possible? I imagine it my self like this: {$base_url}/brand_name?category=men (I am familiar with smarty templates and with php)
  11. Hi everybody, I would like to modify the category module to be able to differ between men and womem sections. I have 2 links on homepage that point on theese categories and I want to see in this categories in category block just the name of the category as title of the block and all the category(men or woman) subcategories. It is done so for example on this e-shop > http://www.modastore.cz . When you click on men (panske obleceni), you just see the subcategory men(panske obleceni). I know this shop isn't made with prestashop (assuming magento) but this I hope is possible also in prestashop. I want this be done just for main categories, not for all just for men and women.
  12. other problem, I want to assign css from theme/css/modules folder, but when I add function public function hookDisplayFooter($params) { $this->context->controller->addCSS($this->_path.'blocknewsletter.css', 'all'); } Is stops showing the footer block and recolor(css) the left column block. /********************************************SOLVED********************************************/ public function hookFooter($params) { $this->_prepareHook($params); $this->context->controller->addCSS($this->_path.'blocknewsletter.css', 'all'); return $this->display(__FILE__, 'blocknewsletter.tpl'); } and removing the previous function
  13. solved for me: I writed the function with exact $params --> function hookFooter($params) { $this->_prepareHook($params); return $this->display(__FILE__, 'blocknewsletter.tpl'); }
×
×
  • Create New...