xampp

Laravel 5.1 Route Object not found

你离开我真会死。 提交于 2019-12-01 11:16:53
Please help me, I'm working on a Laravel using the latest version of xampp & do not know what the cause of my problem is. This route is working fine: Route::get('/', function () { return 'aa'; }); This route gives an error "Object not found!": Route::get('about', function () { return 'aaa'; }); httpd.vhosts: <VirtualHost test.loc:80> DocumentRoot "C:/xampp/apps/test.loc/public" ServerName test.loc <Directory "C:/xampp/apps/test.loc/public"> #AllowOverride All - when I use this, I get a "Access forbidden!" for all routes Require all granted - this works for the main route, other routes give

How to turn off notice reporting in xampp?

。_饼干妹妹 提交于 2019-12-01 11:13:29
问题 On a remote server there is no problem, but in localhost (xampp 3.1.) I cannot turn off reporting notices. <?php $Fname = $_POST["Fname"]; ... result: Notice: Undefined index: Fname in D:\xampp\htdocs\xx\php01\form01.php on line 6 php.ini ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED ; Development Value: E_ALL ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT ; http://php.net/error-reporting error_reporting = E_ALL & ~E_NOTICE //shouldn't this line turn off notice

Xampp 1.7.4 and PHP 5.3.5 (Deprecated warnings)

≡放荡痞女 提交于 2019-12-01 10:11:44
问题 I just upgraded my Xampp installation to 1.7.4 I had a working script (jquery calling PHP script and showing the returned value). After upgrade, my jquery is getting the result correctly, but in addition to the results, there are also some warnings that are returned, hence stopping my script to show the result (I checked in firebug). Here are the warnings: Deprecated : Assigning the return value of new by reference is deprecated in D:\xampp\php\PEAR\Config.php on line 80 Deprecated :

MySQL not launching on XAMPP

独自空忆成欢 提交于 2019-12-01 09:07:36
I can't get MySQL to launch via XAMPP, it was fine the last time I opened it a few months back; Updated errors after I have followed the my.cnf recovery: 2013-10-06 19:29:23 7920 [Note] Plugin 'FEDERATED' is disabled. 2013-10-06 19:29:23 15fc InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal memory allocator. 2013-10-06 19:29:23 7920 [Note] InnoDB: The InnoDB memory heap is disabled 2013-10-06 19:29:23 7920 [Note] InnoDB: Mutexes and rw_locks use

Mysql problem: no mysql.sock

一个人想着一个人 提交于 2019-12-01 08:45:53
Yesterday I was working using MySQL installed on my computer. I downloaded xampp, so I have I changed on my.cnf file the path to the socket: /opt/lampp/var/mysql/mysql.sock That file was just there. Today I wanted to keep working on it, and I found that file is not there anymore, so I am getting the following error while I am starting mysql server: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/opt/lampp/var/mysql/mysql.sock' (2) Here are some tests I made: mujeresponja@ubuntu:~$ ps -fea | grep mysqld 1000 15707 15615 0 16:28 pts/1 00:00:00 grep --color=auto mysqld

Laravel 5.1 Route Object not found

丶灬走出姿态 提交于 2019-12-01 08:42:09
问题 Please help me, I'm working on a Laravel using the latest version of xampp & do not know what the cause of my problem is. This route is working fine: Route::get('/', function () { return 'aa'; }); This route gives an error "Object not found!": Route::get('about', function () { return 'aaa'; }); httpd.vhosts: <VirtualHost test.loc:80> DocumentRoot "C:/xampp/apps/test.loc/public" ServerName test.loc <Directory "C:/xampp/apps/test.loc/public"> #AllowOverride All - when I use this, I get a

How to export/save ERD as PDF or as image in phpMyAdmin?

一个人想着一个人 提交于 2019-12-01 08:22:37
I have generated an ERD using the Designer in phpMyAdmin. How do I save it as PDF or image? On possible duplicate: The "original" thread is referenced in the answer. This post is intended to be a visual tutorial thread with screenshots which the other thread does not have. silver To save as PDF: 1) Select databse. 2) More > Designer 3) Import/Export coordinates for relational schema 4) Operations (scroll down) > Edit or export relational schema Click Go. 5) Choose your preferences. Click Go. Save the file. To save as image: You can choose "SVG" in Step 5 instead of "PDF", but the it did not

Linux|XAMPP 搭建Discuz论坛一

痴心易碎 提交于 2019-12-01 08:00:06
XAMPP XAMPP是最流行的PHP开发环境 XAMPP是完全免费且易于安装的Apache发行版,其中包含MySQL、PHP和Perl。XAMPP开放源码包的设置让安装和使用出奇容易。 下载地址: https://www.apachefriends.org/zh_cn/index.html 步骤 1) 获取 xampp 通过上面的连接找到你对应系统的版本号之后,在shell界面通过 wget -P /你的目录 URL 会下载到制定目录 获取下载连接 这里我下载的格式为.run 2) 安装 xampp (博主系统CentOS7 64 下载的是5.6.8版本) root用户下执行: chmod +x xampp-linux-*-installer.run 不提示继续执行: ./xampp-linux-*-installer.run 别少最前面的点,接着根据提示依次输入执行: y-y-enter-y 这四个命令 等待安装完成 检验:cd /opt/lampp ls 可以看到安装结果呦 1. ‘*’ 表示版本号 xampp 默认安装在 /opt/lampp 2. 卸载 xampp: rm -rf /opt/lampp 3) 开启xampp /opt/lampp/lampp start 运行 ok…..Apache、Mysql已经启动 /opt/lampp/lampp stop 停止

linux下搭建discuz论坛

半腔热情 提交于 2019-12-01 07:59:50
本文仅作为开发测试环境使用参考,若生产环境建议使用lamp单独安装的方法 1:discuz安装环境 这里只介绍linux平台下安装,推荐使用 LAMP 主机(Linux+Apache+MySQL+PHP)主机,代码编译工具可以用vim,大家可以自由选择。 2:上面说了我们需要一个Linux+Apache+MySQL+PHP这样的环境,那么我推荐使用XAMPP 下载地址http://www.apachefriends.org/zh_cn/xampp-linux.html 3:安装XAMPP 首先以root用户身份登录系统 tar -xvfz xampp-linux-1.7.3a.tar.gz -C /opt 解压XAMPP到opt目录下 /opt/lampp/lampp start 启动XAMPP /opt/lampp/lampp stop 停止服务 rm -rf /opt/lamp 卸载XAMPP 默认无法访问xampp设置如下: windows配置: E:\wamp\bin\apache\Apache2.4.4\conf\http.conf # onlineoffline tag - don't remove Order Deny,Allow Allow from all Allow from 127.0.0.1 Allow from ::1 Allow from

阿里云服务器上搭建Discuz论坛

跟風遠走 提交于 2019-12-01 07:58:21
前沿: 搭建discuz论坛,需要搭建软件环境(也就是其运行的环境)本实例采用的是XAMMP软件站集成环境 目的:搭建Discuz3论坛 搭建步骤: 第一步:下载XAMPP(Apache+Mysql+PHP+RERL)百度云下载地址: XAMPP 点击下载 windows到服务器之间的文件传输采用xftp; 终端shell软件采用xshell,然后将下载的 xampp-linux-x64-5.5.30-7-installer.run 上传到/home目录下,然后在命令行输入 ./xampp-linux-x64-5.5.30-7-installer.run,如果报权限问题, 可以先对文件权限进行处理,输入 chmod 777 xampp-linux-x64-5.5.30-7-installer.run,然后在安装 检测 : 如果安装完成会出现: /opt/lampp/ 第二步:运行启动 xampp,命令行输入:/opt/lampp/lampp start 在浏览器中输入 http://ip 会出现xampp界面 第三步:下载discuz3 下载可以去官方的地址,百度一大把,这里就不在给出 然后将 upload 改名为Discuz3 上传至 /opt/lampp/htdocs 目录下 修改Discuz3目录的属性,将其修改为可读可写, 命令为 chmod -R 777 /opt