Jump to content

T1800

Member
  • Posts

    9
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by T1800

  1. This was fixed by loading the mod_rewrite module in Apache. When Apache is installed on Arch Linux , the mod_rewrite is not loaded by default. To fix this, edit the httpd.conf and uncomment the line.. LoadModule rewrite_module modules/mod_rewrite.so Restart Apache with $ sudo systemctl restart httpd And it works..
  2. Hi, My store front appears ok, but when I try to navigate through the various sub-pages of the site I get '404 page not found' errors. My Apache installation is pretty much as the defaults and I have not get linked my domain name to the site, so I am still using the IP address... i.e.. 123.456.7.89/store... Am I missing a setting here?
  3. Hi, The Chrome internet browser refused to let me log into the store back end. The login box appears, but when I type my credentials in it get the following error... Security Alert: Possible Cross-Site Request Forgery (CSRF) or browser back button used. Is this a browser config issue?
  4. I found the issue... whilst I had enabled the php-gd extension in my php.ini file, I did not actually have the php-gd package installed. As an Arch Linux user, this is fixed with.. #pacman -S php-gd #systemctl restart httpd All Done! I've reported two issues in this one thread, which is rather silly. I'll [Resolve] this one and open a fresh one for the other issue.
  5. Aha! I have found the error... Looking at the System Error Log, it seems I get the following error every time I try to access the site... [Exception] /usr/share/webapps/CubeCart/classes/gd.class.php:107 - Call to undefined function imagecreatefrompng() Has anyone seen this before?
  6. Hi, I've done a new install on a clean LAMP server, but have a couple of problems with the store once installation is complete. The main store window is blank; I just see a blank white screen. The back end work fine - on some browsers. I edited debug.class.php to display error messages by setting ini_set('display_errors', true) but no text is displayed. I can get into the back end on my Firefox browser, but IE and Chrome give me a strange error... Security Alert: Possible Cross-Site Request Forgery (CSRF) or browser back button used. When I do log on, everything in the back end is fine. Can anybody help please? Linux Version: 4.12.8 PHP Version : 7.1.8 Apache Version : 2.4.27 CubeCart Version : 6.1.8 MySql Version: 5.0.12
  7. Hi, I've sussed this one out now. If it helps Arch users out there, here is my solution. In my case, the directory containing the store was based in the user's home public_html directory. So the .htaccess needed modifying accordingly... <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /public_html/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.*).html?$ /index.php?seo_path=$1 [L,QSA] </IfModule> By default, the Apache2 installation on Arch Linux will not have the mod_rewrite module loaded so it'll need un-commenting in the httpd.conf file. Then give the service a restart... sudo systemctl restart httpd ..and you are good to go.
  8. Hi, Many thanks for such a quick reply. I checked for this file and found it. It looks exactly as you listed. Just to be sure I ran a chmod on the file to 755 and restarted the Apache service. Is there anything else I should check?
  9. Hi Everybody, I've just installed CC 6b4 and run through the admin pages. The home page looks fine and I can use the admin pages to change the store settings, but all the links are dead from the home page. Whatever I click on, I get the 404 - Object not found. Has anyone seen this before or know where I am going wrong?
×
×
  • Create New...